summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/file_io/ReadFile/test1
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/file_io/ReadFile/test1')
-rw-r--r--src/pal/tests/palsuite/file_io/ReadFile/test1/CMakeLists.txt19
-rw-r--r--src/pal/tests/palsuite/file_io/ReadFile/test1/NonReadableFile.txt1
-rw-r--r--src/pal/tests/palsuite/file_io/ReadFile/test1/ReadFile.c82
-rw-r--r--src/pal/tests/palsuite/file_io/ReadFile/test1/testinfo.dat13
4 files changed, 115 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/file_io/ReadFile/test1/CMakeLists.txt b/src/pal/tests/palsuite/file_io/ReadFile/test1/CMakeLists.txt
new file mode 100644
index 0000000000..7b166e17b0
--- /dev/null
+++ b/src/pal/tests/palsuite/file_io/ReadFile/test1/CMakeLists.txt
@@ -0,0 +1,19 @@
+cmake_minimum_required(VERSION 2.8.12.2)
+
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+
+set(SOURCES
+ ReadFile.c
+)
+
+add_executable(paltest_readfile_test1
+ ${SOURCES}
+)
+
+add_dependencies(paltest_readfile_test1 coreclrpal)
+
+target_link_libraries(paltest_readfile_test1
+ pthread
+ m
+ coreclrpal
+)
diff --git a/src/pal/tests/palsuite/file_io/ReadFile/test1/NonReadableFile.txt b/src/pal/tests/palsuite/file_io/ReadFile/test1/NonReadableFile.txt
new file mode 100644
index 0000000000..a8a940627d
--- /dev/null
+++ b/src/pal/tests/palsuite/file_io/ReadFile/test1/NonReadableFile.txt
@@ -0,0 +1 @@
+this is a test \ No newline at end of file
diff --git a/src/pal/tests/palsuite/file_io/ReadFile/test1/ReadFile.c b/src/pal/tests/palsuite/file_io/ReadFile/test1/ReadFile.c
new file mode 100644
index 0000000000..a59e29212e
--- /dev/null
+++ b/src/pal/tests/palsuite/file_io/ReadFile/test1/ReadFile.c
@@ -0,0 +1,82 @@
+// 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: ReadFile.c (test 1)
+**
+** Purpose: Tests the PAL implementation of the ReadFile function.
+** This test will attempt to read from a NULL handle and from
+** a file without read permissions set.
+**
+**
+**===================================================================*/
+
+#include <palsuite.h>
+
+
+int __cdecl main(int argc, char *argv[])
+{
+ HANDLE hFile = NULL;
+ DWORD dwByteCount = 0;
+ DWORD dwBytesRead = 0;
+ BOOL bRc = FALSE;
+ char szBuffer[256];
+ char* szNonReadableFile = {"nonreadablefile.txt"};
+
+ if (0 != PAL_Initialize(argc,argv))
+ {
+ return FAIL;
+ }
+
+ memset(szBuffer, 0, 256);
+
+ /* Read from a NULL handle
+ */
+
+ bRc = ReadFile(hFile, szBuffer, 20, &dwBytesRead, NULL);
+
+ if (bRc == TRUE)
+ {
+ Fail("ReadFile: ERROR -> Able to read from a NULL handle\n");
+ }
+
+
+ /* Read from a file without read permissions
+ */
+
+#if WIN32
+
+#else
+ /* attempt to read from the unreadable file
+ * open a file without read permissions
+ */
+ hFile = CreateFile(szNonReadableFile,
+ GENERIC_WRITE,
+ FILE_SHARE_WRITE,
+ NULL,
+ OPEN_EXISTING,
+ FILE_ATTRIBUTE_NORMAL,
+ NULL);
+
+ if(hFile == INVALID_HANDLE_VALUE)
+ {
+ dwByteCount = GetLastError();
+ Fail("ReadFile: ERROR -> Unable to create file \"%s\".\n",
+ szNonReadableFile);
+ }
+
+ bRc = ReadFile(hFile, szBuffer, 20, &dwBytesRead, NULL);
+
+ if (bRc == TRUE)
+ {
+ Fail("ReadFile: ERROR -> Able to read from a file without read "
+ "permissions\n");
+ }
+#endif
+
+
+ PAL_Terminate();
+ return PASS;
+}
diff --git a/src/pal/tests/palsuite/file_io/ReadFile/test1/testinfo.dat b/src/pal/tests/palsuite/file_io/ReadFile/test1/testinfo.dat
new file mode 100644
index 0000000000..b0df11a3ab
--- /dev/null
+++ b/src/pal/tests/palsuite/file_io/ReadFile/test1/testinfo.dat
@@ -0,0 +1,13 @@
+# 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.
+
+Version = 1.0
+Section = file_io
+Function = ReadFile
+Name = Positive Test for ReadFile
+Type = DEFAULT
+EXE1 = readfile
+Description
+=Attempt to read from a NULL handle and a file without read permissions
+