gdi32: Reimplement Ellipse in paths to avoid calling imprecise arc helper functions.
[wine.git] / dlls / ntdsapi / tests / ntdsapi.c
blob3d95d1bd0e10b2c81d3006156717c2f6db20f925
1 /*
2 * Copyright (C) 2008 Robert Shearman (for CodeWeavers)
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
21 #include "windef.h"
22 #include "winbase.h"
23 #include "winerror.h"
24 #include "winnls.h"
25 #include "rpc.h"
26 #include "rpcdce.h"
27 #include "ntdsapi.h"
29 #include "wine/test.h"
31 static void test_DsMakeSpn(void)
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};
46 spn[0] = '\0';
48 spn_length = sizeof(spn)/sizeof(spn[0]);
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);
52 spn_length = sizeof(spn)/sizeof(spn[0]);
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);
56 spn_length = sizeof(spn)/sizeof(spn[0]);
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);
62 spn_length = sizeof(spn)/sizeof(spn[0]);
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);
68 spn_length = sizeof(spn)/sizeof(spn[0]);
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);
74 spn_length = sizeof(spn)/sizeof(spn[0]);
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);
80 spn_length = sizeof(spn)/sizeof(spn[0]);
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);
87 static void test_DsClientMakeSpnForTargetServer(void)
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];
95 ret = DsClientMakeSpnForTargetServerW( NULL, NULL, NULL, NULL );
96 ok( ret == ERROR_INVALID_PARAMETER, "got %u\n", ret );
98 ret = DsClientMakeSpnForTargetServerW( classW, NULL, NULL, NULL );
99 ok( ret == ERROR_INVALID_PARAMETER, "got %u\n", ret );
101 ret = DsClientMakeSpnForTargetServerW( classW, hostW, NULL, NULL );
102 ok( ret == ERROR_INVALID_PARAMETER, "got %u\n", ret );
104 len = 0;
105 ret = DsClientMakeSpnForTargetServerW( classW, hostW, &len, NULL );
106 ok( ret == ERROR_BUFFER_OVERFLOW, "got %u\n", ret );
107 ok( len == lstrlenW(resultW) + 1, "got %u\n", len );
109 len = sizeof(buf)/sizeof(buf[0]);
110 buf[0] = 0;
111 ret = DsClientMakeSpnForTargetServerW( classW, hostW, &len, buf );
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" );
117 START_TEST( ntdsapi )
119 test_DsMakeSpn();
120 test_DsClientMakeSpnForTargetServer();