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
55ad9da9
Commit
55ad9da9
authored
Jan 13, 2014
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jan 13, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskschd/tests: Add some tests for ITaskService::Connect.
parent
6da6f186
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
125 additions
and
0 deletions
+125
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/taskschd/tests/Makefile.in
+5
-0
scheduler.c
dlls/taskschd/tests/scheduler.c
+118
-0
No files found.
configure
View file @
55ad9da9
...
...
@@ -17068,6 +17068,7 @@ wine_fn_config_dll system.drv16 enable_win16
wine_fn_config_dll t2embed enable_t2embed
wine_fn_config_dll tapi32 enable_tapi32 implib
wine_fn_config_dll taskschd enable_taskschd clean
wine_fn_config_test dlls/taskschd/tests taskschd_test
wine_fn_config_dll toolhelp.dll16 enable_win16
wine_fn_config_dll traffic enable_traffic
wine_fn_config_dll twain.dll16 enable_win16
...
...
configure.ac
View file @
55ad9da9
...
...
@@ -3121,6 +3121,7 @@ WINE_CONFIG_DLL(system.drv16,enable_win16)
WINE_CONFIG_DLL(t2embed)
WINE_CONFIG_DLL(tapi32,,[implib])
WINE_CONFIG_DLL(taskschd,,[clean])
WINE_CONFIG_TEST(dlls/taskschd/tests)
WINE_CONFIG_DLL(toolhelp.dll16,enable_win16)
WINE_CONFIG_DLL(traffic)
WINE_CONFIG_DLL(twain.dll16,enable_win16)
...
...
dlls/taskschd/tests/Makefile.in
0 → 100644
View file @
55ad9da9
TESTDLL
=
taskschd.dll
IMPORTS
=
oleaut32 ole32
C_SRCS
=
\
scheduler.c
dlls/taskschd/tests/scheduler.c
0 → 100644
View file @
55ad9da9
/*
* Copyright 2014 Dmitry Timoshkov
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "initguid.h"
#include "objbase.h"
#include "taskschd.h"
#include <wine/test.h>
static
void
test_Connect
(
void
)
{
static
const
WCHAR
deadbeefW
[]
=
{
'd'
,
'e'
,
'a'
,
'd'
,
'b'
,
'e'
,
'e'
,
'f'
,
0
};
WCHAR
comp_name
[
MAX_COMPUTERNAME_LENGTH
+
1
];
DWORD
len
;
HRESULT
hr
;
BSTR
bstr
;
VARIANT
v_null
,
v_comp
;
VARIANT_BOOL
vbool
;
ITaskService
*
service
;
hr
=
CoCreateInstance
(
&
CLSID_TaskScheduler
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_ITaskService
,
(
void
**
)
&
service
);
if
(
hr
!=
S_OK
)
{
win_skip
(
"CoCreateInstance(CLSID_TaskScheduler) error %#x
\n
"
,
hr
);
return
;
}
vbool
=
0xdead
;
hr
=
ITaskService_get_Connected
(
service
,
&
vbool
);
todo_wine
ok
(
hr
==
S_OK
,
"get_Connected error %#x
\n
"
,
hr
);
todo_wine
ok
(
vbool
==
VARIANT_FALSE
,
"expected VARIANT_FALSE, got %d
\n
"
,
vbool
);
hr
=
ITaskService_get_TargetServer
(
service
,
&
bstr
);
todo_wine
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_ONLY_IF_CONNECTED
),
"expected ERROR_ONLY_IF_CONNECTED, got %#x
\n
"
,
hr
);
/* Win7 doesn't support UNC \\ prefix, but according to a user
* comment on MSDN Win8 supports both ways.
*/
len
=
sizeof
(
comp_name
)
/
sizeof
(
comp_name
[
0
]);
GetComputerNameW
(
comp_name
,
&
len
);
V_VT
(
&
v_null
)
=
VT_NULL
;
V_VT
(
&
v_comp
)
=
VT_BSTR
;
V_BSTR
(
&
v_comp
)
=
SysAllocString
(
comp_name
);
hr
=
ITaskService_Connect
(
service
,
v_comp
,
v_null
,
v_null
,
v_null
);
todo_wine
ok
(
hr
==
S_OK
||
hr
==
E_ACCESSDENIED
/* not an administrator */
,
"Connect error %#x
\n
"
,
hr
);
SysFreeString
(
V_BSTR
(
&
v_comp
));
V_BSTR
(
&
v_comp
)
=
SysAllocString
(
deadbeefW
);
hr
=
ITaskService_Connect
(
service
,
v_comp
,
v_null
,
v_null
,
v_null
);
todo_wine
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_BAD_NETPATH
),
"expected ERROR_BAD_NETPATH, got %#x
\n
"
,
hr
);
vbool
=
0xdead
;
hr
=
ITaskService_get_Connected
(
service
,
&
vbool
);
todo_wine
ok
(
hr
==
S_OK
,
"get_Connected error %#x
\n
"
,
hr
);
todo_wine
ok
(
vbool
==
VARIANT_TRUE
,
"expected VARIANT_TRUE, got %d
\n
"
,
vbool
);
hr
=
ITaskService_Connect
(
service
,
v_null
,
v_null
,
v_null
,
v_null
);
todo_wine
ok
(
hr
==
S_OK
,
"Connect error %#x
\n
"
,
hr
);
vbool
=
0xdead
;
hr
=
ITaskService_get_Connected
(
service
,
&
vbool
);
todo_wine
ok
(
hr
==
S_OK
,
"get_Connected error %#x
\n
"
,
hr
);
todo_wine
ok
(
vbool
==
VARIANT_TRUE
,
"expected VARIANT_TRUE, got %d
\n
"
,
vbool
);
hr
=
ITaskService_get_TargetServer
(
service
,
&
bstr
);
todo_wine
ok
(
hr
==
S_OK
,
"get_TargetServer error %#x
\n
"
,
hr
);
if
(
hr
==
S_OK
)
{
ok
(
!
lstrcmpW
(
comp_name
,
bstr
),
"compname %s != server name %s
\n
"
,
wine_dbgstr_w
(
comp_name
),
wine_dbgstr_w
(
bstr
));
SysFreeString
(
bstr
);
}
SysFreeString
(
V_BSTR
(
&
v_comp
));
}
START_TEST
(
scheduler
)
{
OleInitialize
(
NULL
);
test_Connect
();
OleUninitialize
();
}
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