Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / Date / 15.9.5.7.js
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
39 /**
40    File Name:    15.9.5.7.js
41    ECMA Section: 15.9.5.7 Date.prototype.toLocaleTimeString()
42    Description:
43    This function returns a string value. The contents of the string are
44    implementation dependent, but are intended to represent the "time"
45    portion of the Date in the current time zone in a convenient,
46    human-readable form.   We test the content of the string by checking
47    that
48
49    new Date(d.toDateString() + " " + d.toLocaleTimeString()) ==  d
50
51    Author:  pschwartau@netscape.com                            
52    Date:    14 november 2000
53    Revised: 07 january 2002  because of a change in JS Date format:
54    Revised: 21 November 2005 since the string comparison stuff is horked.
55    bclary
56
57    See http://bugzilla.mozilla.org/show_bug.cgi?id=118266 (SpiderMonkey)
58    See http://bugzilla.mozilla.org/show_bug.cgi?id=118636 (Rhino)
59 */
60 //-----------------------------------------------------------------------------
61 var SECTION = "15.9.5.7";
62 var VERSION = "ECMA_3"; 
63 var TITLE   = "Date.prototype.toLocaleTimeString()";
64   
65 var status = '';
66 var actual = ''; 
67 var expect = '';
68 var givenDate;
69 var year = '';
70 var regexp = '';
71 var TimeString = '';
72 var reducedDateString = '';
73 var hopeThisIsLocaleTimeString = '';
74 var cnERR ='OOPS! FATAL ERROR: no regexp match in extractLocaleTimeString()';
75
76 startTest();
77 writeHeaderToLog( SECTION + " "+ TITLE);
78
79 // first, a couple generic tests -
80
81 status = "typeof (now.toLocaleTimeString())"; 
82 actual =   typeof (now.toLocaleTimeString());
83 expect = "string";
84 addTestCase();
85
86 status = "Date.prototype.toLocaleTimeString.length";  
87 actual =  Date.prototype.toLocaleTimeString.length;
88 expect =  0;  
89 addTestCase();
90
91 // 1970
92 addDateTestCase(0);
93 addDateTestCase(TZ_ADJUST);
94   
95 // 1900
96 addDateTestCase(TIME_1900);
97 addDateTestCase(TIME_1900 - TZ_ADJUST);
98
99 // 2000
100 addDateTestCase(TIME_2000);
101 addDateTestCase(TIME_2000 - TZ_ADJUST);
102    
103 // 29 Feb 2000
104 addDateTestCase(UTC_29_FEB_2000);
105 addDateTestCase(UTC_29_FEB_2000 - 1000);
106 addDateTestCase(UTC_29_FEB_2000 - TZ_ADJUST);
107
108 // Now
109 addDateTestCase( TIME_NOW);
110 addDateTestCase( TIME_NOW - TZ_ADJUST);
111
112 // 2005
113 addDateTestCase(UTC_1_JAN_2005);
114 addDateTestCase(UTC_1_JAN_2005 - 1000);
115 addDateTestCase(UTC_1_JAN_2005 - TZ_ADJUST);
116
117 test();
118
119 function addTestCase()
120 {
121   new TestCase(
122     SECTION,
123     status,
124     expect,
125     actual);
126 }
127
128
129 function addDateTestCase(date_given_in_milliseconds)
130 {
131   var s = 'new Date(' +  date_given_in_milliseconds + ')';
132   givenDate = new Date(date_given_in_milliseconds);
133   
134   status = 'd = ' + s +
135     '; d == new Date(d.toDateString() + " " + d.toLocaleTimeString())';  
136   expect = givenDate.toString();
137   actual = new Date(givenDate.toDateString() +
138                     ' ' + givenDate.toLocaleTimeString()).toString();
139   addTestCase();
140 }
141