Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_2 / Array / tostring_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:          tostring_1.js
42    ECMA Section:       Array.toString()
43    Description:
44
45    This checks the ToString value of Array objects under JavaScript 1.2.
46
47    Author:             christine@netscape.com
48    Date:               12 november 1997
49 */
50
51 var SECTION = "JS1_2";
52 var VERSION = "JS1_2";
53 startTest();
54 var TITLE   = "Array.toString()";
55
56 writeHeaderToLog( SECTION + " "+ TITLE);
57
58 var a = new Array();
59
60 var VERSION = 0;
61
62 if ( version() == 120 ) {
63   VERSION = "120";
64 } else {
65   VERSION = "";
66 }
67
68 new TestCase ( SECTION,
69                "var a = new Array(); a.toString()",
70                ( VERSION == "120" ? "[]" : "" ),
71                a.toString() );
72
73 a[0] = void 0;
74
75 new TestCase ( SECTION,
76                "a[0] = void 0; a.toString()",
77                ( VERSION == "120" ? "[, ]" : "" ),
78                a.toString() );
79
80
81 new TestCase( SECTION,
82               "a.length",
83               1,
84               a.length );
85
86 a[1] = void 0;
87
88 new TestCase( SECTION,
89               "a[1] = void 0; a.toString()",
90               ( VERSION == "120" ? "[, , ]" : ","  ),
91               a.toString() );
92
93 a[1] = "hi";
94
95 new TestCase( SECTION,
96               "a[1] = \"hi\"; a.toString()",
97               ( VERSION == "120" ? "[, \"hi\"]" : ",hi" ),
98               a.toString() );
99
100 a[2] = void 0;
101
102 new TestCase( SECTION,
103               "a[2] = void 0; a.toString()",
104               ( VERSION == "120" ?"[, \"hi\", , ]":",hi,"),
105               a.toString() );
106
107 var b = new Array(1000);
108 var bstring = "";
109 for ( blen=0; blen<999; blen++) {
110   bstring += ",";
111 }
112
113
114 new TestCase ( SECTION,
115                "var b = new Array(1000); b.toString()",
116                ( VERSION == "120" ? "[1000]" : bstring ),
117                b.toString() );
118
119
120 new TestCase( SECTION,
121               "b.length",
122               ( VERSION == "120" ? 1 : 1000 ),
123               b.length );
124
125 test();