Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / Date / 15.9.5.2-1.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.2.js
42    ECMA Section:       15.9.5.2 Date.prototype.toString
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 in a
46    convenient, human-readable form in the current time zone.
47
48    The toString function is not generic; it generates a runtime error if its
49    this value is not a Date object. Therefore it cannot be transferred to
50    other kinds of objects for use as a method.
51
52    Author:             christine@netscape.com
53    Date:               12 november 1997
54 */
55
56 var SECTION = "15.9.5.2";
57 var VERSION = "ECMA_1";
58 startTest();
59 var TITLE   = "Date.prototype.toString";
60
61 writeHeaderToLog( SECTION + " "+ TITLE);
62
63 new TestCase( SECTION,
64               "Date.prototype.toString.length",
65               0,
66               Date.prototype.toString.length );
67
68 var now = new Date();
69
70 // can't test the content of the string, but can verify that the string is
71 // parsable by Date.parse
72
73 new TestCase( SECTION,
74               "Math.abs(Date.parse(now.toString()) - now.valueOf()) < 1000",
75               true,
76               Math.abs(Date.parse(now.toString()) - now.valueOf()) < 1000 );
77
78 new TestCase( SECTION,
79               "typeof now.toString()",
80               "string",
81               typeof now.toString() );
82 // 1970
83
84 new TestCase( SECTION,
85               "Date.parse( (new Date(0)).toString() )",
86               0,
87               Date.parse( (new Date(0)).toString() ) );
88
89 new TestCase( SECTION,
90               "Date.parse( (new Date("+TZ_ADJUST+")).toString() )",
91               TZ_ADJUST,
92               Date.parse( (new Date(TZ_ADJUST)).toString() ) );
93
94 // 1900
95 new TestCase( SECTION,
96               "Date.parse( (new Date("+TIME_1900+")).toString() )",
97               TIME_1900,
98               Date.parse( (new Date(TIME_1900)).toString() ) );
99
100 new TestCase( SECTION,
101               "Date.parse( (new Date("+TIME_1900 -TZ_ADJUST+")).toString() )",
102               TIME_1900 -TZ_ADJUST,
103               Date.parse( (new Date(TIME_1900 -TZ_ADJUST)).toString() ) );
104
105 // 2000
106 new TestCase( SECTION,
107               "Date.parse( (new Date("+TIME_2000+")).toString() )",
108               TIME_2000,
109               Date.parse( (new Date(TIME_2000)).toString() ) );
110
111 new TestCase( SECTION,
112               "Date.parse( (new Date("+TIME_2000 -TZ_ADJUST+")).toString() )",
113               TIME_2000 -TZ_ADJUST,
114               Date.parse( (new Date(TIME_2000 -TZ_ADJUST)).toString() ) );
115
116 // 29 Feb 2000
117
118 new TestCase( SECTION,
119               "Date.parse( (new Date("+UTC_FEB_29_2000+")).toString() )",
120               UTC_FEB_29_2000,
121               Date.parse( (new Date(UTC_FEB_29_2000)).toString() ) );
122
123 new TestCase( SECTION,
124               "Date.parse( (new Date("+(UTC_FEB_29_2000-1000)+")).toString() )",
125               UTC_FEB_29_2000-1000,
126               Date.parse( (new Date(UTC_FEB_29_2000-1000)).toString() ) );
127
128
129 new TestCase( SECTION,
130               "Date.parse( (new Date("+(UTC_FEB_29_2000-TZ_ADJUST)+")).toString() )",
131               UTC_FEB_29_2000-TZ_ADJUST,
132               Date.parse( (new Date(UTC_FEB_29_2000-TZ_ADJUST)).toString() ) );
133 // 2O05
134
135 new TestCase( SECTION,
136               "Date.parse( (new Date("+UTC_JAN_1_2005+")).toString() )",
137               UTC_JAN_1_2005,
138               Date.parse( (new Date(UTC_JAN_1_2005)).toString() ) );
139
140 new TestCase( SECTION,
141               "Date.parse( (new Date("+(UTC_JAN_1_2005-1000)+")).toString() )",
142               UTC_JAN_1_2005-1000,
143               Date.parse( (new Date(UTC_JAN_1_2005-1000)).toString() ) );
144
145 new TestCase( SECTION,
146               "Date.parse( (new Date("+(UTC_JAN_1_2005-TZ_ADJUST)+")).toString() )",
147               UTC_JAN_1_2005-TZ_ADJUST,
148               Date.parse( (new Date(UTC_JAN_1_2005-TZ_ADJUST)).toString() ) );
149
150 test();