lib517.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. * SPDX-License-Identifier: curl
  22. *
  23. ***************************************************************************/
  24. #include "test.h"
  25. #include "memdebug.h"
  26. struct dcheck {
  27. const char *input;
  28. time_t output;
  29. };
  30. static const struct dcheck dates[] = {
  31. {"Sun, 06 Nov 1994 08:49:37 GMT", 784111777 },
  32. {"Sunday, 06-Nov-94 08:49:37 GMT", 784111777 },
  33. {"Sun Nov 6 08:49:37 1994", 784111777 },
  34. {"Sun Nov 6 8:49:37 1994", 784111777 },
  35. {"Sun Nov 6 8:9:37 1994", 784109377 },
  36. {"Sun Nov 6 008:09:37 1994", -1 },
  37. {"Nov Sun 6 8:9:7 1994", 784109347 },
  38. {"06 Nov 1994 08:49:37 GMT", 784111777 },
  39. {"06-Nov-94 08:49:37 GMT", 784111777 },
  40. {"Nov 6 08:49:37 1994", 784111777 },
  41. {"06 Nov 1994 08:49:37", 784111777 },
  42. {"06-Nov-94 08:49:37", 784111777 },
  43. {"1994 Nov 6 08:49:37", 784111777 },
  44. {"GMT 08:49:37 06-Nov-94 Sunday", 784111777 },
  45. {"94 6 Nov 08:49:37", 784111777 },
  46. {"1994 Nov 6", 784080000 },
  47. {"06-Nov-94", 784080000 },
  48. {"Sun Nov 6 94", 784080000 },
  49. {"1994.Nov.6", 784080000 },
  50. {"Sun/Nov/6/94/GMT", 784080000 },
  51. {"Sun, 06 Nov 1994 08:49:37 CET", 784108177 },
  52. {"06 Nov 1994 08:49:37 EST", 784129777 },
  53. {"Sun, 06 Nov 1994 08:49:37 UT", 784111777 },
  54. {"Sun, 12 Sep 2004 15:05:58 -0700", 1095026758 },
  55. {"Sat, 11 Sep 2004 21:32:11 +0200", 1094931131 },
  56. {"20040912 15:05:58 -0700", 1095026758 },
  57. {"20040911 +0200", 1094853600 },
  58. {"Thu, 01-Jan-1970 00:59:59 GMT", 3599 },
  59. {"Thu, 01-Jan-1970 01:00:00 GMT", 3600 },
  60. {"Sat, 15-Apr-17 21:01:22 GMT", 1492290082 },
  61. {"Thu, 19-Apr-2007 16:00:00 GMT", 1176998400 },
  62. {"Wed, 25 Apr 2007 21:02:13 GMT", 1177534933 },
  63. {"Thu, 19/Apr\\2007 16:00:00 GMT", 1176998400 },
  64. {"Fri, 1 Jan 2010 01:01:50 GMT", 1262307710 },
  65. {"Wednesday, 1-Jan-2003 00:00:00 GMT", 1041379200 },
  66. {", 1-Jan-2003 00:00:00 GMT", 1041379200 },
  67. {"1-Jan-2003 00:00:00 GMT", 1041379200 },
  68. {"1-Jan-2003 00:00:00 GMT", 1041379200 },
  69. {"Wed,18-Apr-07 22:50:12 GMT", 1176936612 },
  70. {"WillyWonka , 18-Apr-07 22:50:12 GMT", -1 },
  71. {"WillyWonka , 18-Apr-07 22:50:12", -1 },
  72. {"WillyWonka , 18-apr-07 22:50:12", -1 },
  73. {"Mon, 18-Apr-1977 22:50:13 GMT", 230251813 },
  74. {"Mon, 18-Apr-77 22:50:13 GMT", 230251813 },
  75. {"Sat, 15-Apr-17\"21:01:22\"GMT", 1492290082 },
  76. {"Partyday, 18- April-07 22:50:12", -1 },
  77. {"Partyday, 18 - Apri-07 22:50:12", -1 },
  78. {"Wednes, 1-Januar-2003 00:00:00 GMT", -1 },
  79. {"Sat, 15-Apr-17 21:01:22", 1492290082 },
  80. {"Sat, 15-Apr-17 21:01:22 GMT-2", 1492290082 },
  81. {"Sat, 15-Apr-17 21:01:22 GMT BLAH", 1492290082 },
  82. {"Sat, 15-Apr-17 21:01:22 GMT-0400", 1492290082 },
  83. {"Sat, 15-Apr-17 21:01:22 GMT-0400 (EDT)", 1492290082 },
  84. {"Sat, 15-Apr-17 21:01:22 DST", -1 },
  85. {"Sat, 15-Apr-17 21:01:22 -0400", 1492304482 },
  86. {"Sat, 15-Apr-17 21:01:22 (hello there)", -1 },
  87. {"Sat, 15-Apr-17 21:01:22 11:22:33", -1 },
  88. {"Sat, 15-Apr-17 ::00 21:01:22", -1 },
  89. {"Sat, 15-Apr-17 boink:z 21:01:22", -1 },
  90. {"Sat, 15-Apr-17 91:22:33 21:01:22", -1 },
  91. {"Thu Apr 18 22:50:12 2007 GMT", 1176936612 },
  92. {"22:50:12 Thu Apr 18 2007 GMT", 1176936612 },
  93. {"Thu 22:50:12 Apr 18 2007 GMT", 1176936612 },
  94. {"Thu Apr 22:50:12 18 2007 GMT", 1176936612 },
  95. {"Thu Apr 18 22:50:12 2007 GMT", 1176936612 },
  96. {"Thu Apr 18 2007 22:50:12 GMT", 1176936612 },
  97. {"Thu Apr 18 2007 GMT 22:50:12", 1176936612 },
  98. {"Sat, 15-Apr-17 21:01:22 GMT", 1492290082 },
  99. {"15-Sat, Apr-17 21:01:22 GMT", 1492290082 },
  100. {"15-Sat, Apr 21:01:22 GMT 17", 1492290082 },
  101. {"15-Sat, Apr 21:01:22 GMT 2017", 1492290082 },
  102. {"15 Apr 21:01:22 2017", 1492290082 },
  103. {"15 17 Apr 21:01:22", 1492290082 },
  104. {"Apr 15 17 21:01:22", 1492290082 },
  105. {"Apr 15 21:01:22 17", 1492290082 },
  106. {"2017 April 15 21:01:22", -1 },
  107. {"15 April 2017 21:01:22", -1 },
  108. {"98 April 17 21:01:22", -1 },
  109. {"Thu, 012-Aug-2008 20:49:07 GMT", 1218574147 },
  110. {"Thu, 999999999999-Aug-2007 20:49:07 GMT", -1 },
  111. {"Thu, 12-Aug-2007 20:61:99999999999 GMT", -1 },
  112. {"IAintNoDateFool", -1 },
  113. {"Thu Apr 18 22:50 2007 GMT", 1176936600 },
  114. {"20110623 12:34:56", 1308832496 },
  115. {"20110632 12:34:56", -1 },
  116. {"20110623 56:34:56", -1 },
  117. {"20111323 12:34:56", -1 },
  118. {"20110623 12:34:79", -1 },
  119. {"Wed, 31 Dec 2008 23:59:60 GMT", 1230768000 },
  120. {"Wed, 31 Dec 2008 23:59:61 GMT", -1 },
  121. {"Wed, 31 Dec 2008 24:00:00 GMT", -1 },
  122. {"Wed, 31 Dec 2008 23:60:59 GMT", -1 },
  123. {"20110623 12:3", 1308830580 },
  124. {"20110623 1:3", 1308790980 },
  125. {"20110623 1:30", 1308792600 },
  126. {"20110623 12:12:3", 1308831123 },
  127. {"20110623 01:12:3", 1308791523 },
  128. {"20110623 01:99:30", -1 },
  129. {"Thu, 01-Jan-1970 00:00:00 GMT", 0 },
  130. {"Thu, 31-Dec-1969 23:59:58 GMT", -2 },
  131. {"Thu, 31-Dec-1969 23:59:59 GMT", 0 }, /* avoids -1 ! */
  132. #if SIZEOF_TIME_T > 4
  133. {"Sun, 06 Nov 2044 08:49:37 GMT", (time_t) CURL_OFF_TU_C(2362034977) },
  134. {"Sun, 06 Nov 3144 08:49:37 GMT", 37074617377 },
  135. #ifndef HAVE_TIME_T_UNSIGNED
  136. #if 0
  137. /* causes warning on MSVC */
  138. {"Sun, 06 Nov 1900 08:49:37 GMT", -2182259423 },
  139. #endif
  140. {"Sun, 06 Nov 1800 08:49:37 GMT", -5337933023 },
  141. {"Thu, 01-Jan-1583 00:00:00 GMT", -12212553600 },
  142. #endif
  143. {"Thu, 01-Jan-1499 00:00:00 GMT", -1 },
  144. #else
  145. {"Sun, 06 Nov 2044 08:49:37 GMT", -1 },
  146. #endif
  147. #ifndef HAVE_TIME_T_UNSIGNED
  148. {"Sun, 06 Nov 1968 08:49:37 GMT", -36342623 },
  149. #endif
  150. { NULL, 0 }
  151. };
  152. CURLcode test(char *URL)
  153. {
  154. int i;
  155. int error = 0;
  156. (void)URL; /* not used */
  157. for(i = 0; dates[i].input; i++) {
  158. time_t out = curl_getdate(dates[i].input, NULL);
  159. if(out != dates[i].output) {
  160. printf("WRONGLY %s => %ld (instead of %ld)\n",
  161. dates[i].input, (long)out, (long)dates[i].output);
  162. error++;
  163. }
  164. }
  165. return error == 0 ? CURLE_OK : TEST_ERR_FAILURE;
  166. }