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
c5a96990
Commit
c5a96990
authored
Jun 12, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr/tests: Add tests.
parent
bda14f61
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
223 additions
and
29 deletions
+223
-29
enum_files.c
dlls/qmgr/tests/enum_files.c
+1
-0
job.c
dlls/qmgr/tests/job.c
+222
-28
qmgr.c
dlls/qmgr/tests/qmgr.c
+0
-1
No files found.
dlls/qmgr/tests/enum_files.c
View file @
c5a96990
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
#define COBJMACROS
#define COBJMACROS
#include "wine/test.h"
#include "wine/test.h"
#include "initguid.h"
#include "bits.h"
#include "bits.h"
/* Globals used by many tests */
/* Globals used by many tests */
...
...
dlls/qmgr/tests/job.c
View file @
c5a96990
...
@@ -25,6 +25,8 @@
...
@@ -25,6 +25,8 @@
#include "wine/test.h"
#include "wine/test.h"
#include "bits.h"
#include "bits.h"
#include "initguid.h"
#include "initguid.h"
#include "bits2_0.h"
#include "bits2_5.h"
/* Globals used by many tests */
/* Globals used by many tests */
static
const
WCHAR
test_displayName
[]
=
{
'T'
,
'e'
,
's'
,
't'
,
0
};
static
const
WCHAR
test_displayName
[]
=
{
'T'
,
'e'
,
's'
,
't'
,
0
};
...
@@ -101,51 +103,74 @@ static BOOL setup(void)
...
@@ -101,51 +103,74 @@ static BOOL setup(void)
/* Generic test cleanup */
/* Generic test cleanup */
static
void
teardown
(
void
)
static
void
teardown
(
void
)
{
{
IBackgroundCopyJob_Cancel
(
test_job
);
IBackgroundCopyJob_Release
(
test_job
);
IBackgroundCopyJob_Release
(
test_job
);
IBackgroundCopyManager_Release
(
test_manager
);
IBackgroundCopyManager_Release
(
test_manager
);
}
}
/* FIXME: Remove when Wine has implemented this */
DEFINE_GUID
(
CLSID_BackgroundCopyManager2_0
,
0x6d18ad12
,
0xbde3
,
0x4393
,
0xb3
,
0x11
,
0x09
,
0x9c
,
0x34
,
0x6e
,
0x6d
,
0xf9
);
static
BOOL
check_bits20
(
void
)
static
BOOL
check_bits20
(
void
)
{
{
HRESULT
hres
;
HRESULT
hres
;
IBackgroundCopyManager
*
manager
;
IBackgroundCopyManager
*
manager
;
BOOL
ret
=
TRUE
;
IBackgroundCopyJob
*
job
,
*
job3
;
hres
=
CoCreateInstance
(
&
CLSID_BackgroundCopyManager
2_0
,
NULL
,
hres
=
CoCreateInstance
(
&
CLSID_BackgroundCopyManager
,
NULL
,
CLSCTX_LOCAL_SERVER
,
CLSCTX_LOCAL_SERVER
,
&
IID_IBackgroundCopyManager
,
&
IID_IBackgroundCopyManager
,
(
void
**
)
&
manager
);
(
void
**
)
&
manager
)
;
if
(
hres
!=
S_OK
)
return
FALSE
;
if
(
hres
==
REGDB_E_CLASSNOTREG
)
hres
=
IBackgroundCopyManager_CreateJob
(
manager
,
test_displayName
,
test_type
,
&
test_jobId
,
&
job
);
if
(
hres
!=
S_OK
)
{
{
ret
=
FALSE
;
IBackgroundCopyManager_Release
(
manager
);
return
FALSE
;
}
/* FIXME: Wine implements 2.0 functionality but doesn't advertise 2.0
hres
=
IBackgroundCopyJob_QueryInterface
(
job
,
&
IID_IBackgroundCopyJob3
,
(
void
**
)
&
job3
);
*
IBackgroundCopyJob_Cancel
(
job
);
* Remove when Wine is fixed
IBackgroundCopyJob_Release
(
job
);
*/
if
(
hres
!=
S_OK
)
if
(
setup
())
{
{
IBackgroundCopyManager_Release
(
manager
);
HRESULT
hres2
;
return
FALSE
;
}
hres2
=
IBackgroundCopyJob_AddFile
(
test_job
,
test_remotePathA
,
IBackgroundCopyJob_Release
(
job3
);
test_localPathA
);
IBackgroundCopyManager_Release
(
manager
);
if
(
hres2
==
S_OK
)
return
TRUE
;
{
}
trace
(
"Running on Wine, claim 2.0 is present
\n
"
);
ret
=
TRUE
;
static
BOOL
check_bits25
(
void
)
}
{
teardown
();
HRESULT
hres
;
}
IBackgroundCopyManager
*
manager
;
IBackgroundCopyJob
*
job
;
IBackgroundCopyJobHttpOptions
*
options
;
hres
=
CoCreateInstance
(
&
CLSID_BackgroundCopyManager
,
NULL
,
CLSCTX_LOCAL_SERVER
,
&
IID_IBackgroundCopyManager
,
(
void
**
)
&
manager
);
if
(
hres
!=
S_OK
)
return
FALSE
;
hres
=
IBackgroundCopyManager_CreateJob
(
manager
,
test_displayName
,
test_type
,
&
test_jobId
,
&
job
);
if
(
hres
!=
S_OK
)
{
IBackgroundCopyManager_Release
(
manager
);
return
FALSE
;
}
}
if
(
manager
)
hres
=
IBackgroundCopyJob_QueryInterface
(
job
,
&
IID_IBackgroundCopyJobHttpOptions
,
(
void
**
)
&
options
);
IBackgroundCopyJob_Cancel
(
job
);
IBackgroundCopyJob_Release
(
job
);
if
(
hres
!=
S_OK
)
{
IBackgroundCopyManager_Release
(
manager
);
IBackgroundCopyManager_Release
(
manager
);
return
FALSE
;
}
return
ret
;
IBackgroundCopyJobHttpOptions_Release
(
options
);
IBackgroundCopyManager_Release
(
manager
);
return
TRUE
;
}
}
/* Test that the jobId is properly set */
/* Test that the jobId is properly set */
...
@@ -457,6 +482,151 @@ static void test_NotifyInterface(void)
...
@@ -457,6 +482,151 @@ static void test_NotifyInterface(void)
ok
(
unk
==
NULL
,
"got %p
\n
"
,
unk
);
ok
(
unk
==
NULL
,
"got %p
\n
"
,
unk
);
}
}
static
void
test_Cancel
(
void
)
{
HRESULT
hr
;
BG_JOB_STATE
state
;
state
=
BG_JOB_STATE_ERROR
;
hr
=
IBackgroundCopyJob_GetState
(
test_job
,
&
state
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
state
!=
BG_JOB_STATE_CANCELLED
,
"got %u
\n
"
,
state
);
hr
=
IBackgroundCopyJob_Cancel
(
test_job
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
state
=
BG_JOB_STATE_ERROR
;
hr
=
IBackgroundCopyJob_GetState
(
test_job
,
&
state
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
state
==
BG_JOB_STATE_CANCELLED
,
"got %u
\n
"
,
state
);
hr
=
IBackgroundCopyJob_Cancel
(
test_job
);
ok
(
hr
==
BG_E_INVALID_STATE
,
"got 0x%08x
\n
"
,
hr
);
}
static
void
test_HttpOptions
(
void
)
{
static
const
WCHAR
urlW
[]
=
{
'h'
,
't'
,
't'
,
'p'
,
's'
,
':'
,
'/'
,
'/'
,
't'
,
'e'
,
's'
,
't'
,
'.'
,
'w'
,
'i'
,
'n'
,
'e'
,
'h'
,
'q'
,
'.'
,
'o'
,
'r'
,
'g'
,
'/'
,
0
};
static
const
WCHAR
winetestW
[]
=
{
'W'
,
'i'
,
'n'
,
'e'
,
':'
,
' '
,
't'
,
'e'
,
's'
,
't'
,
'\r'
,
'\n'
,
0
};
static
const
unsigned
int
timeout
=
30
;
HRESULT
hr
;
IBackgroundCopyJobHttpOptions
*
options
;
IBackgroundCopyError
*
error
;
BG_JOB_STATE
state
;
unsigned
int
i
;
WCHAR
*
headers
;
ULONG
flags
,
orig_flags
;
DeleteFileW
(
test_localPathA
);
hr
=
IBackgroundCopyJob_AddFile
(
test_job
,
urlW
,
test_localPathA
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
hr
=
IBackgroundCopyJob_QueryInterface
(
test_job
,
&
IID_IBackgroundCopyJobHttpOptions
,
(
void
**
)
&
options
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
if
(
options
)
{
headers
=
(
WCHAR
*
)
0xdeadbeef
;
hr
=
IBackgroundCopyJobHttpOptions_GetCustomHeaders
(
options
,
&
headers
);
ok
(
hr
==
S_FALSE
,
"got 0x%08x
\n
"
,
hr
);
ok
(
headers
==
NULL
,
"got %p
\n
"
,
headers
);
hr
=
IBackgroundCopyJobHttpOptions_SetCustomHeaders
(
options
,
winetestW
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
headers
=
(
WCHAR
*
)
0xdeadbeef
;
hr
=
IBackgroundCopyJobHttpOptions_GetCustomHeaders
(
options
,
&
headers
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
if
(
hr
==
S_OK
)
{
ok
(
!
lstrcmpW
(
headers
,
winetestW
),
"got %s
\n
"
,
wine_dbgstr_w
(
headers
));
CoTaskMemFree
(
headers
);
}
hr
=
IBackgroundCopyJobHttpOptions_SetCustomHeaders
(
options
,
NULL
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
headers
=
(
WCHAR
*
)
0xdeadbeef
;
hr
=
IBackgroundCopyJobHttpOptions_GetCustomHeaders
(
options
,
&
headers
);
ok
(
hr
==
S_FALSE
,
"got 0x%08x
\n
"
,
hr
);
ok
(
headers
==
NULL
,
"got %p
\n
"
,
headers
);
orig_flags
=
0xdeadbeef
;
hr
=
IBackgroundCopyJobHttpOptions_GetSecurityFlags
(
options
,
&
orig_flags
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
!
orig_flags
,
"got 0x%08x
\n
"
,
orig_flags
);
hr
=
IBackgroundCopyJobHttpOptions_SetSecurityFlags
(
options
,
0
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
flags
=
0xdeadbeef
;
hr
=
IBackgroundCopyJobHttpOptions_GetSecurityFlags
(
options
,
&
flags
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
!
flags
,
"got 0x%08x
\n
"
,
flags
);
}
hr
=
IBackgroundCopyJob_Resume
(
test_job
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
for
(
i
=
0
;
i
<
timeout
;
i
++
)
{
hr
=
IBackgroundCopyJob_GetState
(
test_job
,
&
state
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
state
==
BG_JOB_STATE_QUEUED
||
state
==
BG_JOB_STATE_CONNECTING
||
state
==
BG_JOB_STATE_TRANSFERRING
||
state
==
BG_JOB_STATE_TRANSFERRED
,
"unexpected state: %u
\n
"
,
state
);
if
(
state
==
BG_JOB_STATE_TRANSFERRED
)
break
;
Sleep
(
1000
);
}
ok
(
i
<
timeout
,
"BITS job timed out
\n
"
);
if
(
i
<
timeout
)
{
hr
=
IBackgroundCopyJob_GetError
(
test_job
,
&
error
);
ok
(
hr
==
BG_E_ERROR_INFORMATION_UNAVAILABLE
,
"got 0x%08x
\n
"
,
hr
);
}
if
(
options
)
{
headers
=
(
WCHAR
*
)
0xdeadbeef
;
hr
=
IBackgroundCopyJobHttpOptions_GetCustomHeaders
(
options
,
&
headers
);
ok
(
hr
==
S_FALSE
,
"got 0x%08x
\n
"
,
hr
);
ok
(
headers
==
NULL
,
"got %p
\n
"
,
headers
);
hr
=
IBackgroundCopyJobHttpOptions_SetCustomHeaders
(
options
,
NULL
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
hr
=
IBackgroundCopyJobHttpOptions_GetCustomHeaders
(
options
,
&
headers
);
ok
(
hr
==
S_FALSE
,
"got 0x%08x
\n
"
,
hr
);
flags
=
0xdeadbeef
;
hr
=
IBackgroundCopyJobHttpOptions_GetSecurityFlags
(
options
,
&
flags
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
!
flags
,
"got 0x%08x
\n
"
,
flags
);
hr
=
IBackgroundCopyJobHttpOptions_SetSecurityFlags
(
options
,
orig_flags
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
IBackgroundCopyJobHttpOptions_Release
(
options
);
}
hr
=
IBackgroundCopyJob_Complete
(
test_job
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
hr
=
IBackgroundCopyJob_GetState
(
test_job
,
&
state
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
state
==
BG_JOB_STATE_ACKNOWLEDGED
,
"unexpected state: %u
\n
"
,
state
);
hr
=
IBackgroundCopyJob_Complete
(
test_job
);
ok
(
hr
==
BG_E_INVALID_STATE
,
"got 0x%08x
\n
"
,
hr
);
DeleteFileW
(
test_localPathA
);
}
typedef
void
(
*
test_t
)(
void
);
typedef
void
(
*
test_t
)(
void
);
START_TEST
(
job
)
START_TEST
(
job
)
...
@@ -478,6 +648,11 @@ START_TEST(job)
...
@@ -478,6 +648,11 @@ START_TEST(job)
test_EnumFiles
,
test_EnumFiles
,
test_CompleteLocal
,
test_CompleteLocal
,
test_CompleteLocalURL
,
test_CompleteLocalURL
,
test_Cancel
,
/* must be last */
0
};
static
const
test_t
tests_bits25
[]
=
{
test_HttpOptions
,
0
0
};
};
const
test_t
*
test
;
const
test_t
*
test
;
...
@@ -525,5 +700,24 @@ START_TEST(job)
...
@@ -525,5 +700,24 @@ START_TEST(job)
win_skip
(
"Tests need BITS 2.0 or higher
\n
"
);
win_skip
(
"Tests need BITS 2.0 or higher
\n
"
);
}
}
if
(
check_bits25
())
{
for
(
test
=
tests_bits25
,
i
=
0
;
*
test
;
++
test
,
++
i
)
{
/* Keep state separate between tests. */
if
(
!
setup
())
{
ok
(
0
,
"tests_bits25:%d: Unable to setup test
\n
"
,
i
);
break
;
}
(
*
test
)();
teardown
();
}
}
else
{
win_skip
(
"Tests need BITS 2.5 or higher
\n
"
);
}
CoUninitialize
();
CoUninitialize
();
}
}
dlls/qmgr/tests/qmgr.c
View file @
c5a96990
...
@@ -23,7 +23,6 @@
...
@@ -23,7 +23,6 @@
#define COBJMACROS
#define COBJMACROS
#include "wine/test.h"
#include "wine/test.h"
#include "initguid.h"
#include "bits.h"
#include "bits.h"
static
WCHAR
progname
[
MAX_PATH
];
static
WCHAR
progname
[
MAX_PATH
];
...
...
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