Use strlen or lstrlenA as appropriate to avoid signed/unsigned
[wine] / dlls / kernel / tests / atom.c
1 /*
2  * Unit tests for atom functions
3  *
4  * Copyright (c) 2002 Alexandre Julliard
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 "winbase.h"
25 #include "winerror.h"
26
27 static const WCHAR foobarW[] = {'f','o','o','b','a','r',0};
28 static const WCHAR FOOBARW[] = {'F','O','O','B','A','R',0};
29 static const WCHAR _foobarW[] = {'_','f','o','o','b','a','r',0};
30
31 static BOOL unicode_OS;
32
33 static void test_add_atom(void)
34 {
35     ATOM atom, w_atom;
36     int i;
37
38     SetLastError( 0xdeadbeef );
39     atom = GlobalAddAtomA( "foobar" );
40     ok( (atom >= 0xc000) && (atom <= 0xffff), "bad atom id %x", atom );
41     ok( GetLastError() == 0xdeadbeef, "GlobalAddAtomA set last error" );
42
43     /* Verify that it can be found (or not) appropriately */
44     ok( GlobalFindAtomA( "foobar" ) == atom, "could not find atom foobar" );
45     ok( GlobalFindAtomA( "FOOBAR" ) == atom, "could not find atom FOOBAR" );
46     ok( !GlobalFindAtomA( "_foobar" ), "found _foobar" );
47
48     /* Add the same atom, specifying string as unicode; should
49      * find the first one, not add a new one */
50     SetLastError( 0xdeadbeef );
51     w_atom = GlobalAddAtomW( foobarW );
52     if (w_atom && GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
53         unicode_OS = TRUE;
54     else
55         trace("WARNING: Unicode atom APIs are not supported on this platform\n");
56
57     if (unicode_OS)
58     {
59         ok( w_atom == atom, "Unicode atom does not match ASCII" );
60         ok( GetLastError() == 0xdeadbeef, "GlobalAddAtomW set last error" );
61     }
62
63     /* Verify that it can be found (or not) appropriately via unicode name */
64     if (unicode_OS)
65     {
66         ok( GlobalFindAtomW( foobarW ) == atom, "could not find atom foobar" );
67         ok( GlobalFindAtomW( FOOBARW ) == atom, "could not find atom FOOBAR" );
68         ok( !GlobalFindAtomW( _foobarW ), "found _foobar" );
69     }
70
71     /* Test integer atoms
72      * (0x0001 .. 0xbfff) should be valid;
73      * (0xc000 .. 0xffff) should be invalid */
74
75     SetLastError( 0xdeadbeef );
76     ok( GlobalAddAtomA(0) == 0 && GetLastError() == 0xdeadbeef, "succeeded to add atom 0" );
77     if (unicode_OS)
78     {
79         SetLastError( 0xdeadbeef );
80         ok( GlobalAddAtomW(0) == 0 && GetLastError() == 0xdeadbeef, "succeeded to add atom 0" );
81     }
82
83     SetLastError( 0xdeadbeef );
84     for (i = 1; i <= 0xbfff; i++)
85     {
86         SetLastError( 0xdeadbeef );
87         ok( GlobalAddAtomA((LPCSTR)i) == i && GetLastError() == 0xdeadbeef,
88             "failed to add atom %x", i );
89         if (unicode_OS)
90         {
91             SetLastError( 0xdeadbeef );
92             ok( GlobalAddAtomW((LPCWSTR)i) == i && GetLastError() == 0xdeadbeef,
93                 "failed to add atom %x", i );
94         }
95     }
96
97     for (i = 0xc000; i <= 0xffff; i++)
98     {
99         ok( !GlobalAddAtomA((LPCSTR)i), "succeeded adding %x", i );
100         if (unicode_OS)
101             ok( !GlobalAddAtomW((LPCWSTR)i), "succeeded adding %x", i );
102     }
103 }
104
105 static void test_get_atom_name(void)
106 {
107     char buf[10];
108     WCHAR bufW[10];
109     int i;
110     UINT len;
111     static const WCHAR resultW[] = {'f','o','o','b','a','r',0,'.','.','.'};
112
113     ATOM atom = GlobalAddAtomA( "foobar" );
114
115     /* Get the name of the atom we added above */
116     memset( buf, '.', sizeof(buf) );
117     len = GlobalGetAtomNameA( atom, buf, 10 );
118     ok( len == strlen("foobar"), "bad length %d", len );
119     ok( !memcmp( buf, "foobar\0...", 10 ), "bad buffer contents" );
120
121     /* Repeat, unicode-style */
122     if (unicode_OS)
123     {
124         for (i = 0; i < 10; i++) bufW[i] = '.';
125         SetLastError( 0xdeadbeef );
126         len = GlobalGetAtomNameW( atom, bufW, 10 );
127         ok( len && GetLastError() == 0xdeadbeef, "GlobalGetAtomNameW failed" );
128         ok( len == lstrlenW(foobarW), "bad length %d", len );
129         ok( !memcmp( bufW, resultW, 10*sizeof(WCHAR) ), "bad buffer contents" );
130     }
131
132     /* Check error code returns */
133     memset(buf, '.', 10);
134     ok( !GlobalGetAtomNameA( atom, buf,  0 ), "succeeded" );
135     ok( !memcmp( buf, "..........", 10 ), "should not touch buffer" );
136
137     if (unicode_OS)
138     {
139         static const WCHAR sampleW[10] = {'.','.','.','.','.','.','.','.','.','.'};
140
141         for (i = 0; i < 10; i++) bufW[i] = '.';
142         ok( !GlobalGetAtomNameW( atom, bufW, 0 ), "succeeded" );
143         ok( !memcmp( bufW, sampleW, 10 * sizeof(WCHAR) ), "should not touch buffer" );
144     }
145
146     /* Test integer atoms */
147     for (i = 0; i <= 0xbfff; i++)
148     {
149         memset( buf, 'a', 10 );
150         len = GlobalGetAtomNameA( (ATOM)i, buf, 10 );
151         if (i)
152         {
153             char res[20];
154             ok( (len > 1) && (len < 7), "bad length %d", len );
155             sprintf( res, "#%d", i );
156             memset( res + strlen(res) + 1, 'a', 10 );
157             ok( !memcmp( res, buf, 10 ), "bad buffer contents %s", buf );
158         }
159         else
160             ok( !len, "bad length %d", len );
161     }
162 }
163
164 static void test_error_handling(void)
165 {
166     char buffer[260];
167     WCHAR bufferW[260];
168     int i;
169
170     memset( buffer, 'a', 256 );
171     buffer[256] = 0;
172     ok( !GlobalAddAtomA(buffer), "add succeeded" );
173     ok( !GlobalFindAtomA(buffer), "find succeeded" );
174
175     if (unicode_OS)
176     {
177         for (i = 0; i < 256; i++) bufferW[i] = 'b';
178         bufferW[256] = 0;
179         ok( !GlobalAddAtomW(bufferW), "add succeeded" );
180         ok( !GlobalFindAtomW(bufferW), "find succeeded" );
181     }
182 }
183
184 START_TEST(atom)
185 {
186     test_add_atom();
187     test_get_atom_name();
188     test_error_handling();
189 }