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


def WebIDLTest(parser, harness):
    testData = [
        ("::TestAttr%s::b", "b", "Byte%s", False),
        ("::TestAttr%s::rb", "rb", "Byte%s", True),
        ("::TestAttr%s::o", "o", "Octet%s", False),
        ("::TestAttr%s::ro", "ro", "Octet%s", True),
        ("::TestAttr%s::s", "s", "Short%s", False),
        ("::TestAttr%s::rs", "rs", "Short%s", True),
        ("::TestAttr%s::us", "us", "UnsignedShort%s", False),
        ("::TestAttr%s::rus", "rus", "UnsignedShort%s", True),
        ("::TestAttr%s::l", "l", "Long%s", False),
        ("::TestAttr%s::rl", "rl", "Long%s", True),
        ("::TestAttr%s::ul", "ul", "UnsignedLong%s", False),
        ("::TestAttr%s::rul", "rul", "UnsignedLong%s", True),
        ("::TestAttr%s::ll", "ll", "LongLong%s", False),
        ("::TestAttr%s::rll", "rll", "LongLong%s", True),
        ("::TestAttr%s::ull", "ull", "UnsignedLongLong%s", False),
        ("::TestAttr%s::rull", "rull", "UnsignedLongLong%s", True),
        ("::TestAttr%s::str", "str", "String%s", False),
        ("::TestAttr%s::rstr", "rstr", "String%s", True),
        ("::TestAttr%s::obj", "obj", "Object%s", False),
        ("::TestAttr%s::robj", "robj", "Object%s", True),
        ("::TestAttr%s::object", "object", "Object%s", False),
        ("::TestAttr%s::f", "f", "Float%s", False),
        ("::TestAttr%s::rf", "rf", "Float%s", True),
    ]

    parser.parse(
        """
        interface TestAttr {
          attribute byte b;
          readonly attribute byte rb;
          attribute octet o;
          readonly attribute octet ro;
          attribute short s;
          readonly attribute short rs;
          attribute unsigned short us;
          readonly attribute unsigned short rus;
          attribute long l;
          readonly attribute long rl;
          attribute unsigned long ul;
          readonly attribute unsigned long rul;
          attribute long long ll;
          readonly attribute long long rll;
          attribute unsigned long long ull;
          readonly attribute unsigned long long rull;
          attribute DOMString str;
          readonly attribute DOMString rstr;
          attribute object obj;
          readonly attribute object robj;
          attribute object _object;
          attribute float f;
          readonly attribute float rf;
        };

        interface TestAttrNullable {
          attribute byte? b;
          readonly attribute byte? rb;
          attribute octet? o;
          readonly attribute octet? ro;
          attribute short? s;
          readonly attribute short? rs;
          attribute unsigned short? us;
          readonly attribute unsigned short? rus;
          attribute long? l;
          readonly attribute long? rl;
          attribute unsigned long? ul;
          readonly attribute unsigned long? rul;
          attribute long long? ll;
          readonly attribute long long? rll;
          attribute unsigned long long? ull;
          readonly attribute unsigned long long? rull;
          attribute DOMString? str;
          readonly attribute DOMString? rstr;
          attribute object? obj;
          readonly attribute object? robj;
          attribute object? _object;
          attribute float? f;
          readonly attribute float? rf;
        };
    """
    )

    results = parser.finish()

    def checkAttr(attr, QName, name, type, readonly):
        harness.ok(isinstance(attr, WebIDL.IDLAttribute), "Should be an IDLAttribute")
        harness.ok(attr.isAttr(), "Attr is an Attr")
        harness.ok(not attr.isMethod(), "Attr is not an method")
        harness.ok(not attr.isConst(), "Attr is not a const")
        harness.check(attr.identifier.QName(), QName, "Attr has the right QName")
        harness.check(attr.identifier.name, name, "Attr has the right name")
        harness.check(str(attr.type), type, "Attr has the right type")
        harness.check(attr.readonly, readonly, "Attr's readonly state is correct")

    harness.ok(True, "TestAttr 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(), "::TestAttr", "Interface has the right QName"
    )
    harness.check(iface.identifier.name, "TestAttr", "Interface has the right name")
    harness.check(
        len(iface.members), len(testData), "Expect %s members" % len(testData)
    )

    attrs = iface.members

    for i in range(len(attrs)):
        data = testData[i]
        attr = attrs[i]
        (QName, name, type, readonly) = data
        checkAttr(attr, QName % "", name, type % "", readonly)

    iface = results[1]
    harness.ok(isinstance(iface, WebIDL.IDLInterface), "Should be an IDLInterface")
    harness.check(
        iface.identifier.QName(), "::TestAttrNullable", "Interface has the right QName"
    )
    harness.check(
        iface.identifier.name, "TestAttrNullable", "Interface has the right name"
    )
    harness.check(
        len(iface.members), len(testData), "Expect %s members" % len(testData)
    )

    attrs = iface.members

    for i in range(len(attrs)):
        data = testData[i]
        attr = attrs[i]
        (QName, name, type, readonly) = data
        checkAttr(attr, QName % "Nullable", name, type % "OrNull", readonly)

    parser = parser.reset()
    threw = False
    try:
        parser.parse(
            """
          interface A {
            [SetterThrows] readonly attribute boolean foo;
          };
        """
        )
        results = parser.finish()
    except Exception:
        threw = True
    harness.ok(threw, "Should not allow [SetterThrows] on readonly attributes")

    parser = parser.reset()
    threw = False
    try:
        parser.parse(
            """
          interface A {
            [Throw] readonly attribute boolean foo;
          };
        """
        )
        results = parser.finish()
    except Exception:
        threw = True
    harness.ok(threw, "Should spell [Throws] correctly")

    parser = parser.reset()
    threw = False
    try:
        parser.parse(
            """
          interface A {
            [SameObject] readonly attribute boolean foo;
          };
        """
        )
        results = parser.finish()
    except Exception:
        threw = True
    harness.ok(
        threw, "Should not allow [SameObject] on attributes not of interface type"
    )

    parser = parser.reset()
    threw = False
    try:
        parser.parse(
            """
          interface A {
            [SameObject] readonly attribute A foo;
          };
        """
        )
        results = parser.finish()
    except Exception:
        threw = True
    harness.ok(not threw, "Should allow [SameObject] on attributes of interface type")