Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
461b2a75
Commit
461b2a75
authored
May 11, 2006
by
Detlef Riekenberg
Committed by
Alexandre Julliard
May 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winspool/tests: More tests for OpenPrinter.
parent
351106f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
1 deletion
+21
-1
info.c
dlls/winspool/tests/info.c
+21
-1
No files found.
dlls/winspool/tests/info.c
View file @
461b2a75
...
...
@@ -792,9 +792,11 @@ static void test_OpenPrinter(void)
hprinter
=
(
HANDLE
)
MAGIC_DEAD
;
SetLastError
(
MAGIC_DEAD
);
res
=
OpenPrinter
(
NULL
,
&
hprinter
,
&
defaults
);
todo_wine
{
ok
(
!
res
&&
GetLastError
()
==
ERROR_ACCESS_DENIED
,
"returned %ld with %ld (expected '0' with ERROR_ACCESS_DENIED)
\n
"
,
res
,
GetLastError
());
}
if
(
res
)
ClosePrinter
(
hprinter
);
}
...
...
@@ -828,6 +830,17 @@ static void test_OpenPrinter(void)
"ERROR_INVALID_PRINTER_NAME)
\n
"
,
res
,
GetLastError
());
if
(
res
)
ClosePrinter
(
hprinter
);
hprinter
=
(
HANDLE
)
MAGIC_DEAD
;
SetLastError
(
MAGIC_DEAD
);
res
=
OpenPrinter
(
""
,
&
hprinter
,
NULL
);
/* NT: ERROR_INVALID_PRINTER_NAME, 9x: ERROR_INVALID_PARAMETER */
ok
(
!
res
&&
((
GetLastError
()
==
ERROR_INVALID_PRINTER_NAME
)
||
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
)
),
"returned %ld with %ld (expected '0' with: ERROR_INVALID_PRINTER_NAME"
\
" or ERROR_INVALID_PARAMETER)
\n
"
,
res
,
GetLastError
());
if
(
res
)
ClosePrinter
(
hprinter
);
/* Get Handle for the default Printer */
if
((
default_printer
=
find_default_printer
()))
...
...
@@ -837,12 +850,19 @@ static void test_OpenPrinter(void)
res
=
OpenPrinter
(
default_printer
,
&
hprinter
,
NULL
);
if
((
!
res
)
&&
(
GetLastError
()
==
RPC_S_SERVER_UNAVAILABLE
))
{
trace
(
"The Service 'Spooler' is required for '%s'
\n
"
,
default_printer
);
trace
(
"The Service 'Spooler' is required for '%s'
\n
"
,
default_printer
);
return
;
}
ok
(
res
,
"returned %ld with %ld (expected '!=0')
\n
"
,
res
,
GetLastError
());
if
(
res
)
ClosePrinter
(
hprinter
);
SetLastError
(
MAGIC_DEAD
);
res
=
OpenPrinter
(
default_printer
,
NULL
,
NULL
);
/* NT: FALSE with ERROR_INVALID_PARAMETER, 9x: TRUE */
ok
(
res
||
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
),
"returned %ld with %ld (expected '!=0' or '0' with "
\
"ERROR_INVALID_PARAMETER)
\n
"
,
res
,
GetLastError
());
defaults
.
pDatatype
=
NULL
;
defaults
.
pDevMode
=
NULL
;
defaults
.
DesiredAccess
=
0
;
...
...
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