summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/test.c
blob: 1ae0c514749f0b00c6d50129a2285ceb2b2635f3 (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
// 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: test.c
**
** Purpose: Test for lstrcpynW() function
**
**
**=========================================================*/

#define UNICODE

#include <palsuite.h>

int __cdecl main(int argc, char *argv[]) {

    WCHAR FirstString[5] = {'T','E','S','T','\0'};
    WCHAR CorrectBuffer[3] = {'T','E','\0'};
    WCHAR ResultBuffer[5];
    WCHAR* ResultPointer = NULL;

    /*
     * Initialize the PAL and return FAILURE if this fails
     */

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

    /* A straight copy, the values should be equal. */
    ResultPointer = lstrcpyn(ResultBuffer,FirstString,3);
  
    /* Make sure the returned pointer is to the result buffer */
    if(ResultPointer != &ResultBuffer[0]) 
    {
        Fail("ERROR: The function didn't return a pointer which points to the "
             "location of the buffer which was copied into.\n");
    }

    /* Check to see that values are equal */
    if(memcmp(ResultBuffer,
              CorrectBuffer,
              wcslen(ResultBuffer)*sizeof(WCHAR)) != 0) 
    {
        Fail("ERROR: '%s' was the result and it should have been '%s' when "
             "this copy was performed.\n",
             convertC(ResultBuffer),convertC(CorrectBuffer));
    }

    /* Null values should get Null results */
    if(lstrcpyn(ResultBuffer,NULL,3) != NULL) 
    {
        Fail("ERROR: When the second parameter was set to NULL, the return "
             "value should have been NULL, but it was not.\n");
    }

    if(lstrcpyn(NULL,FirstString,3) != NULL) 
    {
        Fail("ERROR: When the first parameter was set to NULL, the return "
             "value should have been NULL, but it was not.\n");    
    }
  
  
    PAL_Terminate();
    return PASS;
}