aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/codegen/parser/tests/test_constructor.py
blob: 83e1f4fc34f1bbb85cf7b025936309ff1303e7db (plain) (blame)
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
import WebIDL

def WebIDLTest(parser, harness):
    def checkArgument(argument, QName, name, type, optional, variadic):
        harness.ok(isinstance(argument, WebIDL.IDLArgument),
                   "Should be an IDLArgument")
        harness.check(argument.identifier.QName(), QName, "Argument has the right QName")
        harness.check(argument.identifier.name, name, "Argument has the right name")
        harness.check(str(argument.type), type, "Argument has the right return type")
        harness.check(argument.optional, optional, "Argument has the right optional value")
        harness.check(argument.variadic, variadic, "Argument has the right variadic value")

    def checkMethod(method, QName, name, signatures,
                    static=True, getter=False, setter=False, deleter=False,
                    legacycaller=False, stringifier=False, chromeOnly=False,
                    htmlConstructor=False, secureContext=False, pref=None, func=None):
        harness.ok(isinstance(method, WebIDL.IDLMethod),
                   "Should be an IDLMethod")
        harness.ok(method.isMethod(), "Method is a method")
        harness.ok(not method.isAttr(), "Method is not an attr")
        harness.ok(not method.isConst(), "Method is not a const")
        harness.check(method.identifier.QName(), QName, "Method has the right QName")
        harness.check(method.identifier.name, name, "Method has the right name")
        harness.check(method.isStatic(), static, "Method has the correct static value")
        harness.check(method.isGetter(), getter, "Method has the correct getter value")
        harness.check(method.isSetter(), setter, "Method has the correct setter value")
        harness.check(method.isDeleter(), deleter, "Method has the correct deleter value")
        harness.check(method.isLegacycaller(), legacycaller, "Method has the correct legacycaller value")
        harness.check(method.isStringifier(), stringifier, "Method has the correct stringifier value")
        harness.check(method.getExtendedAttribute("ChromeOnly") is not None, chromeOnly, "Method has the correct value for ChromeOnly")
        harness.check(method.isHTMLConstructor(), htmlConstructor, "Method has the correct htmlConstructor value")
        harness.check(len(method.signatures()), len(signatures), "Method has the correct number of signatures")
        harness.check(method.getExtendedAttribute("Pref"), pref, "Method has the correct pref value")
        harness.check(method.getExtendedAttribute("Func"), func, "Method has the correct func value")
        harness.check(method.getExtendedAttribute("SecureContext") is not None, secureContext, "Method has the correct SecureContext value")

        sigpairs = zip(method.signatures(), signatures)
        for (gotSignature, expectedSignature) in sigpairs:
            (gotRetType, gotArgs) = gotSignature
            (expectedRetType, expectedArgs) = expectedSignature

            harness.check(str(gotRetType), expectedRetType,
                          "Method has the expected return type.")

            for i in range(0, len(gotArgs)):
                (QName, name, type, optional, variadic) = expectedArgs[i]
                checkArgument(gotArgs[i], QName, name, type, optional, variadic)

    def checkResults(results):
        harness.check(len(results), 3, "Should be three productions")
        harness.ok(isinstance(results[0], WebIDL.IDLInterface),
                   "Should be an IDLInterface")
        harness.ok(isinstance(results[1], WebIDL.IDLInterface),
                   "Should be an IDLInterface")
        harness.ok(isinstance(results[2], WebIDL.IDLInterface),
                   "Should be an IDLInterface")

        checkMethod(results[0].ctor(), "::TestConstructorNoArgs::constructor",
                    "constructor", [("TestConstructorNoArgs (Wrapper)", [])])
        harness.check(len(results[0].members), 0,
                      "TestConstructorNoArgs should not have members")
        checkMethod(results[1].ctor(), "::TestConstructorWithArgs::constructor",
                    "constructor",
                    [("TestConstructorWithArgs (Wrapper)",
                      [("::TestConstructorWithArgs::constructor::name", "name", "String", False, False)])])
        harness.check(len(results[1].members), 0,
                      "TestConstructorWithArgs should not have members")
        checkMethod(results[2].ctor(), "::TestConstructorOverloads::constructor",
                    "constructor",
                    [("TestConstructorOverloads (Wrapper)",
                      [("::TestConstructorOverloads::constructor::foo", "foo", "Object", False, False)]),
                     ("TestConstructorOverloads (Wrapper)",
                      [("::TestConstructorOverloads::constructor::bar", "bar", "Boolean", False, False)])])
        harness.check(len(results[2].members), 0,
                      "TestConstructorOverloads should not have members")

    parser.parse("""
        interface TestConstructorNoArgs {
          constructor();
        };

        interface TestConstructorWithArgs {
          constructor(DOMString name);
        };

        interface TestConstructorOverloads {
          constructor(object foo);
          constructor(boolean bar);
        };
    """)
    results = parser.finish()
    checkResults(results)

    parser = parser.reset()
    parser.parse("""
        interface TestPrefConstructor {
            [Pref="dom.webidl.test1"] constructor();
        };
    """)
    results = parser.finish()
    harness.check(len(results), 1, "Should be one production")
    harness.ok(isinstance(results[0], WebIDL.IDLInterface),
               "Should be an IDLInterface")

    checkMethod(results[0].ctor(), "::TestPrefConstructor::constructor",
                "constructor", [("TestPrefConstructor (Wrapper)", [])],
                pref=["dom.webidl.test1"])

    parser = parser.reset()
    parser.parse("""
        interface TestChromeOnlyConstructor {
          [ChromeOnly] constructor();
        };
    """)
    results = parser.finish()
    harness.check(len(results), 1, "Should be one production")
    harness.ok(isinstance(results[0], WebIDL.IDLInterface),
               "Should be an IDLInterface")

    checkMethod(results[0].ctor(), "::TestChromeOnlyConstructor::constructor",
                "constructor", [("TestChromeOnlyConstructor (Wrapper)", [])],
                chromeOnly=True)

    parser = parser.reset()
    parser.parse("""
        interface TestSCConstructor {
            [SecureContext] constructor();
        };
    """)
    results = parser.finish()
    harness.check(len(results), 1, "Should be one production")
    harness.ok(isinstance(results[0], WebIDL.IDLInterface),
               "Should be an IDLInterface")

    checkMethod(results[0].ctor(), "::TestSCConstructor::constructor",
                "constructor", [("TestSCConstructor (Wrapper)", [])],
                secureContext=True)

    parser = parser.reset()
    parser.parse("""
        interface TestFuncConstructor {
            [Func="Document::IsWebAnimationsEnabled"] constructor();
        };
    """)
    results = parser.finish()
    harness.check(len(results), 1, "Should be one production")
    harness.ok(isinstance(results[0], WebIDL.IDLInterface),
               "Should be an IDLInterface")

    checkMethod(results[0].ctor(), "::TestFuncConstructor::constructor",
                "constructor", [("TestFuncConstructor (Wrapper)", [])],
                func=["Document::IsWebAnimationsEnabled"])

    parser = parser.reset()
    parser.parse("""
        interface TestPrefChromeOnlySCFuncConstructor {
            [ChromeOnly, Pref="dom.webidl.test1", SecureContext, Func="Document::IsWebAnimationsEnabled"]
            constructor();
        };
    """)
    results = parser.finish()
    harness.check(len(results), 1, "Should be one production")
    harness.ok(isinstance(results[0], WebIDL.IDLInterface),
               "Should be an IDLInterface")

    checkMethod(results[0].ctor(), "::TestPrefChromeOnlySCFuncConstructor::constructor",
                "constructor", [("TestPrefChromeOnlySCFuncConstructor (Wrapper)", [])],
                func=["Document::IsWebAnimationsEnabled"], pref=["dom.webidl.test1"],
                chromeOnly=True, secureContext=True)

    parser = parser.reset()
    parser.parse("""
        interface TestHTMLConstructor {
          [HTMLConstructor] constructor();
        };
    """)
    results = parser.finish()
    harness.check(len(results), 1, "Should be one production")
    harness.ok(isinstance(results[0], WebIDL.IDLInterface),
               "Should be an IDLInterface")

    checkMethod(results[0].ctor(), "::TestHTMLConstructor::constructor",
                "constructor", [("TestHTMLConstructor (Wrapper)", [])],
                htmlConstructor=True)

    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
        interface TestChromeOnlyConstructor {
          constructor()
          [ChromeOnly] constructor(DOMString a);
        };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw, "Can't have both a constructor and a ChromeOnly constructor")

    # Test HTMLConstructor with argument
    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface TestHTMLConstructorWithArgs {
              [HTMLConstructor] constructor(DOMString a);
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw, "HTMLConstructor should take no argument")

    # Test HTMLConstructor on a callback interface
    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            callback interface TestHTMLConstructorOnCallbackInterface {
              [HTMLConstructor] constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw, "HTMLConstructor can't be used on a callback interface")

    # Test HTMLConstructor and constructor operation
    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface TestHTMLConstructorAndConstructor {
              constructor();
              [HTMLConstructor] constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw, "Can't have both a constructor and a HTMLConstructor")

    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface TestHTMLConstructorAndConstructor {
              [Throws]
              constructor();
              [HTMLConstructor] constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw,
               "Can't have both a throwing constructor and a HTMLConstructor")

    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface TestHTMLConstructorAndConstructor {
              constructor(DOMString a);
              [HTMLConstructor] constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw,
               "Can't have both a HTMLConstructor and a constructor operation")

    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface TestHTMLConstructorAndConstructor {
              [Throws]
              constructor(DOMString a);
              [HTMLConstructor] constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw,
               "Can't have both a HTMLConstructor and a throwing constructor "
               "operation")

    # Test HTMLConstructor and [ChromeOnly] constructor operation
    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface TestHTMLConstructorAndConstructor {
              [ChromeOnly]
              constructor();
              [HTMLConstructor] constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw,
               "Can't have both a ChromeOnly constructor and a HTMLConstructor")

    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface TestHTMLConstructorAndConstructor {
              [Throws, ChromeOnly]
              constructor();
              [HTMLConstructor] constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw,
               "Can't have both a throwing chromeonly constructor and a "
               "HTMLConstructor")

    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface TestHTMLConstructorAndConstructor {
              [ChromeOnly]
              constructor(DOMString a);
              [HTMLConstructor] constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw,
               "Can't have both a HTMLConstructor and a chromeonly constructor "
               "operation")

    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface TestHTMLConstructorAndConstructor {
              [Throws, ChromeOnly]
              constructor(DOMString a);
              [HTMLConstructor] constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw,
               "Can't have both a HTMLConstructor and a throwing chromeonly "
               "constructor operation")

    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            [NoInterfaceObject]
            interface InterfaceWithoutInterfaceObject {
              constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw,
               "Can't have a constructor operation on a [NoInterfaceObject] "
               "interface")

    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface InterfaceWithPartial {
            };

            partial interface InterfaceWithPartial {
              constructor();
            };
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw,
               "Can't have a constructor operation on a partial interface")

    parser = parser.reset()
    threw = False
    try:
        parser.parse("""
            interface InterfaceWithMixin {
            };

            interface mixin Mixin {
              constructor();
            };

            InterfaceWithMixin includes Mixin
        """)
        results = parser.finish()
    except:
        threw = True

    harness.ok(threw,
               "Can't have a constructor operation on a mixin")