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
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/
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
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
23 * pschwartau@netscape.com
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.
37 * ***** END LICENSE BLOCK ***** */
42 * SUMMARY: Testing obj.prop getter/setter
43 * Note: this is a non-ECMA extension to the language.
45 //-----------------------------------------------------------------------------
46 var gTestfile
= 'getset-003.js';
48 var BUGNUMBER
= '(none)';
49 var summary
= 'Testing obj.prop getter/setter';
50 var statprefix
= 'Status: ';
52 var statusitems
= [ ];
54 var actualvalues
= [ ];
56 var expectedvalues
= [ ];
57 var cnDEFAULT
= 'default name';
64 // SECTION1: define getter/setter directly on an object (not its prototype)
68 obj
.name
setter = function(newValue
) {this._name
=newValue
; this.nameSETS
++;}
69 obj
.name
getter = function() {this.nameGETS
++; return this._name
;}
71 status
= 'In SECTION1 of test after 0 sets, 0 gets';
72 actual
= [obj
.nameSETS
,obj
.nameGETS
];
77 status
= 'In SECTION1 of test after 0 sets, 1 get';
78 actual
= [obj
.nameSETS
,obj
.nameGETS
];
83 status
= 'In SECTION1 of test after 1 set, 1 get';
84 actual
= [obj
.nameSETS
,obj
.nameGETS
];
89 status
= 'In SECTION1 of test after 2 sets, 2 gets';
90 actual
= [obj
.nameSETS
,obj
.nameGETS
];
95 // SECTION2: define getter/setter in Object.prototype
96 Object
.prototype.nameSETS
= 0;
97 Object
.prototype.nameGETS
= 0;
98 Object
.prototype.name
setter = function(newValue
) {this._name
=newValue
; this.nameSETS
++;}
99 Object
.prototype.name
getter = function() {this.nameGETS
++; return this._name
;}
102 status
= 'In SECTION2 of test after 0 sets, 0 gets';
103 actual
= [obj
.nameSETS
,obj
.nameGETS
];
108 status
= 'In SECTION2 of test after 0 sets, 1 get';
109 actual
= [obj
.nameSETS
,obj
.nameGETS
];
114 status
= 'In SECTION2 of test after 1 set, 1 get';
115 actual
= [obj
.nameSETS
,obj
.nameGETS
];
120 status
= 'In SECTION2 of test after 2 sets, 2 gets';
121 actual
= [obj
.nameSETS
,obj
.nameGETS
];
126 // SECTION 3: define getter/setter in prototype of user-defined constructor
127 function TestObject()
130 TestObject
.prototype.nameSETS
= 0;
131 TestObject
.prototype.nameGETS
= 0;
132 TestObject
.prototype.name
setter = function(newValue
) {this._name
=newValue
; this.nameSETS
++;}
133 TestObject
.prototype.name
getter = function() {this.nameGETS
++; return this._name
;}
134 TestObject
.prototype.name
= cnDEFAULT
;
136 obj
= new TestObject();
137 status
= 'In SECTION3 of test after 1 set, 0 gets'; // (we set a default value in the prototype)
138 actual
= [obj
.nameSETS
,obj
.nameGETS
];
143 status
= 'In SECTION3 of test after 1 set, 1 get';
144 actual
= [obj
.nameSETS
,obj
.nameGETS
];
149 status
= 'In SECTION3 of test after 2 sets, 1 get';
150 actual
= [obj
.nameSETS
,obj
.nameGETS
];
155 status
= 'In SECTION3 of test after 3 sets, 2 gets';
156 actual
= [obj
.nameSETS
,obj
.nameGETS
];
160 obj2
= new TestObject();
161 status
= 'obj2 = new TestObject() after 1 set, 0 gets';
162 actual
= [obj2
.nameSETS
,obj2
.nameGETS
];
163 expect
= [1,0]; // we set a default value in the prototype -
166 // Use both obj and obj2 -
167 obj2
.name
= obj
.name
+ obj2
.name
;
168 status
= 'obj2 = new TestObject() after 2 sets, 1 get';
169 actual
= [obj2
.nameSETS
,obj2
.nameGETS
];
173 status
= 'In SECTION3 of test after 3 sets, 3 gets';
174 actual
= [obj
.nameSETS
,obj
.nameGETS
];
175 expect
= [3,3]; // we left off at [3,2] above -
179 //---------------------------------------------------------------------------------
181 //---------------------------------------------------------------------------------
186 statusitems
[UBound
] = status
;
187 actualvalues
[UBound
] = actual
.toString();
188 expectedvalues
[UBound
] = expect
.toString();
196 printBugNumber(BUGNUMBER
);
197 printStatus (summary
);
199 for (var i
= 0; i
< UBound
; i
++)
201 reportCompare(expectedvalues
[i
], actualvalues
[i
], getStatus(i
));
208 function getStatus(i
)
210 return statprefix
+ statusitems
[i
];