Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / Date / 15.9.5.3.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.3.js
41    ECMA Section: 15.9.5.3 Date.prototype.toDateString()
42    Description:
43    This function returns a string value. The contents of the string are
44    implementation dependent, but are intended to represent the "date"
45    portion of the Date in the current time zone in a convenient,
46    human-readable form.   We can't test the content of the string, 
47    but can verify that the string is parsable by Date.parse
48
49    The toDateString function is not generic; it generates a runtime error
50    if its 'this' value is not a Date object. Therefore it cannot be transferred
51    to other kinds of objects for use as a method.
52
53    Author:  pschwartau@netscape.com                            
54    Date:      14 november 2000  (adapted from ecma/Date/15.9.5.2.js)
55 */
56
57 var SECTION = "15.9.5.3";
58 var VERSION = "ECMA_3"; 
59 var TITLE   = "Date.prototype.toDateString()"; 
60   
61 var status = '';
62 var actual = ''; 
63 var expect = '';
64
65
66 startTest();
67 writeHeaderToLog( SECTION + " "+ TITLE);
68
69 // first, some generic tests -
70
71 status = "typeof (now.toDateString())"; 
72 actual =   typeof (now.toDateString());
73 expect = "string";
74 addTestCase();
75
76 status = "Date.prototype.toDateString.length";  
77 actual =  Date.prototype.toDateString.length;
78 expect =  0;  
79 addTestCase();
80
81 /*
82  * Date.parse is accurate to the second; valueOf() to the millisecond.
83  * Here we expect them to coincide, as we expect a time of exactly
84  * midnight -
85  */
86 status = "(Date.parse(now.toDateString()) - (midnight(now)).valueOf()) == 0";  
87 actual =   (Date.parse(now.toDateString()) - (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     SECTION,
130     status,
131     expect,
132     actual);
133 }
134
135 function addDateTestCase(date_given_in_milliseconds)
136 {
137   var givenDate = new Date(date_given_in_milliseconds);
138
139   status = 'Date.parse('   +   givenDate   +   ').toDateString())';  
140   actual =  Date.parse(givenDate.toDateString());
141   expect = Date.parse(midnight(givenDate));
142   addTestCase();
143 }
144
145
146 function midnight(givenDate)
147 {
148   // midnight on the given date -
149   return new Date(givenDate.getFullYear(), givenDate.getMonth(), givenDate.getDate());
150 }
151