Declaration, implemention and test for BuildTrusteeWithSid.
[wine] / dlls / advapi32 / tests / security.c
1 /*
2  * Unit tests for security functions
3  *
4  * Copyright (c) 2004 Mike McCormack
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <stdio.h>
22
23 #include "wine/test.h"
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winerror.h"
27 #include "aclapi.h"
28
29 typedef BOOL (WINAPI *fnConvertSidToStringSidA)( PSID pSid, LPSTR *str );
30 typedef BOOL (WINAPI *fnConvertSidToStringSidW)( PSID pSid, LPWSTR *str );
31
32 fnConvertSidToStringSidW pConvertSidToStringSidW;
33 fnConvertSidToStringSidA pConvertSidToStringSidA;
34
35 void test_sid()
36 {
37     PSID psid;
38     LPWSTR str = NULL;
39     BOOL r;
40     SID_IDENTIFIER_AUTHORITY auth = { {6,7,0x1a,0x15,0x0e,0x1f} };
41     WCHAR refstr[] = { 'S','-','1','-','1','A','1','5','6','E','7','F','-',
42         '1','2','3','4','5','-','0','-','4','2','9','4','9','6','7','2','9','5',0 };
43
44     HMODULE hmod = GetModuleHandle("advapi32.dll");
45
46     pConvertSidToStringSidW = (fnConvertSidToStringSidW)
47                     GetProcAddress( hmod, "ConvertSidToStringSidW" );
48     if( !pConvertSidToStringSidW )
49         return;
50     
51     r = AllocateAndInitializeSid( &auth, 3, 12345, 0,-1,0,0,0,0,0,&psid);
52     ok( r, "failed to allocate sid\n" );
53     r = pConvertSidToStringSidW( psid, &str );
54     ok( r, "failed to convert sid\n" );
55     ok( !lstrcmpW( str, refstr ), "incorrect sid\n" );
56     LocalFree( str );
57     FreeSid( psid );
58 }
59
60 void test_trustee()
61 {
62     TRUSTEE trustee;
63     PSID psid;
64     DWORD r;
65
66     SID_IDENTIFIER_AUTHORITY auth = { {0x11,0x22,0,0,0, 0} };
67
68     r = AllocateAndInitializeSid( &auth, 1, 42, 0,0,0,0,0,0,0,&psid );
69     ok( r, "failed to init SID\n" );
70
71     memset( &trustee, 0xff, sizeof trustee );
72     BuildTrusteeWithSidA( &trustee, psid );
73
74     ok( trustee.pMultipleTrustee == NULL, "pMultipleTrustee wrong\n");
75     ok( trustee.MultipleTrusteeOperation == NO_MULTIPLE_TRUSTEE, 
76         "MultipleTrusteeOperation wrong\n");
77     ok( trustee.TrusteeForm == TRUSTEE_IS_SID, "TrusteeForm wrong\n");
78     ok( trustee.TrusteeType == TRUSTEE_IS_UNKNOWN, "TrusteeType wrong\n");
79     ok( trustee.ptstrName == (LPSTR) psid, "ptstrName wrong\n" );
80     FreeSid( psid );
81 }
82
83 START_TEST(security)
84 {
85     test_sid();
86     test_trustee();
87 }