summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/filemapping_memmgt/LockFile/test2/test2.c
blob: 8aef130ef432a4de700c335ba9b0b64e7fae6e0e (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
// 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: Open a file, and lock it from start to EOF.  Check to ensure
** the current process can still read and write from/to the file.
**
**
**============================================================*/

#include <palsuite.h>
#include "../LockFile.h"

#define FILENAME "testfile.txt"

int __cdecl main(int argc, char *argv[])
{
    
    HANDLE TheFile = NULL;
    DWORD FileStart = 0;
    DWORD FileEnd = 0;
    DWORD BytesWritten = 0;
    DWORD BytesRead = 0;
    char WriteBuffer[] = "This is some test data.";
    char DataBuffer[128];

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

    /* Call the helper function to Create a file, write 'WriteBuffer' to
       the file, and lock the file.
    */

    FileEnd = strlen(WriteBuffer);
    TheFile = CreateAndLockFile(TheFile, FILENAME, WriteBuffer, 
                                FileStart, FileEnd);
       
    /* Move the file pointer to the start of the file */
    if(SetFilePointer(TheFile, 0, NULL, FILE_BEGIN) != 0)
    {
        Fail("ERROR: SetFilePointer failed to move the file pointer back "
             "to the start of the file.");
    }
    
    /* Attempt to Read 5 bytes from this file.  Since the lock does not
       affect the calling process, this should succeed.
    */
    
    if(ReadFile(TheFile, DataBuffer, 5, &BytesRead, NULL) == 0)
    {
        Fail("ERROR: ReadFile has failed.  Attempted to read in 5 bytes from "
             "the file '%s' after it had LockFile called upon it, but within "
             "the same process.",FILENAME);
    }

    if(strncmp(DataBuffer, WriteBuffer, 5) != 0)
    {
        Fail("ERROR: The data read in from ReadFile is not what should have "
             "been written in the file. '%s' ",DataBuffer);
    }

    /* Attempt to Write 5 bytes to this file.  Since the lock does not affect
       the calling process, this should succeed.
    */

    memset(WriteBuffer, 'X', strlen(WriteBuffer));

    if(WriteFile(TheFile, WriteBuffer, 5,&BytesWritten, NULL) == 0)
    {
        Fail("ERROR: WriteFile has failed.  Attempted to write 5 bytes to "
             "the file '%s' after it had LockFile called upon it, but within "
             "the same process.",FILENAME);
    }

    if(UnlockFile(TheFile, FileStart, 0, FileEnd, 0) == 0)
    {
        Fail("ERROR: UnlockFile failed.  GetLastError returns %d.",
             GetLastError());
    }
    
    if(CloseHandle(TheFile) == 0)
    {
        Fail("ERROR: CloseHandle failed to close the file.");
    }
  
    PAL_Terminate();
    return PASS;
}