ReactOS 0.4.15-dev-7924-g5949c20
ntdsapi.c File Reference
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "winnls.h"
#include "rpc.h"
#include "rpcdce.h"
#include "ntdsapi.h"
#include "wine/test.h"
Include dependency graph for ntdsapi.c:

Go to the source code of this file.

Functions

static void test_DsMakeSpn (void)
 
static void test_DsClientMakeSpnForTargetServer (void)
 
 START_TEST (ntdsapi)
 

Function Documentation

◆ START_TEST()

START_TEST ( ntdsapi  )

Definition at line 117 of file ntdsapi.c.

118{
121}
static void test_DsClientMakeSpnForTargetServer(void)
Definition: ntdsapi.c:87
static void test_DsMakeSpn(void)
Definition: ntdsapi.c:31

◆ test_DsClientMakeSpnForTargetServer()

static void test_DsClientMakeSpnForTargetServer ( void  )
static

Definition at line 87 of file ntdsapi.c.

88{
89 static const WCHAR classW[] = {'c','l','a','s','s',0};
90 static const WCHAR hostW[] = {'h','o','s','t','.','d','o','m','a','i','n',0};
91 static const WCHAR resultW[] = {'c','l','a','s','s','/','h','o','s','t','.','d','o','m','a','i','n',0};
92 DWORD ret, len;
93 WCHAR buf[256];
94
96 ok( ret == ERROR_INVALID_PARAMETER, "got %u\n", ret );
97
99 ok( ret == ERROR_INVALID_PARAMETER, "got %u\n", ret );
100
102 ok( ret == ERROR_INVALID_PARAMETER, "got %u\n", ret );
103
104 len = 0;
106 ok( ret == ERROR_BUFFER_OVERFLOW, "got %u\n", ret );
107 ok( len == lstrlenW(resultW) + 1, "got %u\n", len );
108
109 len = ARRAY_SIZE(buf);
110 buf[0] = 0;
112 ok( ret == ERROR_SUCCESS, "got %u\n", ret );
113 ok( len == lstrlenW(resultW) + 1, "got %u\n", len );
114 ok( !lstrcmpW( buf, resultW ), "wrong data\n" );
115}
#define ok(value,...)
Definition: atltest.h:57
#define ARRAY_SIZE(A)
Definition: main.h:33
#define ERROR_SUCCESS
Definition: deptool.c:10
#define NULL
Definition: types.h:112
#define ERROR_INVALID_PARAMETER
Definition: compat.h:101
#define lstrlenW
Definition: compat.h:750
DWORD WINAPI DsClientMakeSpnForTargetServerW(LPCWSTR class, LPCWSTR name, DWORD *buflen, LPWSTR buf)
Definition: ntdsapi.c:209
unsigned long DWORD
Definition: ntddk_ex.h:95
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751
GLenum GLsizei len
Definition: glext.h:6722
int WINAPI lstrcmpW(LPCWSTR lpString1, LPCWSTR lpString2)
Definition: lstring.c:170
static const WCHAR hostW[]
Definition: protocol.c:140
static const WCHAR classW[]
Definition: lex.c:40
int ret
#define ERROR_BUFFER_OVERFLOW
Definition: winerror.h:185
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by START_TEST().

◆ test_DsMakeSpn()

static void test_DsMakeSpn ( void  )
static

Definition at line 31 of file ntdsapi.c.

32{
33 DWORD ret;
34 WCHAR spn[256];
35 DWORD spn_length;
36 static const WCHAR wszServiceClass[] = {'c','l','a','s','s',0};
37 static const WCHAR wszServiceHost[] = {'h','o','s','t',0};
38 static const WCHAR wszInstanceName[] = {'i','n','s','t','a','n','c','e',0};
39 static const WCHAR wszReferrer[] = {'r','e','f','e','r','r','e','r',0};
40 static const WCHAR wszSpn1[] = {'c','l','a','s','s','/','h','o','s','t',0};
41 static const WCHAR wszSpn2[] = {'c','l','a','s','s','/','i','n','s','t','a','n','c','e','/','h','o','s','t',0};
42 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};
43 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};
44 static const WCHAR wszSpn5[] = {'c','l','a','s','s','/','h','o','s','t',':','5','5','5',0};
45
46 spn[0] = '\0';
47
48 spn_length = ARRAY_SIZE(spn);
49 ret = DsMakeSpnW(NULL, NULL, NULL, 0, NULL, &spn_length, spn);
50 ok(ret == ERROR_INVALID_PARAMETER, "DsMakeSpnW should have failed with ERROR_INVALID_PARAMETER instead of %d\n", ret);
51
52 spn_length = ARRAY_SIZE(spn);
53 ret = DsMakeSpnW(NULL, wszServiceHost, NULL, 0, NULL, &spn_length, spn);
54 ok(ret == ERROR_INVALID_PARAMETER, "DsMakeSpnW should have failed with ERROR_INVALID_PARAMETER instead of %d\n", ret);
55
56 spn_length = ARRAY_SIZE(spn);
57 ret = DsMakeSpnW(wszServiceClass, wszServiceHost, NULL, 0, NULL, &spn_length, spn);
58 ok(ret == ERROR_SUCCESS, "DsMakeSpnW should have succeeded instead of failing with %d\n", ret);
59 ok(!lstrcmpW(spn, wszSpn1), "DsMakeSpnW returned unexpected SPN %s\n", wine_dbgstr_w(spn));
60 ok(spn_length == lstrlenW(wszSpn1) + 1, "DsMakeSpnW should have returned spn_length of %d instead of %d\n", lstrlenW(wszSpn1) + 1, spn_length);
61
62 spn_length = ARRAY_SIZE(spn);
63 ret = DsMakeSpnW(wszServiceClass, wszServiceHost, wszInstanceName, 0, NULL, &spn_length, spn);
64 ok(ret == ERROR_SUCCESS, "DsMakeSpnW should have succeeded instead of failing with %d\n", ret);
65 ok(!lstrcmpW(spn, wszSpn2), "DsMakeSpnW returned unexpected SPN %s\n", wine_dbgstr_w(spn));
66 ok(spn_length == lstrlenW(wszSpn2) + 1, "DsMakeSpnW should have returned spn_length of %d instead of %d\n", lstrlenW(wszSpn2) + 1, spn_length);
67
68 spn_length = ARRAY_SIZE(spn);
69 ret = DsMakeSpnW(wszServiceClass, wszServiceHost, wszInstanceName, 555, NULL, &spn_length, spn);
70 ok(ret == ERROR_SUCCESS, "DsMakeSpnW should have succeeded instead of failing with %d\n", ret);
71 ok(!lstrcmpW(spn, wszSpn3), "DsMakeSpnW returned unexpected SPN %s\n", wine_dbgstr_w(spn));
72 ok(spn_length == lstrlenW(wszSpn3) + 1, "DsMakeSpnW should have returned spn_length of %d instead of %d\n", lstrlenW(wszSpn3) + 1, spn_length);
73
74 spn_length = ARRAY_SIZE(spn);
75 ret = DsMakeSpnW(wszServiceClass, wszServiceHost, wszInstanceName, 555, wszReferrer, &spn_length, spn);
76 ok(ret == ERROR_SUCCESS, "DsMakeSpnW should have succeeded instead of failing with %d\n", ret);
77 ok(!lstrcmpW(spn, wszSpn4), "DsMakeSpnW returned unexpected SPN %s\n", wine_dbgstr_w(spn));
78 ok(spn_length == lstrlenW(wszSpn4) + 1, "DsMakeSpnW should have returned spn_length of %d instead of %d\n", lstrlenW(wszSpn4) + 1, spn_length);
79
80 spn_length = ARRAY_SIZE(spn);
81 ret = DsMakeSpnW(wszServiceClass, wszServiceHost, NULL, 555, wszReferrer, &spn_length, spn);
82 ok(ret == ERROR_SUCCESS, "DsMakeSpnW should have succeeded instead of failing with %d\n", ret);
83 ok(!lstrcmpW(spn, wszSpn5), "DsMakeSpnW returned unexpected SPN %s\n", wine_dbgstr_w(spn));
84 ok(spn_length == lstrlenW(wszSpn5) + 1, "DsMakeSpnW should have returned spn_length of %d instead of %d\n", lstrlenW(wszSpn5) + 1, spn_length);
85}
DWORD WINAPI DsMakeSpnW(LPCWSTR svc_class, LPCWSTR svc_name, LPCWSTR inst_name, USHORT inst_port, LPCWSTR ref, DWORD *spn_length, LPWSTR spn)
Definition: ntdsapi.c:70
#define wine_dbgstr_w
Definition: kernel32.h:34

Referenced by START_TEST().