summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW')
-rw-r--r--src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/CMakeLists.txt5
-rw-r--r--src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/CMakeLists.txt19
-rw-r--r--src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/GetCalendarInfoW.c57
-rw-r--r--src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/testinfo.dat14
-rw-r--r--src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/CMakeLists.txt19
-rw-r--r--src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c79
-rw-r--r--src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/testinfo.dat11
7 files changed, 204 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/CMakeLists.txt b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/CMakeLists.txt
new file mode 100644
index 0000000000..ef14ea5352
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/CMakeLists.txt
@@ -0,0 +1,5 @@
+cmake_minimum_required(VERSION 2.8.12.2)
+
+add_subdirectory(test1)
+add_subdirectory(test2)
+
diff --git a/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/CMakeLists.txt b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/CMakeLists.txt
new file mode 100644
index 0000000000..e3acf4061a
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/CMakeLists.txt
@@ -0,0 +1,19 @@
+cmake_minimum_required(VERSION 2.8.12.2)
+
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+
+set(SOURCES
+ GetCalendarInfoW.c
+)
+
+add_executable(paltest_getcalendarinfow_test1
+ ${SOURCES}
+)
+
+add_dependencies(paltest_getcalendarinfow_test1 coreclrpal)
+
+target_link_libraries(paltest_getcalendarinfow_test1
+ pthread
+ m
+ coreclrpal
+)
diff --git a/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/GetCalendarInfoW.c b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/GetCalendarInfoW.c
new file mode 100644
index 0000000000..4876fe180f
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/GetCalendarInfoW.c
@@ -0,0 +1,57 @@
+// 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: GetCalendarInfoW.c
+**
+** Purpose: Positive test the GetCalendarInfoW API.
+** Call GetCalendarInfoW to retrieve the information of a
+** calendar
+**
+**
+**============================================================*/
+#define UNICODE
+#include <palsuite.h>
+
+int __cdecl main(int argc, char *argv[])
+{
+ int err;
+ LCID Locale = LOCALE_USER_DEFAULT;
+ CALTYPE CalType = CAL_ITWODIGITYEARMAX|CAL_RETURN_NUMBER;
+ DWORD dwValue;
+
+ /*Initialize the PAL environment*/
+ err = PAL_Initialize(argc, argv);
+ if(0 != err)
+ {
+ return FAIL;
+ }
+
+ err = GetCalendarInfoW(Locale,/*locale idendifier*/
+ CAL_GREGORIAN, /*calendar identifier*/
+ CalType, /*calendar tyope*/
+ NULL, /*buffer to store the retrieve info*/
+ 0, /*alwayse zero*/
+ &dwValue);/*to store the requrest data*/
+ if (0 == err)
+ {
+ Fail("GetCalendarInfoW failed for CAL_GREGORIAN!\n");
+ }
+
+ err = GetCalendarInfoW(Locale,/*locale idendifier*/
+ CAL_GREGORIAN_US, /*calendar identifier*/
+ CalType, /*calendar tyope*/
+ NULL, /*buffer to store the retreive info*/
+ 0, /*alwayse zero*/
+ &dwValue);/*to store the requrest data*/
+ if (0 == err)
+ {
+ Fail("GetCalendarInfoW failed for CAL_GREGORIAN_US!\n");
+ }
+
+
+ PAL_Terminate();
+ return PASS;
+}
diff --git a/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/testinfo.dat b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/testinfo.dat
new file mode 100644
index 0000000000..59c806c22a
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test1/testinfo.dat
@@ -0,0 +1,14 @@
+# 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 = miscellaneous
+Function = GetCalendarInfoW
+Name = Positive test for GetCalendarInfoW API to retrieve the info of a calendar
+TYPE = DEFAULT
+EXE1 = getcalendarinfow
+Description
+= Test the GetCalendarInfoW to retrieve the information of a calendar
+= This test for US English
+
diff --git a/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/CMakeLists.txt b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/CMakeLists.txt
new file mode 100644
index 0000000000..cbfd1aa5db
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/CMakeLists.txt
@@ -0,0 +1,19 @@
+cmake_minimum_required(VERSION 2.8.12.2)
+
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+
+set(SOURCES
+ GetCalendarInfoW.c
+)
+
+add_executable(paltest_getcalendarinfow_test2
+ ${SOURCES}
+)
+
+add_dependencies(paltest_getcalendarinfow_test2 coreclrpal)
+
+target_link_libraries(paltest_getcalendarinfow_test2
+ pthread
+ m
+ coreclrpal
+)
diff --git a/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c
new file mode 100644
index 0000000000..d8a59a0fc0
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c
@@ -0,0 +1,79 @@
+// 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: GetCalendarInfoW.c
+**
+** Purpose: Positive test the GetCalendarInfoW API.
+** Call GetCalendarInfoW to retrieve the information of all
+** calendars
+**
+**
+**============================================================*/
+#define UNICODE
+#include <palsuite.h>
+
+int __cdecl main(int argc, char *argv[])
+{
+ int err;
+ int index = 0;
+ LCID Locale = LOCALE_USER_DEFAULT;
+ CALID Calendar;
+ CALTYPE CalType = CAL_ITWODIGITYEARMAX|CAL_RETURN_NUMBER;
+ DWORD dwValue;
+ char *CalendarID[]={"CAL_GREGORIAN",
+ "CAL_GREGORIAN_US",
+ "CAL_JAPAN",
+ "CAL_TAIWAN",
+ "CAL_KOREA",
+ "CAL_HIJRI",
+ "CAL_THAI",
+ "CAL_HEBREW",
+ "CAL_GREGORIAN_ME_FRENCH",
+ "CAL_GREGORIAN_ARABIC",
+ "CAL_GREGORIAN_XLIT_ENGLISH",
+ "CAL_GREGORIAN_XLIT_FRENCH",
+ "CAL_JULIAN"};
+
+ char errBuffer[1024];
+
+
+ /*Initialize the PAL environment*/
+ err = PAL_Initialize(argc, argv);
+ if(0 != err)
+ {
+ return FAIL;
+ }
+
+ memset(errBuffer, 0, 1024);
+
+ for(index=0; index<13; index++)
+ {
+ Calendar = index + 1;
+ /*retrieve the specified calendar info*/
+ err = GetCalendarInfoW(Locale,/*locale idendifier*/
+ Calendar, /*calendar identifier*/
+ CalType, /*calendar tyope*/
+ NULL, /*buffer to store the retreive info*/
+ 0, /*alwayse zero*/
+ &dwValue);/*to store the requrest data*/
+ if(0 == err)
+ {
+ strcat(errBuffer, CalendarID[index]);
+ strcat(errBuffer, ", ");
+ }
+ }
+
+
+ if(strlen(errBuffer) > 0)
+ {
+ Fail("\nFailed to call GetCalendarInfoW API by passing %s"
+ " Calendar identifier(s)\n",errBuffer);
+ }
+
+
+ PAL_Terminate();
+ return PASS;
+}
diff --git a/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/testinfo.dat b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/testinfo.dat
new file mode 100644
index 0000000000..ea85e99a30
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/testinfo.dat
@@ -0,0 +1,11 @@
+Version = 1.0
+Section = miscellaneous
+Function = GetCalendarInfoW
+Name = Positive test #2 for GetCalendarInfoW API to retrieve the info of a
+calendar
+TYPE = DEFAULT
+EXE1 = getcalendarinfow
+Description
+= Test the GetCalendarInfoW to retrieve the information of all calendars
+= but US English
+