Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_2 / Array / splice1.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    Filename:     splice1.js
42    Description:  'Tests Array.splice(x,y) w/no var args'
43
44    Author:       Nick Lerissa
45    Date:         Fri Feb 13 09:58:28 PST 1998
46 */
47
48 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
49 var VERSION = 'no version';
50 var TITLE = 'String:splice 1';
51 var BUGNUMBER="123795";
52
53 startTest();
54 writeHeaderToLog('Executing script: splice1.js');
55 writeHeaderToLog( SECTION + " "+ TITLE);
56
57 var a = ['a','test string',456,9.34,new String("string object"),[],['h','i','j','k']];
58 var b = [1,2,3,4,5,6,7,8,9,0];
59
60 exhaustiveSpliceTest("exhaustive splice w/no optional args 1",a);
61 exhaustiveSpliceTest("exhaustive splice w/no optional args 1",b);
62
63 test();
64
65
66 function mySplice(testArray, splicedArray, first, len, elements)
67 {
68   var removedArray  = [];
69   var adjustedFirst = first;
70   var adjustedLen   = len;
71
72   if (adjustedFirst < 0) adjustedFirst = testArray.length + first;
73   if (adjustedFirst < 0) adjustedFirst = 0;
74
75   if (adjustedLen < 0) adjustedLen = 0;
76
77   for (i = 0; (i < adjustedFirst)&&(i < testArray.length); ++i)
78     splicedArray.push(testArray[i]);
79
80   if (adjustedFirst < testArray.length)
81     for (i = adjustedFirst; (i < adjustedFirst + adjustedLen) &&
82            (i < testArray.length); ++i)
83     {
84       removedArray.push(testArray[i]);
85     }
86
87   for (i = 0; i < elements.length; i++) splicedArray.push(elements[i]);
88
89   for (i = adjustedFirst + adjustedLen; i < testArray.length; i++)
90     splicedArray.push(testArray[i]);
91
92   return removedArray;
93 }
94
95 function exhaustiveSpliceTest(testname, testArray)
96 {
97   var errorMessage;
98   var passed = true;
99   var reason = "";
100
101   for (var first = -(testArray.length+2); first <= 2 + testArray.length; first++)
102   {
103     var actualSpliced   = [];
104     var expectedSpliced = [];
105     var actualRemoved   = [];
106     var expectedRemoved = [];
107
108     for (var len = 0; len < testArray.length + 2; len++)
109     {
110       actualSpliced   = [];
111       expectedSpliced = [];
112
113       for (var i = 0; i < testArray.length; ++i)
114         actualSpliced.push(testArray[i]);
115
116       actualRemoved   = actualSpliced.splice(first,len);
117       expectedRemoved = mySplice(testArray,expectedSpliced,first,len,[]);
118
119       var adjustedFirst = first;
120       if (adjustedFirst < 0) adjustedFirst = testArray.length + first;
121       if (adjustedFirst < 0) adjustedFirst = 0;
122
123       if (  (String(actualSpliced) != String(expectedSpliced))
124             ||(String(actualRemoved) != String(expectedRemoved)))
125       {
126         if (  (String(actualSpliced) == String(expectedSpliced))
127               &&(String(actualRemoved) != String(expectedRemoved)) )
128         {
129           if ( (expectedRemoved.length == 1)
130                &&(String(actualRemoved) == String(expectedRemoved[0]))) continue;
131           if ( expectedRemoved.length == 0 && actualRemoved == void 0) continue;
132         }
133
134         errorMessage =
135           "ERROR: 'TEST FAILED'\n" +
136           "             test: " + "a.splice(" + first + "," + len + ",-97,new String('test arg'),[],9.8)\n" +
137           "                a: " + String(testArray) + "\n" +
138           "   actual spliced: " + String(actualSpliced) + "\n" +
139           " expected spliced: " + String(expectedSpliced) + "\n" +
140           "   actual removed: " + String(actualRemoved) + "\n" +
141           " expected removed: " + String(expectedRemoved) + "\n";
142         writeHeaderToLog(errorMessage);
143         reason = reason + errorMessage;
144         passed = false;
145       }
146     }
147   }
148   var testcase = new TestCase( SECTION, testname, true, passed);
149   if (!passed)
150     testcase.reason = reason;
151   return testcase;
152 }