js/src/tests/ecma/Date/15.9.3.1-2.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     7 /**
     8    File Name:          15.9.3.1.js
     9    ECMA Section:       15.9.3.1 new Date (year, month, date, hours, minutes, seconds, ms)
    10    Description:        The [[Prototype]] property of the newly constructed
    11    object is set to the original Date prototype object,
    12    the one that is the initial value of Date.prototype.
    14    The [[Class]] property of the newly constructed object
    15    is set as follows:
    16    1. Call ToNumber(year)
    17    2. Call ToNumber(month)
    18    3. Call ToNumber(date)
    19    4. Call ToNumber(hours)
    20    5. Call ToNumber(minutes)
    21    6. Call ToNumber(seconds)
    22    7. Call ToNumber(ms)
    23    8.  If Result(1) is NaN and 0 <= ToInteger(Result(1)) <=
    24    99, Result(8) is 1900+ToInteger(Result(1)); otherwise,
    25    Result(8) is Result(1)
    26    9.  Compute MakeDay(Result(8), Result(2), Result(3)
    27    10. Compute MakeTime(Result(4), Result(5), Result(6),
    28    Result(7)
    29    11. Compute MakeDate(Result(9), Result(10))
    30    12. Set the [[Value]] property of the newly constructed
    31    object to TimeClip(UTC(Result(11))).
    34    This tests the returned value of a newly constructed
    35    Date object.
    37    Author:             christine@netscape.com
    38    Date:               7 july 1997
    39 */
    41 var SECTION = "15.9.3.1";
    42 var VERSION = "ECMA_1";
    43 startTest();
    44 var TITLE   = "new Date( year, month, date, hours, minutes, seconds, ms )";
    46 var TIME        = 0;
    47 var UTC_YEAR    = 1;
    48 var UTC_MONTH   = 2;
    49 var UTC_DATE    = 3;
    50 var UTC_DAY     = 4;
    51 var UTC_HOURS   = 5;
    52 var UTC_MINUTES = 6;
    53 var UTC_SECONDS = 7;
    54 var UTC_MS      = 8;
    56 var YEAR        = 9;
    57 var MONTH       = 10;
    58 var DATE        = 11;
    59 var DAY         = 12;
    60 var HOURS       = 13;
    61 var MINUTES     = 14;
    62 var SECONDS     = 15;
    63 var MS          = 16;
    65 writeHeaderToLog( SECTION + " "+ TITLE);
    68 // all the "ResultArrays" below are hard-coded to Pacific Standard Time values -
    70 // Dates around 2000
    72 addNewTestCase( new Date( 1999,11,31,15,59,59,999),
    73 		"new Date( 1999,11,31,15,59,59,999)",
    74 		[TIME_2000-1,1999,11,31,5,23,59,59,999,1999,11,31,5,15,59,59,999] );
    76 addNewTestCase( new Date( 1999,11,31,16,0,0,0),
    77 		"new Date( 1999,11,31,16,0,0,0)",
    78 		[TIME_2000,2000,0,1,6,0,0,0,0,1999,11,31,5, 16,0,0,0] );
    80 addNewTestCase( new Date( 1999,11,31,23,59,59,999),
    81 		"new Date( 1999,11,31,23,59,59,999)",
    82 		[TIME_2000-PST_ADJUST-1,2000,0,1,6,7,59,59,999,1999,11,31,5,23,59,59,999] );
    84 addNewTestCase( new Date( 2000,0,1,0,0,0,0),
    85 		"new Date( 2000,0,1,0,0,0,0)",
    86 		[TIME_2000-PST_ADJUST,2000,0,1,6,8,0,0,0,2000,0,1,6,0,0,0,0] );
    88 addNewTestCase( new Date( 2000,0,1,0,0,0,1),
    89 		"new Date( 2000,0,1,0,0,0,1)",
    90 		[TIME_2000-PST_ADJUST+1,2000,0,1,6,8,0,0,1,2000,0,1,6,0,0,0,1] );
    92 test();
    94 function addNewTestCase( DateCase, DateString, ResultArray ) {
    95   //adjust hard-coded ResultArray for tester's timezone instead of PST
    96   adjustResultArray(ResultArray);
    98   new TestCase( SECTION, DateString+".getTime()", ResultArray[TIME],       DateCase.getTime() );
    99   new TestCase( SECTION, DateString+".valueOf()", ResultArray[TIME],       DateCase.valueOf() );
   101   new TestCase( SECTION, DateString+".getUTCFullYear()",      ResultArray[UTC_YEAR],  DateCase.getUTCFullYear() );
   102   new TestCase( SECTION, DateString+".getUTCMonth()",         ResultArray[UTC_MONTH],  DateCase.getUTCMonth() );
   103   new TestCase( SECTION, DateString+".getUTCDate()",          ResultArray[UTC_DATE],   DateCase.getUTCDate() );
   104   new TestCase( SECTION, DateString+".getUTCDay()",           ResultArray[UTC_DAY],    DateCase.getUTCDay() );
   105   new TestCase( SECTION, DateString+".getUTCHours()",         ResultArray[UTC_HOURS],  DateCase.getUTCHours() );
   106   new TestCase( SECTION, DateString+".getUTCMinutes()",       ResultArray[UTC_MINUTES],DateCase.getUTCMinutes() );
   107   new TestCase( SECTION, DateString+".getUTCSeconds()",       ResultArray[UTC_SECONDS],DateCase.getUTCSeconds() );
   108   new TestCase( SECTION, DateString+".getUTCMilliseconds()",  ResultArray[UTC_MS],     DateCase.getUTCMilliseconds() );
   110   new TestCase( SECTION, DateString+".getFullYear()",         ResultArray[YEAR],       DateCase.getFullYear() );
   111   new TestCase( SECTION, DateString+".getMonth()",            ResultArray[MONTH],      DateCase.getMonth() );
   112   new TestCase( SECTION, DateString+".getDate()",             ResultArray[DATE],       DateCase.getDate() );
   113   new TestCase( SECTION, DateString+".getDay()",              ResultArray[DAY],        DateCase.getDay() );
   114   new TestCase( SECTION, DateString+".getHours()",            ResultArray[HOURS],      DateCase.getHours() );
   115   new TestCase( SECTION, DateString+".getMinutes()",          ResultArray[MINUTES],    DateCase.getMinutes() );
   116   new TestCase( SECTION, DateString+".getSeconds()",          ResultArray[SECONDS],    DateCase.getSeconds() );
   117   new TestCase( SECTION, DateString+".getMilliseconds()",     ResultArray[MS],         DateCase.getMilliseconds() );
   118 }

mercurial