Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / e4x / shell.js
1 /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2  *
3  * ***** BEGIN LICENSE BLOCK *****
4  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5  *
6  * The contents of this file are subject to the Mozilla Public License Version
7  * 1.1 (the "License"); you may not use this file except in compliance with
8  * the License. You may obtain a copy of the License at
9  * http://www.mozilla.org/MPL/
10  *
11  * Software distributed under the License is distributed on an "AS IS" basis,
12  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13  * for the specific language governing rights and limitations under the
14  * License.
15  *
16  * The Original Code is Rhino code, released
17  * May 6, 1999.
18  *
19  * The Initial Developer of the Original Code is
20  * Netscape Communications Corporation.
21  * Portions created by the Initial Developer are Copyright (C) 1997-2000
22  * the Initial Developer. All Rights Reserved.
23  *
24  * Contributor(s):
25  *   Igor Bukanov
26  *   Rob Ginda rginda@netscape.com
27  *
28  * Alternatively, the contents of this file may be used under the terms of
29  * either the GNU General Public License Version 2 or later (the "GPL"), or
30  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
31  * in which case the provisions of the GPL or the LGPL are applicable instead
32  * of those above. If you wish to allow use of your version of this file only
33  * under the terms of either the GPL or the LGPL, and not to allow others to
34  * use your version of this file under the terms of the MPL, indicate your
35  * decision by deleting the provisions above and replace them with the notice
36  * and other provisions required by the GPL or the LGPL. If you do not delete
37  * the provisions above, a recipient may use your version of this file under
38  * the terms of any one of the MPL, the GPL or the LGPL.
39  *
40  * ***** END LICENSE BLOCK ***** */
41
42
43 /*
44  * Report a failure in the 'accepted' manner
45  */
46 function reportFailure (section, msg)
47 {
48     msg = inSection(section)+"\n"+msg;
49     var lines = msg.split ("\n");
50     for (var i=0; i<lines.length; i++)
51         print (FAILED + lines[i]);
52 }
53
54 function START(summary)
55 {
56     SUMMARY = summary;
57     printStatus(summary);
58 }
59
60 function TEST(section, expected, actual)
61 {
62     var expected_t = typeof expected;
63     var actual_t = typeof actual;
64     var output = "";
65    
66     SECTION = section;
67     EXPECTED = expected;
68     ACTUAL = actual;
69
70     return reportCompare(expected, actual, inSection(section) + SUMMARY);
71 }
72
73 function TEST_XML(section, expected, actual)
74 {
75     var actual_t = typeof actual;
76     var expected_t = typeof expected;
77
78     SECTION = section;
79     EXPECTED = expected;
80     ACTUAL = actual;
81
82     if (actual_t != "xml") {
83         // force error on type mismatch
84         return TEST(section, new XML(), actual);
85     }
86  
87     if (expected_t == "string") {
88         return TEST(section, expected, actual.toXMLString());
89     }
90
91     if (expected_t == "number") {
92         return TEST(section, String(expected), actual.toXMLString());
93     }
94  
95     throw section + ": Bad TEST_XML usage: type of expected is " +
96         expected_t + ", should be number or string";
97
98     // suppress warning
99     return false;
100 }
101
102 function SHOULD_THROW(section)
103 {
104     TEST(section, "exception", "no exception");
105 }
106
107 function END()
108 {
109 }
110
111 if (typeof options == 'function')
112 {
113   options('xml');
114 }