summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/expressions/object-literal-__proto__.js
blob: 531ef7fc5cc1cedd5ccd3ba162b6550edd883e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/

//-----------------------------------------------------------------------------
var BUGNUMBER = 1061853;
var summary =
  "__proto__ in object literals in non-__proto__:v contexts doesn't modify " +
  "[[Prototype]]";

print(BUGNUMBER + ": " + summary);

/**************
 * BEGIN TEST *
 **************/

function hasOwn(obj, prop)
{
  return Object.getOwnPropertyDescriptor(obj, prop) !== undefined;
}

var objectStart = "{ ";
var objectEnd = " }";

var members =
  {
    nullProto: "__proto__: null",
    functionProtoProto: "__proto__: Function.prototype",
    computedNull:  "['__proto__']: null",
    method: "__proto__() {}",
    computedMethod: "['__proto__']() {}",
    generatorMethod: "*__proto__() {}",
    computedGenerator: "*['__proto__']() {}",
    shorthand: "__proto__",
    getter: "get __proto__() { return 42; }",
    getterComputed: "get ['__proto__']() { return 42; }",
    setter: "set __proto__(v) { }",
    setterComputed: "set ['__proto__'](v) { }",
  };

function isProtoMutation(key)
{
  return key === "nullProto" || key === "functionProtoProto";
}

function isGetter(key)
{
  return key === "getter" || key === "getterComputed";
}

function isSetter(key)
{
  return key === "setter" || key === "setterComputed";
}

function isData(key)
{
  return !isProtoMutation(key) && !isGetter(key) && !isSetter(key);
}

var __proto__ = "string value";

function typeOfProto(key)
{
  if (key === "computedNull")
    return "object";
  if (key === "method" || key === "computedMethod" ||
      key === "computedGenerator" || key === "generatorMethod")
  {
    return "function";
  }
  if (key === "getter" || key === "getterComputed")
    return "number";
  assertEq(key, "shorthand", "bug in test!");
  return "string";
}

for (var first in members)
{
  var fcode = "return " + objectStart + members[first] + objectEnd;
  var f = Function(fcode);
  var oneProp = f();

  if (first === "nullProto")
  {
    assertEq(Object.getPrototypeOf(oneProp), null);
    assertEq(hasOwn(oneProp, "__proto__"), false);
  }
  else if (first === "functionProtoProto")
  {
    assertEq(Object.getPrototypeOf(oneProp), Function.prototype);
    assertEq(hasOwn(oneProp, "__proto__"), false);
  }
  else if (isSetter(first))
  {
    assertEq(Object.getPrototypeOf(oneProp), Object.prototype);
    assertEq(hasOwn(oneProp, "__proto__"), true);
    assertEq(typeof Object.getOwnPropertyDescriptor(oneProp, "__proto__").set,
             "function");
  }
  else
  {
    assertEq(Object.getPrototypeOf(oneProp), Object.prototype);
    assertEq(hasOwn(oneProp, "__proto__"), true);
    assertEq(typeof oneProp.__proto__, typeOfProto(first));
  }

  for (var second in members)
  {
    try
    {
      var gcode = "return " + objectStart + members[first] + ", " +
                                            members[second] + objectEnd;
      var g = Function(gcode);
    }
    catch (e)
    {
      assertEq(e instanceof SyntaxError, true,
               "__proto__ member conflicts should be syntax errors, got " + e);
      assertEq(+(first === "nullProto" || first === "functionProtoProto") +
               +(second === "nullProto" || second === "functionProtoProto") > 1,
               true,
               "unexpected conflict between members: " + first + ", " + second);
      continue;
    }

    var twoProps = g();

    if (first === "nullProto" || second === "nullProto")
      assertEq(Object.getPrototypeOf(twoProps), null);
    else if (first === "functionProtoProto" || second === "functionProtoProto")
      assertEq(Object.getPrototypeOf(twoProps), Function.prototype);
    else
      assertEq(Object.getPrototypeOf(twoProps), Object.prototype);

    if (isSetter(second))
    {
      assertEq(hasOwn(twoProps, "__proto__"), true);
      assertEq(typeof Object.getOwnPropertyDescriptor(twoProps, "__proto__").get,
               isGetter(first) ? "function" : "undefined");
    }
    else if (!isProtoMutation(second))
    {
      assertEq(hasOwn(twoProps, "__proto__"), true);
      assertEq(typeof twoProps.__proto__, typeOfProto(second));
      if (isGetter(second))
      {
        assertEq(typeof Object.getOwnPropertyDescriptor(twoProps, "__proto__").get,
                 "function");
        assertEq(typeof Object.getOwnPropertyDescriptor(twoProps, "__proto__").set,
                 isSetter(first) ? "function" : "undefined");
      }
    }
    else if (isSetter(first))
    {
      assertEq(hasOwn(twoProps, "__proto__"), true);
      assertEq(typeof Object.getOwnPropertyDescriptor(twoProps, "__proto__").set,
               "function");
      assertEq(typeof Object.getOwnPropertyDescriptor(twoProps, "__proto__").get,
               "undefined");
    }
    else if (!isProtoMutation(first))
    {
      assertEq(hasOwn(twoProps, "__proto__"), true);
      assertEq(typeof twoProps.__proto__, typeOfProto(first));
    }
    else
    {
      assertEq(true, false, "should be unreachable: " + first + ", " + second);
    }

    for (var third in members)
    {
      try
      {
        var hcode = "return " + objectStart + members[first] + ", " +
                                              members[second] + ", " +
                                              members[third] + objectEnd;
        var h = Function(hcode);
      }
      catch (e)
      {
        assertEq(e instanceof SyntaxError, true,
                 "__proto__ member conflicts should be syntax errors, got " + e);
        assertEq(+(first === "nullProto" || first === "functionProtoProto") +
                 +(second === "nullProto" || second === "functionProtoProto") +
                 +(third === "nullProto" || third === "functionProtoProto") > 1,
                 true,
                 "unexpected conflict among members: " +
                 first + ", " + second + ", " + third);
        continue;
      }

      var threeProps = h();

      if (first === "nullProto" || second === "nullProto" ||
          third === "nullProto")
      {
        assertEq(Object.getPrototypeOf(threeProps), null);
      }
      else if (first === "functionProtoProto" ||
               second === "functionProtoProto" ||
               third === "functionProtoProto")
      {
        assertEq(Object.getPrototypeOf(threeProps), Function.prototype);
      }
      else
      {
        assertEq(Object.getPrototypeOf(threeProps), Object.prototype);
      }

      if (isSetter(third))
      {
        assertEq(hasOwn(threeProps, "__proto__"), true);
        assertEq(typeof Object.getOwnPropertyDescriptor(threeProps, "__proto__").get,
                 isGetter(second) || (!isData(second) && isGetter(first))
                 ? "function"
                 : "undefined",
                 "\n" + hcode);
      }
      else if (!isProtoMutation(third))
      {
        assertEq(hasOwn(threeProps, "__proto__"), true);
        assertEq(typeof threeProps.__proto__, typeOfProto(third), first + ", " + second + ", " +  third);
        if (isGetter(third))
        {
          var desc = Object.getOwnPropertyDescriptor(threeProps, "__proto__");
          assertEq(typeof desc.get, "function");
          assertEq(typeof desc.set,
                   isSetter(second) || (!isData(second) && isSetter(first))
                   ? "function"
                   : "undefined");
        }
      }
      else if (isSetter(second))
      {
        assertEq(hasOwn(threeProps, "__proto__"), true);
        assertEq(typeof Object.getOwnPropertyDescriptor(threeProps, "__proto__").get,
                 isGetter(first) ? "function" : "undefined");
      }
      else if (!isProtoMutation(second))
      {
        assertEq(hasOwn(threeProps, "__proto__"), true);
        assertEq(typeof threeProps.__proto__, typeOfProto(second));
        if (isGetter(second))
        {
          var desc = Object.getOwnPropertyDescriptor(threeProps, "__proto__");
          assertEq(typeof desc.get, "function");
          assertEq(typeof desc.set,
                   isSetter(first) ? "function" : "undefined");
        }
      }
      else
      {
        assertEq(true, false,
                 "should be unreachable: " +
                 first + ", " + second + ", " + third);
      }
    }
  }
}

/******************************************************************************/

if (typeof reportCompare === "function")
  reportCompare(true, true);

print("Tests complete");