Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / Date / 15.9.5.6.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 /**
41    File Name:          15.9.5.6.js
42    ECMA Section: 15.9.5.6 Date.prototype.toLocaleDateString()
43    Description:
44    This function returns a string value. The contents of the string are
45    implementation dependent, but are intended to represent the "date"
46    portion of the Date in the current time zone in a convenient,
47    human-readable form.   We can't test the content of the string, 
48    but can verify that the string is parsable by Date.parse
49
50    The toLocaleDateString function is not generic; it generates a runtime error
51    if its 'this' value is not a Date object. Therefore it cannot be transferred
52    to other kinds of objects for use as a method.
53
54    Note: This test isn't supposed to work with a non-English locale per spec.
55
56    Author:  pschwartau@netscape.com
57    Date:      14 november 2000
58 */
59
60 var SECTION = "15.9.5.6";
61 var VERSION = "ECMA_3"; 
62 var TITLE   = "Date.prototype.toLocaleDateString()"; 
63  
64 var status = '';
65 var actual = ''; 
66 var expect = '';
67
68
69 startTest();
70 writeHeaderToLog( SECTION + " "+ TITLE);
71
72 // first, some generic tests -
73
74 status = "typeof (now.toLocaleDateString())"; 
75 actual =   typeof (now.toLocaleDateString());
76 expect = "string";
77 addTestCase();
78
79 status = "Date.prototype.toLocaleDateString.length";  
80 actual =  Date.prototype.toLocaleDateString.length;
81 expect =  0;  
82 addTestCase();
83
84 /* Date.parse is accurate to the second;  valueOf() to the millisecond.
85    Here we expect them to coincide, as we expect a time of exactly midnight -  */
86 status = "(Date.parse(now.toLocaleDateString()) - (midnight(now)).valueOf()) == 0";  
87 actual =   (Date.parse(now.toLocaleDateString()) - (midnight(now)).valueOf()) == 0;
88 expect = true;
89 addTestCase();
90
91
92
93 // 1970
94 addDateTestCase(0);
95 addDateTestCase(TZ_ADJUST);  
96
97   
98 // 1900
99 addDateTestCase(TIME_1900);
100 addDateTestCase(TIME_1900 - TZ_ADJUST);
101
102   
103 // 2000
104 addDateTestCase(TIME_2000);
105 addDateTestCase(TIME_2000 - TZ_ADJUST);
106
107    
108 // 29 Feb 2000
109 addDateTestCase(UTC_29_FEB_2000);
110 addDateTestCase(UTC_29_FEB_2000 - 1000);   
111 addDateTestCase(UTC_29_FEB_2000 - TZ_ADJUST);
112
113
114 // 2005
115 addDateTestCase(UTC_1_JAN_2005);
116 addDateTestCase(UTC_1_JAN_2005 - 1000);
117 addDateTestCase(UTC_1_JAN_2005 - TZ_ADJUST);
118   
119
120
121 //-----------------------------------------------------------------------------------------------------
122 test();
123 //-----------------------------------------------------------------------------------------------------
124
125
126 function addTestCase()
127 {
128   new TestCase(
129     "unknown-test-name",
130     status,
131     expect,
132     actual);
133 }
134
135
136 function addDateTestCase(date_given_in_milliseconds)
137 {
138   var givenDate = new Date(date_given_in_milliseconds);
139
140   status = 'Date.parse('   +   givenDate   +   ').toLocaleDateString())';  
141   actual =  Date.parse(givenDate.toLocaleDateString());
142   expect = Date.parse(midnight(givenDate));
143   addTestCase();
144 }
145
146
147 function midnight(givenDate)
148 {
149   // midnight on the given date -
150   return new Date(givenDate.getFullYear(), givenDate.getMonth(), givenDate.getDate());
151 }
152