author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 41841 | nashorn/test/script/basic/jsadapter.js@7e66ae6baf2d |
permissions | -rw-r--r-- |
16147 | 1 |
/* |
32939
9887198000ec
8139038: cleanup and documentation around JSAdapter
mhaupt
parents:
24778
diff
changeset
|
2 |
* Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved. |
16147 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
4 |
* |
16147 | 5 |
* This code is free software; you can redistribute it and/or modify it |
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
8 |
* |
16147 | 9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
14 |
* |
16147 | 15 |
* You should have received a copy of the GNU General Public License version |
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
18 |
* |
16147 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
*/ |
|
23 |
||
24 |
/** |
|
25 |
* Verify that JSAdapter works as expected. |
|
26 |
* |
|
27 |
* @test |
|
28 |
* @run |
|
29 |
*/ |
|
30 |
||
31 |
var obj = new JSAdapter() { |
|
32 |
__get__: function(name) { |
|
41841
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
33 |
Assert.assertTrue(this === obj); |
16147 | 34 |
print("getter called for '" + name + "'"); return name; |
35 |
}, |
|
36 |
||
37 |
__put__: function(name, value) { |
|
41841
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
38 |
Assert.assertTrue(this === obj); |
16147 | 39 |
print("setter called for '" + name + "' with " + value); |
40 |
}, |
|
41 |
||
42 |
__call__: function(name, arg1, arg2) { |
|
41841
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
43 |
Assert.assertTrue(this === obj); |
16147 | 44 |
print("method '" + name + "' called with " + arg1 + ", " + arg2); |
45 |
}, |
|
46 |
||
47 |
__new__: function(arg1, arg2) { |
|
41841
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
48 |
Assert.assertTrue(this === obj); |
16147 | 49 |
print("new with " + arg1 + ", " + arg2); |
50 |
}, |
|
51 |
||
32939
9887198000ec
8139038: cleanup and documentation around JSAdapter
mhaupt
parents:
24778
diff
changeset
|
52 |
__getKeys__: function() { |
41841
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
53 |
Assert.assertTrue(this === obj); |
32939
9887198000ec
8139038: cleanup and documentation around JSAdapter
mhaupt
parents:
24778
diff
changeset
|
54 |
print("__getKeys__ called"); |
16147 | 55 |
return [ "foo", "bar" ]; |
56 |
}, |
|
57 |
||
58 |
__getValues__: function() { |
|
41841
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
59 |
Assert.assertTrue(this === obj); |
16147 | 60 |
print("__getValues__ called"); |
61 |
return [ "fooval", "barval" ]; |
|
62 |
}, |
|
63 |
||
64 |
__has__: function(name) { |
|
41841
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
65 |
Assert.assertTrue(this === obj); |
16147 | 66 |
print("__has__ called with '" + name + "'"); |
67 |
return name == "js"; |
|
68 |
}, |
|
69 |
||
70 |
__delete__: function(name) { |
|
41841
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
71 |
Assert.assertTrue(this === obj); |
16147 | 72 |
print("__delete__ called with '" + name + "'"); |
73 |
return true; |
|
41841
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
74 |
}, |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
75 |
|
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
76 |
__preventExtensions__ : function() { |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
77 |
Assert.assertTrue(this === obj); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
78 |
print("__preventExtensions__ called"); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
79 |
}, |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
80 |
|
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
81 |
__freeze__ : function() { |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
82 |
Assert.assertTrue(this === obj); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
83 |
print("__freeze__ called"); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
84 |
|
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
85 |
}, |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
86 |
|
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
87 |
__isFrozen__ : function() { |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
88 |
Assert.assertTrue(this === obj); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
89 |
print("__isFrozen__ called"); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
90 |
return false; |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
91 |
}, |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
92 |
|
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
93 |
__seal__ : function() { |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
94 |
Assert.assertTrue(this === obj); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
95 |
print("__seal__ called"); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
96 |
}, |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
97 |
|
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
98 |
__isSealed__ : function() { |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
99 |
Assert.assertTrue(this === obj); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
100 |
print("__isSealed__ called"); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
101 |
return false; |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
102 |
}, |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
103 |
|
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
104 |
__isExtensible__ : function() { |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
105 |
Assert.assertTrue(this === obj); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
106 |
print("__isExtensible__ called"); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
107 |
return true; |
16147 | 108 |
} |
109 |
}; |
|
110 |
||
111 |
// calls __get__ |
|
112 |
print(obj.foo); |
|
113 |
||
114 |
// calls __put__ |
|
115 |
obj.foo = 33; |
|
116 |
||
117 |
// calls __call__ |
|
118 |
obj.func("hello", "world"); |
|
119 |
||
120 |
// calls __new__ |
|
121 |
new obj("hey!", "it works!"); |
|
122 |
||
32939
9887198000ec
8139038: cleanup and documentation around JSAdapter
mhaupt
parents:
24778
diff
changeset
|
123 |
// calls __getKeys__ |
16147 | 124 |
for (i in obj) { |
125 |
print(i); |
|
126 |
} |
|
127 |
||
32939
9887198000ec
8139038: cleanup and documentation around JSAdapter
mhaupt
parents:
24778
diff
changeset
|
128 |
// calls __getValues__ |
16147 | 129 |
for each (i in obj) { |
130 |
print(i); |
|
131 |
} |
|
132 |
||
32939
9887198000ec
8139038: cleanup and documentation around JSAdapter
mhaupt
parents:
24778
diff
changeset
|
133 |
// calls __has__ |
16147 | 134 |
var x = "foo" in obj; |
135 |
print(x); |
|
136 |
||
32939
9887198000ec
8139038: cleanup and documentation around JSAdapter
mhaupt
parents:
24778
diff
changeset
|
137 |
// calls __has__ |
16147 | 138 |
var y = "js" in obj; |
139 |
print(y); |
|
140 |
||
32939
9887198000ec
8139038: cleanup and documentation around JSAdapter
mhaupt
parents:
24778
diff
changeset
|
141 |
// calls __delete__ |
16147 | 142 |
print(delete obj.prop); |
143 |
||
32939
9887198000ec
8139038: cleanup and documentation around JSAdapter
mhaupt
parents:
24778
diff
changeset
|
144 |
// call __get__ and __set__ |
16147 | 145 |
print(obj["js"]); |
146 |
obj["js"] = "javascript"; |
|
147 |
print(obj["javascript"]); |
|
41841
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
148 |
|
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
149 |
// call __isExtensible__, __isSealed__, __isFrozen__ |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
150 |
print(Object.isExtensible(obj)); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
151 |
print(Object.isSealed(obj)); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
152 |
print(Object.isFrozen(obj)); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
153 |
|
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
154 |
// call __freeze__, __seal__, __preventExtensions__ |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
155 |
Object.freeze(obj); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
156 |
Object.seal(obj); |
7e66ae6baf2d
8148924: Inconsistent "this" context in JSAdapter adaptee function calls
hannesw
parents:
32939
diff
changeset
|
157 |
Object.preventExtensions(obj); |