/tests/auto/qscriptjstestsuite/tests/ecma/Date/15.9.5.37-4.js

https://bitbucket.org/ultra_iter/qt-vtl · JavaScript · 163 lines · 79 code · 20 blank · 64 comment · 3 complexity · b4c929ffc0dfdc03e521ed8b99e6dbb6 MD5 · raw file

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4. *
  5. * The contents of this file are subject to the Mozilla Public License Version
  6. * 1.1 (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. * http://www.mozilla.org/MPL/
  9. *
  10. * Software distributed under the License is distributed on an "AS IS" basis,
  11. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. * for the specific language governing rights and limitations under the
  13. * License.
  14. *
  15. * The Original Code is Mozilla Communicator client code, released
  16. * March 31, 1998.
  17. *
  18. * The Initial Developer of the Original Code is
  19. * Netscape Communications Corporation.
  20. * Portions created by the Initial Developer are Copyright (C) 1998
  21. * the Initial Developer. All Rights Reserved.
  22. *
  23. * Contributor(s):
  24. *
  25. * Alternatively, the contents of this file may be used under the terms of
  26. * either the GNU General Public License Version 2 or later (the "GPL"), or
  27. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28. * in which case the provisions of the GPL or the LGPL are applicable instead
  29. * of those above. If you wish to allow use of your version of this file only
  30. * under the terms of either the GPL or the LGPL, and not to allow others to
  31. * use your version of this file under the terms of the MPL, indicate your
  32. * decision by deleting the provisions above and replace them with the notice
  33. * and other provisions required by the GPL or the LGPL. If you do not delete
  34. * the provisions above, a recipient may use your version of this file under
  35. * the terms of any one of the MPL, the GPL or the LGPL.
  36. *
  37. * ***** END LICENSE BLOCK ***** */
  38. gTestfile = '15.9.5.37-4.js';
  39. /**
  40. File Name: 15.9.5.37-1.js
  41. ECMA Section: 15.9.5.37 Date.prototype.setUTCFullYear(year [, mon [, date ]] )
  42. Description:
  43. If mon is not specified, this behaves as if mon were specified with the
  44. value getUTCMonth( ). If date is not specified, this behaves as if date
  45. were specified with the value getUTCDate( ).
  46. 1. Let t be this time value; but if this time value is NaN, let t be +0.
  47. 2. Call ToNumber(year).
  48. 3. If mon is not specified, compute MonthFromTime(t); otherwise, call
  49. ToNumber(mon).
  50. 4. If date is not specified, compute DateFromTime(t); otherwise, call
  51. ToNumber(date).
  52. 5. Compute MakeDay(Result(2), Result(3), Result(4)).
  53. 6. Compute MakeDate(Result(5), TimeWithinDay(t)).
  54. 7. Set the [[Value]] property of the this value to TimeClip(Result(6)).
  55. 8. Return the value of the [[Value]] property of the this value.
  56. Author: christine@netscape.com
  57. Date: 12 november 1997
  58. Added some Year 2000 test cases.
  59. */
  60. var SECTION = "15.9.5.37-1";
  61. var VERSION = "ECMA_1";
  62. startTest();
  63. writeHeaderToLog( SECTION + " Date.prototype.setUTCFullYear(year [, mon [, date ]] )");
  64. // Dates around 2005
  65. addNewTestCase( "TDATE = new Date(0); TDATE.setUTCFullYear(2005);TDATE",
  66. UTCDateFromTime(SetUTCFullYear(0,2005)),
  67. LocalDateFromTime(SetUTCFullYear(0,2005)) );
  68. addNewTestCase( "TDATE = new Date(0); TDATE.setUTCFullYear(2004);TDATE",
  69. UTCDateFromTime(SetUTCFullYear(0,2004)),
  70. LocalDateFromTime(SetUTCFullYear(0,2004)) );
  71. addNewTestCase( "TDATE = new Date(0); TDATE.setUTCFullYear(2006);TDATE",
  72. UTCDateFromTime(SetUTCFullYear(0,2006)),
  73. LocalDateFromTime(SetUTCFullYear(0,2006)) );
  74. test();
  75. function addNewTestCase( DateString, UTCDate, LocalDate) {
  76. DateCase = eval( DateString );
  77. // fixed_year = ( ExpectDate.year >=1900 || ExpectDate.year < 2000 ) ? ExpectDate.year - 1900 : ExpectDate.year;
  78. new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
  79. new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
  80. new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
  81. new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
  82. new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
  83. new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
  84. new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
  85. new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
  86. new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSeconds() );
  87. new TestCase( SECTION, DateString+".getUTCMilliseconds()", UTCDate.ms, DateCase.getUTCMilliseconds() );
  88. new TestCase( SECTION, DateString+".getFullYear()", LocalDate.year, DateCase.getFullYear() );
  89. new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() );
  90. new TestCase( SECTION, DateString+".getDate()", LocalDate.date, DateCase.getDate() );
  91. new TestCase( SECTION, DateString+".getDay()", LocalDate.day, DateCase.getDay() );
  92. new TestCase( SECTION, DateString+".getHours()", LocalDate.hours, DateCase.getHours() );
  93. new TestCase( SECTION, DateString+".getMinutes()", LocalDate.minutes, DateCase.getMinutes() );
  94. new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
  95. new TestCase( SECTION, DateString+".getMilliseconds()", LocalDate.ms, DateCase.getMilliseconds() );
  96. DateCase.toString = Object.prototype.toString;
  97. new TestCase( SECTION,
  98. DateString+".toString=Object.prototype.toString;"+DateString+".toString()",
  99. "[object Date]",
  100. DateCase.toString() );
  101. }
  102. function MyDate() {
  103. this.year = 0;
  104. this.month = 0;
  105. this.date = 0;
  106. this.hours = 0;
  107. this.minutes = 0;
  108. this.seconds = 0;
  109. this.ms = 0;
  110. }
  111. function LocalDateFromTime(t) {
  112. t = LocalTime(t);
  113. return ( MyDateFromTime(t) );
  114. }
  115. function UTCDateFromTime(t) {
  116. return ( MyDateFromTime(t) );
  117. }
  118. function MyDateFromTime( t ) {
  119. var d = new MyDate();
  120. d.year = YearFromTime(t);
  121. d.month = MonthFromTime(t);
  122. d.date = DateFromTime(t);
  123. d.hours = HourFromTime(t);
  124. d.minutes = MinFromTime(t);
  125. d.seconds = SecFromTime(t);
  126. d.ms = msFromTime(t);
  127. d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
  128. d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
  129. d.day = WeekDay( d.value );
  130. return (d);
  131. }
  132. function SetUTCFullYear( t, year, mon, date ) {
  133. var T = ( t != t ) ? 0 : t;
  134. var YEAR = Number(year);
  135. var MONTH = ( mon == void 0 ) ? MonthFromTime(T) : Number( mon );
  136. var DATE = ( date == void 0 ) ? DateFromTime(T) : Number( date );
  137. var DAY = MakeDay( YEAR, MONTH, DATE );
  138. return ( TimeClip(MakeDate(DAY, TimeWithinDay(T))) );
  139. }