summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/locale_info/MultiByteToWideChar/test2/test2.cpp
blob: 1370dba89430359a0f008cd61269731bdbca59c1 (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
// 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 that MultiByteToWideChar respects the length of the wide 
**          character string.

**
**==========================================================================*/

#include <palsuite.h>

/*
 * For now, it is assumed that MultiByteToWideChar will only be used in the PAL
 * with CP_ACP, and that dwFlags will be 0.
 */

int __cdecl main(int argc, char *argv[])
{    
    char mbStr[128];
    WCHAR wideStr[128];
    int ret;
    int i;

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

    for (i=0; i<128; i++)
    {
        mbStr[i] = 'a';
        wideStr[i] = 0;
    }

    mbStr[127] = 0;


    ret = MultiByteToWideChar(CP_ACP, 0, mbStr, 10, wideStr, 0);
    if (ret != 10)
    {
        Fail("MultiByteToWideChar did not return correct string length!\n"
            "Got %d, expected %d\n", ret, 10);
    }

    wideStr[10] = (WCHAR) 'b';

    ret = MultiByteToWideChar(CP_ACP, 0, mbStr, 10, wideStr, 128);
    if (ret != 10)
    {
        Fail("MultiByteToWideChar did not return correct string length!\n"
            "Got %d, expected %d\n", ret, 10);
    }

    if (wideStr[10] != 'b')
    {
        Fail("WideCharToMultiByte overflowed the destination buffer!\n");
    }

    PAL_Terminate();

    return PASS;
}