Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_3 / inherit / proto_4.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:          proto_4.js
42    Section:
43    Description:        new PrototypeObject
44
45    This tests Object Hierarchy and Inheritance, as described in the document
46    Object Hierarchy and Inheritance in JavaScript, last modified on 12/18/97
47    15:19:34 on http://devedge.netscape.com/.  Current URL:
48    http://devedge.netscape.com/docs/manuals/communicator/jsobj/contents.htm
49
50    This tests the syntax ObjectName.prototype = new PrototypeObject using the
51    Employee example in the document referenced above.
52
53    If you add a property to an object in the prototype chain, instances of
54    objects that derive from that prototype should inherit that property, even
55    if they were instatiated after the property was added to the prototype object.
56
57
58    Author:             christine@netscape.com
59    Date:               12 november 1997
60 */
61
62 var SECTION = "proto_3";
63 var VERSION = "JS1_3";
64 var TITLE   = "Adding properties to the prototype";
65
66 startTest();
67 writeHeaderToLog( SECTION + " "+ TITLE);
68
69 function Employee () {
70   this.name = "";
71   this.dept = "general";
72 }
73 function Manager () {
74   this.reports = [];
75 }
76 Manager.prototype = new Employee();
77
78 function WorkerBee () {
79   this.projects = new Array();
80 }
81
82 WorkerBee.prototype = new Employee();
83
84 function SalesPerson () {
85   this.dept = "sales";
86   this.quota = 100;
87 }
88 SalesPerson.prototype = new WorkerBee();
89
90 function Engineer () {
91   this.dept = "engineering";
92   this.machine = "";
93 }
94 Engineer.prototype = new WorkerBee();
95
96 var jim = new Employee();
97 var terry = new Engineer();
98 var sean = new SalesPerson();
99 var wally = new Manager();
100
101 Employee.prototype.specialty = "none";
102
103 var pat = new Employee();
104 var leslie = new Engineer();
105 var bubbles = new SalesPerson();
106 var furry = new Manager();
107
108 Engineer.prototype.specialty = "code";
109
110 var chris = new Engineer();
111
112
113 new TestCase( SECTION,
114               "jim = new Employee(); jim.specialty",
115               "none",
116               jim.specialty );
117
118 new TestCase( SECTION,
119               "terry = new Engineer(); terry.specialty",
120               "code",
121               terry.specialty );
122
123 new TestCase( SECTION,
124               "sean = new SalesPerson(); sean.specialty",
125               "none",
126               sean.specialty );
127
128 new TestCase( SECTION,
129               "wally = new Manager(); wally.specialty",
130               "none",
131               wally.specialty );
132
133 new TestCase( SECTION,
134               "furry = new Manager(); furry.specialty",
135               "none",
136               furry.specialty );
137
138 new TestCase( SECTION,
139               "pat = new Employee(); pat.specialty",
140               "none",
141               pat.specialty );
142
143 new TestCase( SECTION,
144               "leslie = new Engineer(); leslie.specialty",
145               "code",
146               leslie.specialty );
147
148 new TestCase( SECTION,
149               "bubbles = new SalesPerson(); bubbles.specialty",
150               "none",
151               bubbles.specialty );
152
153
154 new TestCase( SECTION,
155               "chris = new Employee(); chris.specialty",
156               "code",
157               chris.specialty );
158 test();