summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/file_io/FindNextFileA/test2/findnextfilea.c
blob: c841a4d498e27cb8fb52d50061c07502bafa5e54 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
// 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:  findnextfilea.c
**
** Purpose: Tests the PAL implementation of the FindNextFileA function.
**          Tests '*' and '*.*' to ensure that '.' and '..' are
**          returned in the expected order
**
**
**===================================================================*/

#include <palsuite.h>
                                                                   

const char* szDot =         ".";
const char* szDotDot =      "..";
const char* szStar =        "*";
const char* szStarDotStar = "*.*";


static void DoTest(const char* szDir, 
                   const char* szResult1, 
                   const char* szResult2)
{
    HANDLE hFind;
    WIN32_FIND_DATA findFileData;

    /*
    ** find the first
    */
    if ((hFind = FindFirstFileA(szDir, &findFileData)) == INVALID_HANDLE_VALUE)
    {
        Fail("FindNextFileA: ERROR -> FindFirstFileA(\"%s\") failed. "
            "GetLastError returned %u.\n", 
            szStar,
            GetLastError());
    }

    /* did we find the expected */
    if (strcmp(szResult1, findFileData.cFileName) != 0)
    {
        if (!FindClose(hFind))
        {
            Trace("FindNextFileA: ERROR -> Failed to close the find handle. "
                "GetLastError returned %u.\n",
                GetLastError());
        }
        Fail("FindNextFileA: ERROR -> FindFirstFile(\"%s\") didn't find"
            " the expected \"%s\" but found \"%s\" instead.\n",
            szDir,
            szResult1,
            findFileData.cFileName);
    }

    /* we found the first expected, let's see if we find the next expected*/
    if (!FindNextFileA(hFind, &findFileData))
    {
        Trace("FindNextFileA: ERROR -> FindNextFileA should have found \"%s\"" 
            " but failed. GetLastError returned %u.\n",
            szResult2,
            GetLastError());
        if (!FindClose(hFind))
        {
            Trace("FindNextFileA: ERROR -> Failed to close the find handle. "
                "GetLastError returned %u.\n",
                GetLastError());
        }
        Fail("");
    }

    /* we found something, but was it '.' */
    if (strcmp(szResult2, findFileData.cFileName) != 0)
    {
        if (!FindClose(hFind))
        {
            Trace("FindNextFileA: ERROR -> Failed to close the find handle. "
                "GetLastError returned %u.\n",
                GetLastError());
        }
        Fail("FindNextFileA: ERROR -> FindNextFileA based on \"%s\" didn't find"
            " the expected \"%s\" but found \"%s\" instead.\n",
            szDir,
            szResult2,
            findFileData.cFileName);
    }
}

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

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

    DoTest(szStar, szDot, szDotDot);
    DoTest(szStarDotStar, szDot, szDotDot);


    PAL_Terminate();  

    return PASS;
}