Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / Array / 15.4.5.2-2.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.4.5.2-2.js
42    ECMA Section:       Array.length
43    Description:
44    15.4.5.2 length
45    The length property of this Array object is always numerically greater
46    than the name of every property whose name is an array index.
47
48    The length property has the attributes { DontEnum, DontDelete }.
49
50    This test verifies that the Array.length property is not Read Only.
51
52    Author:             christine@netscape.com
53    Date:               12 november 1997
54 */
55
56 var SECTION = "15.4.5.2-2";
57 var VERSION = "ECMA_1";
58 startTest();
59 var TITLE   = "Array.length";
60
61 writeHeaderToLog( SECTION + " "+ TITLE);
62
63 addCase( new Array(), 0, Math.pow(2,14), Math.pow(2,14) );
64
65 addCase( new Array(), 0, 1, 1 );
66
67 addCase( new Array(Math.pow(2,12)), Math.pow(2,12), 0, 0 );
68 addCase( new Array(Math.pow(2,13)), Math.pow(2,13), Math.pow(2,12), Math.pow(2,12) );
69 addCase( new Array(Math.pow(2,12)), Math.pow(2,12), Math.pow(2,12), Math.pow(2,12) );
70 addCase( new Array(Math.pow(2,14)), Math.pow(2,14), Math.pow(2,12), Math.pow(2,12) )
71
72 // some tests where array is not empty
73 // array is populated with strings
74   for ( var arg = "", i = 0; i < Math.pow(2,12); i++ ) {
75     arg +=  String(i) + ( i != Math.pow(2,12)-1 ? "," : "" );
76
77   }
78 //      print(i +":"+arg);
79
80 var a = eval( "new Array("+arg+")" );
81
82 addCase( a, i, i, i );
83 addCase( a, i, Math.pow(2,12)+i+1, Math.pow(2,12)+i+1, true );
84 addCase( a, Math.pow(2,12)+5, 0, 0, true );
85
86 test();
87
88 function addCase( object, old_len, set_len, new_len, checkitems ) {
89   object.length = set_len;
90
91   new TestCase( SECTION,
92                 "array = new Array("+ old_len+"); array.length = " + set_len +
93                 "; array.length",
94                 new_len,
95                 object.length );
96
97   if ( checkitems ) {
98     // verify that items between old and newlen are all undefined
99     if ( new_len < old_len ) {
100       var passed = true;
101       for ( var i = new_len; i < old_len; i++ ) {
102         if ( object[i] != void 0 ) {
103           passed = false;
104         }
105       }
106       new TestCase( SECTION,
107                     "verify that array items have been deleted",
108                     true,
109                     passed );
110     }
111     if ( new_len > old_len ) {
112       var passed = true;
113       for ( var i = old_len; i < new_len; i++ ) {
114         if ( object[i] != void 0 ) {
115           passed = false;
116         }
117       }
118       new TestCase( SECTION,
119                     "verify that new items are undefined",
120                     true,
121                     passed );
122     }
123   }
124
125 }
126