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
13892639
Commit
13892639
authored
Nov 28, 2006
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Nov 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winspool/tests: Add initial tests for AddPort.
parent
1f3c289a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
info.c
dlls/winspool.drv/tests/info.c
+41
-0
No files found.
dlls/winspool.drv/tests/info.c
View file @
13892639
...
@@ -327,6 +327,46 @@ static void test_AddMonitor(void)
...
@@ -327,6 +327,46 @@ static void test_AddMonitor(void)
/* ########################### */
/* ########################### */
static
void
test_AddPort
(
void
)
{
DWORD
res
;
SetLastError
(
0xdeadbeef
);
res
=
AddPortA
(
NULL
,
0
,
NULL
);
RETURN_ON_DEACTIVATED_SPOOLER
(
res
)
/* NT: RPC_X_NULL_REF_POINTER, 9x: ERROR_INVALID_PARAMETER */
ok
(
!
res
&&
((
GetLastError
()
==
RPC_X_NULL_REF_POINTER
)
||
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
)),
"returned %d with %d (expected '0' with ERROR_NOT_SUPPORTED or "
\
"ERROR_INVALID_PARAMETER)
\n
"
,
res
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
res
=
AddPortA
(
NULL
,
0
,
empty
);
/* Allowed only for (Printer-)Administrators */
if
(
!
res
&&
(
GetLastError
()
==
ERROR_ACCESS_DENIED
))
{
trace
(
"skip tests (ACCESS_DENIED)
\n
"
);
return
;
}
/* XP: ERROR_NOT_SUPPORTED, NT351 and 9x: ERROR_INVALID_PARAMETER */
ok
(
!
res
&&
((
GetLastError
()
==
ERROR_NOT_SUPPORTED
)
||
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
)),
"returned %d with %d (expected '0' with ERROR_NOT_SUPPORTED or "
\
"ERROR_INVALID_PARAMETER)
\n
"
,
res
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
res
=
AddPortA
(
NULL
,
0
,
does_not_exist
);
/* XP: ERROR_NOT_SUPPORTED, NT351 and 9x: ERROR_INVALID_PARAMETER */
ok
(
!
res
&&
((
GetLastError
()
==
ERROR_NOT_SUPPORTED
)
||
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
)),
"returned %d with %d (expected '0' with ERROR_NOT_SUPPORTED or "
\
"ERROR_INVALID_PARAMETER)
\n
"
,
res
,
GetLastError
());
}
/* ########################### */
static
void
test_ConfigurePort
(
void
)
static
void
test_ConfigurePort
(
void
)
{
{
DWORD
res
;
DWORD
res
;
...
@@ -1609,6 +1649,7 @@ START_TEST(info)
...
@@ -1609,6 +1649,7 @@ START_TEST(info)
default_printer
=
find_default_printer
();
default_printer
=
find_default_printer
();
test_AddMonitor
();
test_AddMonitor
();
test_AddPort
();
test_ConfigurePort
();
test_ConfigurePort
();
test_DeleteMonitor
();
test_DeleteMonitor
();
test_DeletePort
();
test_DeletePort
();
...
...
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