summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/file_io/SetFileTime/test4/SetFileTime.c
blob: 3edd2403c49e49f82487efd17fdc32b76d77a17a (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
108
// 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:  SetFileTime.c
**
** Purpose: Tests the PAL implementation of the SetFileTime function
** This passes a variety of NULL values as parameters to the function.
** It should still succeed.
**
** Depends:
**         CreateFile
**         

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

#include <palsuite.h>



int __cdecl main(int argc, char **argv)
{
#if WIN32
    FILETIME Creation;
#endif
    FILETIME LastWrite,LastAccess;
    HANDLE TheFileHandle;

    
    if (0 != PAL_Initialize(argc,argv))
    {
        return FAIL;
    }
    
    /* Populate some FILETIME structures with values 
       These values are valid Creation, Access and Write times
       which I generated, and should work properly.

       These values aren't being used for comparison, so they should
       work ok, even though they weren't generated specifically for 
       FreeBSD or WIN32 ...
    */
#if WIN32
    Creation.dwLowDateTime = 458108416;
    Creation.dwHighDateTime = 29436904;
#endif
    LastAccess.dwLowDateTime = 341368832;
    LastAccess.dwHighDateTime = 29436808;

    LastWrite.dwLowDateTime = -1995099136;
    LastWrite.dwHighDateTime = 29436915;
    
    /* Open the file to get a HANDLE */
    TheFileHandle = 
        CreateFile(
            "the_file",                 
            GENERIC_READ|GENERIC_WRITE,  
            0,                           
            NULL,                        
            OPEN_ALWAYS,                 
            FILE_ATTRIBUTE_NORMAL,       
            NULL);                       

        
    if(TheFileHandle == INVALID_HANDLE_VALUE) 
    {
        Fail("ERROR: Failed to open the file.  The error number "
               "returned was %d.",GetLastError());
    }
    
    /* Pass all NULLs, this is useless but should still work. */
    if(SetFileTime(TheFileHandle,NULL,NULL,NULL)==0)
    {
        Fail("ERROR: SetFileTime returned 0, indicating failure. "
               "Three of the params were NULL in this case, did they "
               "cause the problem?");
    }
    
#if WIN32
    /* Set the Creation time of the File */
    if(SetFileTime(TheFileHandle,&Creation,NULL,NULL)==0)
    {
        Fail("ERROR: SetFileTime returned 0, indicating failure. "
               "Two of the params were NULL in this case, did they "
               "cause the problem?");
    }
#endif

#if WIN32
    /* Set the Creation, LastWrite time of the File */
    if(SetFileTime(TheFileHandle,&Creation,&LastWrite,NULL)==0)
#else
    /* Set the LastWrite time of the File */
    if(SetFileTime(TheFileHandle,NULL,&LastWrite,NULL)==0)
#endif
    {
        Fail("ERROR: SetFileTime returned 0, indicating failure. "
               "One of the params were NULL in this case, did it "
               "cause the problem?");
    }
  

    PAL_Terminate();
    return PASS;
}