Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1d491aed
Commit
1d491aed
authored
Mar 07, 2006
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscms: Add tests for EnumColorProfiles{A,W}.
parent
05b073da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
104 additions
and
1 deletion
+104
-1
profile.c
dlls/mscms/tests/profile.c
+104
-1
No files found.
dlls/mscms/tests/profile.c
View file @
1d491aed
/*
/*
* Tests for color profile functions
* Tests for color profile functions
*
*
* Copyright 2004, 2005 Hans Leidekker
* Copyright 2004, 2005
, 2006
Hans Leidekker
*
*
* This library is free software; you can redistribute it and/or
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* modify it under the terms of the GNU Lesser General Public
...
@@ -42,6 +42,8 @@ static BOOL (WINAPI *pGetColorProfileHeader)(HPROFILE,PPROFILEHEADER);
...
@@ -42,6 +42,8 @@ static BOOL (WINAPI *pGetColorProfileHeader)(HPROFILE,PPROFILEHEADER);
static
BOOL
(
WINAPI
*
pGetCountColorProfileElements
)(
HPROFILE
,
PDWORD
);
static
BOOL
(
WINAPI
*
pGetCountColorProfileElements
)(
HPROFILE
,
PDWORD
);
static
BOOL
(
WINAPI
*
pGetStandardColorSpaceProfileA
)(
PCSTR
,
DWORD
,
PSTR
,
PDWORD
);
static
BOOL
(
WINAPI
*
pGetStandardColorSpaceProfileA
)(
PCSTR
,
DWORD
,
PSTR
,
PDWORD
);
static
BOOL
(
WINAPI
*
pGetStandardColorSpaceProfileW
)(
PCWSTR
,
DWORD
,
PWSTR
,
PDWORD
);
static
BOOL
(
WINAPI
*
pGetStandardColorSpaceProfileW
)(
PCWSTR
,
DWORD
,
PWSTR
,
PDWORD
);
static
BOOL
(
WINAPI
*
pEnumColorProfilesA
)(
PCSTR
,
PENUMTYPEA
,
PBYTE
,
PDWORD
,
PDWORD
);
static
BOOL
(
WINAPI
*
pEnumColorProfilesW
)(
PCWSTR
,
PENUMTYPEW
,
PBYTE
,
PDWORD
,
PDWORD
);
static
BOOL
(
WINAPI
*
pInstallColorProfileA
)(
PCSTR
,
PCSTR
);
static
BOOL
(
WINAPI
*
pInstallColorProfileA
)(
PCSTR
,
PCSTR
);
static
BOOL
(
WINAPI
*
pInstallColorProfileW
)(
PCWSTR
,
PCWSTR
);
static
BOOL
(
WINAPI
*
pInstallColorProfileW
)(
PCWSTR
,
PCWSTR
);
static
BOOL
(
WINAPI
*
pIsColorProfileTagPresent
)(
HPROFILE
,
TAGTYPE
,
PBOOL
);
static
BOOL
(
WINAPI
*
pIsColorProfileTagPresent
)(
HPROFILE
,
TAGTYPE
,
PBOOL
);
...
@@ -69,6 +71,8 @@ static BOOL init_function_ptrs( void )
...
@@ -69,6 +71,8 @@ static BOOL init_function_ptrs( void )
GETFUNCPTR
(
GetCountColorProfileElements
)
GETFUNCPTR
(
GetCountColorProfileElements
)
GETFUNCPTR
(
GetStandardColorSpaceProfileA
)
GETFUNCPTR
(
GetStandardColorSpaceProfileA
)
GETFUNCPTR
(
GetStandardColorSpaceProfileW
)
GETFUNCPTR
(
GetStandardColorSpaceProfileW
)
GETFUNCPTR
(
EnumColorProfilesA
)
GETFUNCPTR
(
EnumColorProfilesW
)
GETFUNCPTR
(
InstallColorProfileA
)
GETFUNCPTR
(
InstallColorProfileA
)
GETFUNCPTR
(
InstallColorProfileW
)
GETFUNCPTR
(
InstallColorProfileW
)
GETFUNCPTR
(
IsColorProfileTagPresent
)
GETFUNCPTR
(
IsColorProfileTagPresent
)
...
@@ -701,6 +705,102 @@ static void test_GetStandardColorSpaceProfileW(void)
...
@@ -701,6 +705,102 @@ static void test_GetStandardColorSpaceProfileW(void)
}
}
}
}
static
void
test_EnumColorProfilesA
(
void
)
{
BOOL
ret
;
DWORD
size
,
number
;
ENUMTYPEA
record
;
BYTE
buffer
[
MAX_PATH
];
/* Parameter checks */
size
=
sizeof
(
buffer
);
memset
(
&
record
,
0
,
sizeof
(
ENUMTYPEA
)
);
record
.
dwSize
=
sizeof
(
ENUMTYPEA
);
record
.
dwVersion
=
ENUM_TYPE_VERSION
;
record
.
dwFields
|=
ET_DATACOLORSPACE
;
record
.
dwDataColorSpace
=
SPACE_RGB
;
ret
=
pEnumColorProfilesA
(
machine
,
&
record
,
buffer
,
&
size
,
&
number
);
ok
(
!
ret
,
"EnumColorProfilesA() succeeded (%ld)
\n
"
,
GetLastError
()
);
ret
=
pEnumColorProfilesA
(
NULL
,
NULL
,
buffer
,
&
size
,
&
number
);
ok
(
!
ret
,
"EnumColorProfilesA() succeeded (%ld)
\n
"
,
GetLastError
()
);
ret
=
pEnumColorProfilesA
(
NULL
,
&
record
,
buffer
,
NULL
,
&
number
);
ok
(
!
ret
,
"EnumColorProfilesA() succeeded (%ld)
\n
"
,
GetLastError
()
);
if
(
standardprofile
)
{
ret
=
pEnumColorProfilesA
(
NULL
,
&
record
,
buffer
,
&
size
,
&
number
);
ok
(
ret
,
"EnumColorProfilesA() failed (%ld)
\n
"
,
GetLastError
()
);
}
size
=
0
;
ret
=
pEnumColorProfilesA
(
NULL
,
&
record
,
buffer
,
&
size
,
&
number
);
ok
(
!
ret
,
"EnumColorProfilesA() succeeded (%ld)
\n
"
,
GetLastError
()
);
/* Functional checks */
if
(
standardprofile
)
{
size
=
sizeof
(
buffer
);
ret
=
pEnumColorProfilesA
(
NULL
,
&
record
,
buffer
,
&
size
,
&
number
);
ok
(
ret
,
"EnumColorProfilesA() failed (%ld)
\n
"
,
GetLastError
()
);
}
}
static
void
test_EnumColorProfilesW
(
void
)
{
BOOL
ret
;
DWORD
size
,
number
;
ENUMTYPEW
record
;
BYTE
buffer
[
MAX_PATH
*
sizeof
(
WCHAR
)];
/* Parameter checks */
size
=
sizeof
(
buffer
);
memset
(
&
record
,
0
,
sizeof
(
ENUMTYPEW
)
);
record
.
dwSize
=
sizeof
(
ENUMTYPEW
);
record
.
dwVersion
=
ENUM_TYPE_VERSION
;
record
.
dwFields
|=
ET_DATACOLORSPACE
;
record
.
dwDataColorSpace
=
SPACE_RGB
;
ret
=
pEnumColorProfilesW
(
machineW
,
&
record
,
buffer
,
&
size
,
&
number
);
ok
(
!
ret
,
"EnumColorProfilesW() succeeded (%ld)
\n
"
,
GetLastError
()
);
ret
=
pEnumColorProfilesW
(
NULL
,
NULL
,
buffer
,
&
size
,
&
number
);
ok
(
!
ret
,
"EnumColorProfilesW() succeeded (%ld)
\n
"
,
GetLastError
()
);
ret
=
pEnumColorProfilesW
(
NULL
,
&
record
,
buffer
,
NULL
,
&
number
);
ok
(
!
ret
,
"EnumColorProfilesW() succeeded (%ld)
\n
"
,
GetLastError
()
);
if
(
standardprofileW
)
{
ret
=
pEnumColorProfilesW
(
NULL
,
&
record
,
buffer
,
&
size
,
NULL
);
ok
(
ret
,
"EnumColorProfilesW() failed (%ld)
\n
"
,
GetLastError
()
);
}
size
=
0
;
ret
=
pEnumColorProfilesW
(
NULL
,
&
record
,
buffer
,
&
size
,
&
number
);
ok
(
!
ret
,
"EnumColorProfilesW() succeeded (%ld)
\n
"
,
GetLastError
()
);
/* Functional checks */
if
(
standardprofileW
)
{
size
=
sizeof
(
buffer
);
ret
=
pEnumColorProfilesW
(
NULL
,
&
record
,
buffer
,
&
size
,
&
number
);
ok
(
ret
,
"EnumColorProfilesW() failed (%ld)
\n
"
,
GetLastError
()
);
}
}
static
void
test_InstallColorProfileA
(
void
)
static
void
test_InstallColorProfileA
(
void
)
{
{
BOOL
ret
;
BOOL
ret
;
...
@@ -1250,6 +1350,9 @@ START_TEST(profile)
...
@@ -1250,6 +1350,9 @@ START_TEST(profile)
test_GetStandardColorSpaceProfileA
();
test_GetStandardColorSpaceProfileA
();
test_GetStandardColorSpaceProfileW
();
test_GetStandardColorSpaceProfileW
();
test_EnumColorProfilesA
();
test_EnumColorProfilesW
();
test_InstallColorProfileA
();
test_InstallColorProfileA
();
test_InstallColorProfileW
();
test_InstallColorProfileW
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment