Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / Array / 15.4.5.1-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.1-2.js
42    ECMA Section:       [[ Put]] (P, V)
43    Description:
44    Array objects use a variation of the [[Put]] method used for other native
45    ECMAScript objects (section 8.6.2.2).
46
47    Assume A is an Array object and P is a string.
48
49    When the [[Put]] method of A is called with property P and value V, the
50    following steps are taken:
51
52    1.  Call the [[CanPut]] method of A with name P.
53    2.  If Result(1) is false, return.
54    3.  If A doesn't have a property with name P, go to step 7.
55    4.  If P is "length", go to step 12.
56    5.  Set the value of property P of A to V.
57    6.  Go to step 8.
58    7.  Create a property with name P, set its value to V and give it empty
59    attributes.
60    8.  If P is not an array index, return.
61    9.  If A itself has a property (not an inherited property) named "length",
62    andToUint32(P) is less than the value of the length property of A, then
63    return.
64    10. Change (or set) the value of the length property of A to ToUint32(P)+1.
65    11. Return.
66    12. Compute ToUint32(V).
67    13. For every integer k that is less than the value of the length property
68    of A but not less than Result(12), if A itself has a property (not an
69    inherited property) named ToString(k), then delete that property.
70    14. Set the value of property P of A to Result(12).
71    15. Return.
72
73
74    These are gTestcases from Waldemar, detailed in
75    http://scopus.mcom.com/bugsplat/show_bug.cgi?id=123552
76
77    Author:             christine@netscape.com
78    Date:               15 June 1998
79 */
80
81 var SECTION = "15.4.5.1-2";
82 var VERSION = "ECMA_1";
83 startTest();
84 var TITLE   = "Array [[Put]] (P,V)";
85
86 writeHeaderToLog( SECTION + " "+ TITLE);
87
88 var a = new Array();
89
90 AddCase( "3.00", "three" );
91 AddCase( "00010", "eight" );
92 AddCase( "37xyz", "thirty-five" );
93 AddCase("5000000000", 5)
94   AddCase( "-2", -3 );
95
96 new TestCase( SECTION,
97               "a[10]",
98               void 0,
99               a[10] );
100
101 new TestCase( SECTION,
102               "a[3]",
103               void 0,
104               a[3] );
105
106 a[4] = "four";
107
108 new TestCase( SECTION,
109               "a[4] = \"four\"; a[4]",
110               "four",
111               a[4] );
112
113 new TestCase( SECTION,
114               "a[\"4\"]",
115               "four",
116               a["4"] );
117
118 new TestCase( SECTION,
119               "a[\"4.00\"]",
120               void 0,
121               a["4.00"] );
122
123 new TestCase( SECTION,
124               "a.length",
125               5,
126               a.length );
127
128
129 a["5000000000"] = 5;
130
131 new TestCase( SECTION,
132               "a[\"5000000000\"] = 5; a.length",
133               5,
134               a.length );
135
136 new TestCase( SECTION,
137               "a[\"-2\"] = -3; a.length",
138               5,
139               a.length );
140
141 test();
142
143 function AddCase ( arg, value ) {
144
145   a[arg] = value;
146
147   new TestCase( SECTION,
148                 "a[\"" + arg + "\"] =  "+ value +"; a.length",
149                 0,
150                 a.length );
151 }