summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/locale_info/GetStringTypeExW/test2/test2.cpp
blob: 6dca7e8ac55a5ba70a7b9d5fd714e0d8842cac3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*============================================================================
**
** Source: test2.c
**
** Purpose: Tests GetStringTypeExW with values from every possible unicode 
**          category.
**
**
**==========================================================================*/

#include <palsuite.h>


/*
 * A random selection of unicode characters, each representing a distinct 
 * unicode category
 */
WCHAR TestStr[] = 
{
    0x05D0, /* 4, HEBREW LETTER ALEF */
    0x0488, /* 7, COMBINING CYRILLIC HUNDRED THOUSANDS SIGN */
    0x0030, /* 8, DIGIT ZERO */
    0x0020, /* 22, SPACE */     
};

#define TEST_LEN (sizeof(TestStr) / sizeof(WCHAR))

WORD TestFlags[TEST_LEN] =
{
    C1_ALPHA,
    0,
    C1_DIGIT,
    C1_BLANK|C1_SPACE
};

int __cdecl main(int argc, char *argv[])
{
    WORD Info;
    BOOL ret;
    int i;

    /* check only the bits listed in rotor_pal.doc */
    const WORD PAL_VALID_C1_BITS = C1_DIGIT | C1_SPACE;

    if (PAL_Initialize(argc, argv))
    {
        return FAIL;
    }

    for (i=0; i <TEST_LEN; i++)
    {
        ret = GetStringTypeExW(LOCALE_USER_DEFAULT, CT_CTYPE1, &TestStr[i], 1, &Info);

        if (!ret)
        {
            Fail("GetStringTypeExW failed!\n");
        }

        if ((Info & PAL_VALID_C1_BITS) != (TestFlags[i] & PAL_VALID_C1_BITS))
        {
            
            Fail("GetStringTypeExW (test #%i) returned wrong type info for %c (%d)\n"
                "Expected %#x, got %#x\n", i, TestStr[i], TestStr[i], 
                TestFlags[i], Info);
            
        }
    }

    PAL_Terminate();

    return PASS;
}