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
5db45041
Commit
5db45041
authored
Jan 24, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Jan 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdsapi: Add tests for DsMakeSpnW.
parent
7e8e8078
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
137 additions
and
0 deletions
+137
-0
.gitignore
.gitignore
+4
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/Makefile.in
+1
-0
Makefile.in
dlls/ntdsapi/tests/Makefile.in
+13
-0
ntdsapi.c
dlls/ntdsapi/tests/ntdsapi.c
+109
-0
Makefile.in
programs/winetest/Makefile.in
+3
-0
winetest.rc
programs/winetest/winetest.rc
+1
-0
No files found.
.gitignore
View file @
5db45041
...
...
@@ -322,6 +322,9 @@ dlls/ntdll/tests/ntdll_crosstest.exe
dlls/ntdll/tests/testlist.c
dlls/ntdll/version.res
dlls/ntdsapi/libntdsapi.def
dlls/ntdsapi/tests/*.ok
dlls/ntdsapi/tests/ntdsapi_crosstest.exe
dlls/ntdsapi/tests/testlist.c
dlls/ntoskrnl.exe/libntoskrnl.exe.def
dlls/ntprint/ntprint.res
dlls/ntprint/tests/*.ok
...
...
@@ -763,6 +766,7 @@ programs/winetest/msvcrtd_test.exe
programs/winetest/msxml3_test.exe
programs/winetest/netapi32_test.exe
programs/winetest/ntdll_test.exe
programs/winetest/ntdsapi_test.exe
programs/winetest/ntprint_test.exe
programs/winetest/odbccp32_test.exe
programs/winetest/ole32_test.exe
...
...
Makefile.in
View file @
5db45041
...
...
@@ -333,6 +333,7 @@ ALL_MAKEFILES = \
dlls/ntdll/Makefile
\
dlls/ntdll/tests/Makefile
\
dlls/ntdsapi/Makefile
\
dlls/ntdsapi/tests/Makefile
\
dlls/ntoskrnl.exe/Makefile
\
dlls/ntprint/Makefile
\
dlls/ntprint/tests/Makefile
\
...
...
@@ -722,6 +723,7 @@ dlls/newdev/Makefile: dlls/newdev/Makefile.in dlls/Makedll.rules
dlls/ntdll/Makefile
:
dlls/ntdll/Makefile.in dlls/Makedll.rules
dlls/ntdll/tests/Makefile
:
dlls/ntdll/tests/Makefile.in dlls/Maketest.rules
dlls/ntdsapi/Makefile
:
dlls/ntdsapi/Makefile.in dlls/Makedll.rules
dlls/ntdsapi/tests/Makefile
:
dlls/ntdsapi/tests/Makefile.in dlls/Maketest.rules
dlls/ntoskrnl.exe/Makefile
:
dlls/ntoskrnl.exe/Makefile.in dlls/Makedll.rules
dlls/ntprint/Makefile
:
dlls/ntprint/Makefile.in dlls/Makedll.rules
dlls/ntprint/tests/Makefile
:
dlls/ntprint/tests/Makefile.in dlls/Maketest.rules
...
...
configure
View file @
5db45041
...
...
@@ -21459,6 +21459,8 @@ ac_config_files="$ac_config_files dlls/ntdll/tests/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/ntdsapi/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/ntdsapi/tests/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/ntoskrnl.exe/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/ntprint/Makefile"
...
...
@@ -22598,6 +22600,7 @@ do
"dlls/ntdll/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ntdll/Makefile" ;;
"dlls/ntdll/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ntdll/tests/Makefile" ;;
"dlls/ntdsapi/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ntdsapi/Makefile" ;;
"dlls/ntdsapi/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ntdsapi/tests/Makefile" ;;
"dlls/ntoskrnl.exe/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ntoskrnl.exe/Makefile" ;;
"dlls/ntprint/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ntprint/Makefile" ;;
"dlls/ntprint/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ntprint/tests/Makefile" ;;
...
...
configure.ac
View file @
5db45041
...
...
@@ -1831,6 +1831,7 @@ AC_CONFIG_FILES([dlls/newdev/Makefile])
AC_CONFIG_FILES([dlls/ntdll/Makefile])
AC_CONFIG_FILES([dlls/ntdll/tests/Makefile])
AC_CONFIG_FILES([dlls/ntdsapi/Makefile])
AC_CONFIG_FILES([dlls/ntdsapi/tests/Makefile])
AC_CONFIG_FILES([dlls/ntoskrnl.exe/Makefile])
AC_CONFIG_FILES([dlls/ntprint/Makefile])
AC_CONFIG_FILES([dlls/ntprint/tests/Makefile])
...
...
dlls/Makefile.in
View file @
5db45041
...
...
@@ -296,6 +296,7 @@ TESTSUBDIRS = \
msxml3/tests
\
netapi32/tests
\
ntdll/tests
\
ntdsapi/tests
\
ntprint/tests
\
odbccp32/tests
\
ole32/tests
\
...
...
dlls/ntdsapi/tests/Makefile.in
0 → 100644
View file @
5db45041
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
TESTDLL
=
ntdsapi.dll
IMPORTS
=
ntdsapi kernel32
CTESTS
=
\
ntdsapi.c
@MAKE_TEST_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/ntdsapi/tests/ntdsapi.c
0 → 100644
View file @
5db45041
/*
* Copyright (C) 2008 Robert Shearman (for CodeWeavers)
*
* 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>
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "winnls.h"
#include "ntdsapi.h"
#include "wine/test.h"
static
const
char
*
wine_dbgstr_w
(
LPCWSTR
str
)
{
static
char
buf
[
512
];
if
(
!
str
)
return
"(null)"
;
WideCharToMultiByte
(
CP_ACP
,
0
,
str
,
-
1
,
buf
,
sizeof
(
buf
),
NULL
,
NULL
);
return
buf
;
}
static
void
test_DsMakeSpn
(
void
)
{
DWORD
ret
;
WCHAR
spn
[
256
];
DWORD
spn_length
;
static
const
WCHAR
wszServiceClass
[]
=
{
'c'
,
'l'
,
'a'
,
's'
,
's'
,
0
};
static
const
WCHAR
wszServiceHost
[]
=
{
'h'
,
'o'
,
's'
,
't'
,
0
};
static
const
WCHAR
wszInstanceName
[]
=
{
'i'
,
'n'
,
's'
,
't'
,
'a'
,
'n'
,
'c'
,
'e'
,
0
};
static
const
WCHAR
wszReferrer
[]
=
{
'r'
,
'e'
,
'f'
,
'e'
,
'r'
,
'r'
,
'e'
,
'r'
,
0
};
static
const
WCHAR
wszSpn1
[]
=
{
'c'
,
'l'
,
'a'
,
's'
,
's'
,
'/'
,
'h'
,
'o'
,
's'
,
't'
,
0
};
static
const
WCHAR
wszSpn2
[]
=
{
'c'
,
'l'
,
'a'
,
's'
,
's'
,
'/'
,
'i'
,
'n'
,
's'
,
't'
,
'a'
,
'n'
,
'c'
,
'e'
,
'/'
,
'h'
,
'o'
,
's'
,
't'
,
0
};
static
const
WCHAR
wszSpn3
[]
=
{
'c'
,
'l'
,
'a'
,
's'
,
's'
,
'/'
,
'i'
,
'n'
,
's'
,
't'
,
'a'
,
'n'
,
'c'
,
'e'
,
':'
,
'5'
,
'5'
,
'5'
,
'/'
,
'h'
,
'o'
,
's'
,
't'
,
0
};
static
const
WCHAR
wszSpn4
[]
=
{
'c'
,
'l'
,
'a'
,
's'
,
's'
,
'/'
,
'i'
,
'n'
,
's'
,
't'
,
'a'
,
'n'
,
'c'
,
'e'
,
':'
,
'5'
,
'5'
,
'5'
,
'/'
,
'h'
,
'o'
,
's'
,
't'
,
0
};
static
const
WCHAR
wszSpn5
[]
=
{
'c'
,
'l'
,
'a'
,
's'
,
's'
,
'/'
,
'h'
,
'o'
,
's'
,
't'
,
':'
,
'5'
,
'5'
,
'5'
,
0
};
spn
[
0
]
=
'\0'
;
spn_length
=
sizeof
(
spn
)
/
sizeof
(
spn
[
0
]);
ret
=
DsMakeSpnW
(
NULL
,
NULL
,
NULL
,
0
,
NULL
,
&
spn_length
,
spn
);
todo_wine
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"DsMakeSpnW should have failed with ERROR_INVALID_PARAMETER instead of %d
\n
"
,
ret
);
spn_length
=
sizeof
(
spn
)
/
sizeof
(
spn
[
0
]);
ret
=
DsMakeSpnW
(
NULL
,
wszServiceHost
,
NULL
,
0
,
NULL
,
&
spn_length
,
spn
);
todo_wine
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"DsMakeSpnW should have failed with ERROR_INVALID_PARAMETER instead of %d
\n
"
,
ret
);
spn_length
=
sizeof
(
spn
)
/
sizeof
(
spn
[
0
]);
ret
=
DsMakeSpnW
(
wszServiceClass
,
wszServiceHost
,
NULL
,
0
,
NULL
,
&
spn_length
,
spn
);
todo_wine
{
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %d
\n
"
,
ret
);
ok
(
!
lstrcmpW
(
spn
,
wszSpn1
),
"DsMakeSpnW returned unexpected SPN %s
\n
"
,
wine_dbgstr_w
(
spn
));
ok
(
spn_length
==
lstrlenW
(
wszSpn1
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %d
\n
"
,
lstrlenW
(
wszSpn1
)
+
1
,
spn_length
);
}
spn_length
=
sizeof
(
spn
)
/
sizeof
(
spn
[
0
]);
ret
=
DsMakeSpnW
(
wszServiceClass
,
wszServiceHost
,
wszInstanceName
,
0
,
NULL
,
&
spn_length
,
spn
);
todo_wine
{
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %d
\n
"
,
ret
);
ok
(
!
lstrcmpW
(
spn
,
wszSpn2
),
"DsMakeSpnW returned unexpected SPN %s
\n
"
,
wine_dbgstr_w
(
spn
));
ok
(
spn_length
==
lstrlenW
(
wszSpn2
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %d
\n
"
,
lstrlenW
(
wszSpn2
)
+
1
,
spn_length
);
}
spn_length
=
sizeof
(
spn
)
/
sizeof
(
spn
[
0
]);
ret
=
DsMakeSpnW
(
wszServiceClass
,
wszServiceHost
,
wszInstanceName
,
555
,
NULL
,
&
spn_length
,
spn
);
todo_wine
{
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %d
\n
"
,
ret
);
ok
(
!
lstrcmpW
(
spn
,
wszSpn3
),
"DsMakeSpnW returned unexpected SPN %s
\n
"
,
wine_dbgstr_w
(
spn
));
ok
(
spn_length
==
lstrlenW
(
wszSpn3
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %d
\n
"
,
lstrlenW
(
wszSpn3
)
+
1
,
spn_length
);
}
spn_length
=
sizeof
(
spn
)
/
sizeof
(
spn
[
0
]);
ret
=
DsMakeSpnW
(
wszServiceClass
,
wszServiceHost
,
wszInstanceName
,
555
,
wszReferrer
,
&
spn_length
,
spn
);
todo_wine
{
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %d
\n
"
,
ret
);
ok
(
!
lstrcmpW
(
spn
,
wszSpn4
),
"DsMakeSpnW returned unexpected SPN %s
\n
"
,
wine_dbgstr_w
(
spn
));
ok
(
spn_length
==
lstrlenW
(
wszSpn4
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %d
\n
"
,
lstrlenW
(
wszSpn4
)
+
1
,
spn_length
);
}
spn_length
=
sizeof
(
spn
)
/
sizeof
(
spn
[
0
]);
ret
=
DsMakeSpnW
(
wszServiceClass
,
wszServiceHost
,
NULL
,
555
,
wszReferrer
,
&
spn_length
,
spn
);
todo_wine
{
ok
(
ret
==
ERROR_SUCCESS
,
"DsMakeSpnW should have succeeded instead of failing with %d
\n
"
,
ret
);
ok
(
!
lstrcmpW
(
spn
,
wszSpn5
),
"DsMakeSpnW returned unexpected SPN %s
\n
"
,
wine_dbgstr_w
(
spn
));
ok
(
spn_length
==
lstrlenW
(
wszSpn5
)
+
1
,
"DsMakeSpnW should have returned spn_length of %d instead of %d
\n
"
,
lstrlenW
(
wszSpn5
)
+
1
,
spn_length
);
}
}
START_TEST
(
ntdsapi
)
{
test_DsMakeSpn
();
}
programs/winetest/Makefile.in
View file @
5db45041
...
...
@@ -62,6 +62,7 @@ TESTBINS = \
msxml3_test.exe
\
netapi32_test.exe
\
ntdll_test.exe
\
ntdsapi_test.exe
\
ntprint_test.exe
\
odbccp32_test.exe
\
ole32_test.exe
\
...
...
@@ -179,6 +180,8 @@ netapi32_test.exe: $(DLLDIR)/netapi32/tests/netapi32_test.exe$(DLLEXT)
cp
$(DLLDIR)
/netapi32/tests/netapi32_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
ntdll_test.exe
:
$(DLLDIR)/ntdll/tests/ntdll_test.exe$(DLLEXT)
cp
$(DLLDIR)
/ntdll/tests/ntdll_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
ntdsapi_test.exe
:
$(DLLDIR)/ntdsapi/tests/ntdsapi_test.exe$(DLLEXT)
cp
$(DLLDIR)
/ntdsapi/tests/ntdsapi_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
ntprint_test.exe
:
$(DLLDIR)/ntprint/tests/ntprint_test.exe$(DLLEXT)
cp
$(DLLDIR)
/ntprint/tests/ntprint_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
odbccp32_test.exe
:
$(DLLDIR)/odbccp32/tests/odbccp32_test.exe$(DLLEXT)
...
...
programs/winetest/winetest.rc
View file @
5db45041
...
...
@@ -120,6 +120,7 @@ msvcrtd_test.exe TESTRES "msvcrtd_test.exe"
msxml3_test.exe TESTRES "msxml3_test.exe"
netapi32_test.exe TESTRES "netapi32_test.exe"
ntdll_test.exe TESTRES "ntdll_test.exe"
ntdsapi_test.exe TESTRES "ntdsapi_test.exe"
ntprint_test.exe TESTRES "ntprint_test.exe"
odbccp32_test.exe TESTRES "odbccp32_test.exe"
ole32_test.exe TESTRES "ole32_test.exe"
...
...
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