summaryrefslogtreecommitdiffstats
path: root/dom/bindings/parser/tests/test_incomplete_types.py
blob: 0d54f708bba72dea69bcd0354597770166ccfdcc (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
import WebIDL


def WebIDLTest(parser, harness):
    parser.parse(
        """
        interface TestIncompleteTypes {
          attribute FooInterface attr1;

          FooInterface method1(FooInterface arg);
        };

        interface FooInterface {
        };
    """
    )

    results = parser.finish()

    harness.ok(True, "TestIncompleteTypes interface parsed without error.")
    harness.check(len(results), 2, "Should be two productions.")
    iface = results[0]
    harness.ok(isinstance(iface, WebIDL.IDLInterface), "Should be an IDLInterface")
    harness.check(
        iface.identifier.QName(),
        "::TestIncompleteTypes",
        "Interface has the right QName",
    )
    harness.check(
        iface.identifier.name, "TestIncompleteTypes", "Interface has the right name"
    )
    harness.check(len(iface.members), 2, "Expect 2 members")

    attr = iface.members[0]
    harness.ok(isinstance(attr, WebIDL.IDLAttribute), "Should be an IDLAttribute")
    method = iface.members[1]
    harness.ok(isinstance(method, WebIDL.IDLMethod), "Should be an IDLMethod")

    harness.check(
        attr.identifier.QName(),
        "::TestIncompleteTypes::attr1",
        "Attribute has the right QName",
    )
    harness.check(
        attr.type.name, "FooInterface", "Previously unresolved type has the right name"
    )

    harness.check(
        method.identifier.QName(),
        "::TestIncompleteTypes::method1",
        "Attribute has the right QName",
    )
    (returnType, args) = method.signatures()[0]
    harness.check(
        returnType.name, "FooInterface", "Previously unresolved type has the right name"
    )
    harness.check(
        args[0].type.name,
        "FooInterface",
        "Previously unresolved type has the right name",
    )