summaryrefslogtreecommitdiff
path: root/tests/scanner/annotationparser/gi/annotation_element_type.xml
blob: 65b3dd09f4bbb7ff4ebdf44ef6a81ef2bc110c76 (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
268
269
270
271
272
<?xml version="1.0" encoding="UTF-8"?>

<tests xmlns="http://schemas.gnome.org/gobject-introspection/2013/test">

<test>
  <input>/**
 * foo_test_array:
 * @a: (element-type):
 * @b: (element-type x y z):
 *
 * Returns: (element-type utf8) (transfer container): returns %NULL.
 */</input>
  <parser>
    <docblock>
      <identifier>
        <name>foo_test_array</name>
      </identifier>
      <parameters>
        <parameter>
          <name>a</name>
          <annotations>
            <annotation>
              <name>element-type</name>
            </annotation>
          </annotations>
        </parameter>
        <parameter>
          <name>b</name>
          <annotations>
            <annotation>
              <name>element-type</name>
              <options>
                <option>
                  <name>x</name>
                </option>
                <option>
                  <name>y</name>
                </option>
                <option>
                  <name>z</name>
                </option>
              </options>
            </annotation>
          </annotations>
        </parameter>
      </parameters>
      <tags>
        <tag>
          <name>returns</name>
          <annotations>
            <annotation>
              <name>element-type</name>
              <options>
                <option>
                  <name>utf8</name>
                </option>
              </options>
            </annotation>
            <annotation>
              <name>transfer</name>
              <options>
                <option>
                  <name>container</name>
                </option>
              </options>
            </annotation>
          </annotations>
          <description>returns %NULL.</description>
        </tag>
      </tags>
    </docblock>
    <messages>
      <message>3: Warning: Test: "element-type" annotation takes at least one option, none given</message>
      <message>4: Warning: Test: "element-type" annotation takes at most 2 options, 3 given</message>
    </messages>
  </parser>
  <output>/**
 * foo_test_array:
 * @a: (element-type):
 * @b: (element-type x y z):
 *
 * Returns: (element-type utf8) (transfer container): returns %NULL.
 */</output>
</test>

<test>
  <input>/**
 * RegressTestObj::sig-with-hash-prop:
 * @self: an object
 * @hash: (element-type utf8 GObject.Value):
 *
 * This test signal is like TelepathyGlib's
 *  TpAccount::status-changed
 */</input>
  <parser>
    <docblock>
      <identifier>
        <name>RegressTestObj::sig-with-hash-prop</name>
      </identifier>
      <parameters>
        <parameter>
          <name>self</name>
          <description>an object</description>
        </parameter>
        <parameter>
          <name>hash</name>
          <annotations>
            <annotation>
              <name>element-type</name>
              <options>
                <option>
                  <name>utf8</name>
                </option>
                <option>
                  <name>GObject.Value</name>
                </option>
              </options>
            </annotation>
          </annotations>
        </parameter>
      </parameters>
      <description>This test signal is like TelepathyGlib's
 TpAccount::status-changed</description>
    </docblock>
  </parser>
  <output>/**
 * RegressTestObj::sig-with-hash-prop:
 * @self: an object
 * @hash: (element-type utf8 GObject.Value):
 *
 * This test signal is like TelepathyGlib's
 *  TpAccount::status-changed
 */</output>
</test>

<test>
  <input><![CDATA[/**
 * regress_test_ghash_nested_everything_return2:
 *
 * Another way of specifying nested parameterized types: using the
 * element-type annotation.
 *
 * Return value: (element-type utf8 GLib.HashTable<utf8,utf8>) (transfer full):
 */]]></input>
  <parser>
    <docblock>
      <identifier>
        <name>regress_test_ghash_nested_everything_return2</name>
      </identifier>
      <description>Another way of specifying nested parameterized types: using the
element-type annotation.</description>
      <tags>
        <tag>
          <name>returns</name>
          <annotations>
            <annotation>
              <name>element-type</name>
              <options>
                <option>
                  <name>utf8</name>
                </option>
                <option>
                  <name>GLib.HashTable(utf8,utf8)</name>
                </option>
              </options>
            </annotation>
            <annotation>
              <name>transfer</name>
              <options>
                <option>
                  <name>full</name>
                </option>
              </options>
            </annotation>
          </annotations>
        </tag>
      </tags>
    </docblock>
  </parser>
  <output>/**
 * regress_test_ghash_nested_everything_return2:
 *
 * Another way of specifying nested parameterized types: using the
 * element-type annotation.
 *
 * Returns: (element-type utf8 GLib.HashTable(utf8,utf8)) (transfer full):
 */</output>
</test>

<test>
  <input> /**
  * foo_test_array:
  *
  * Returns: (element-type invalid utf8=invalid GLib.HashTable(utf8,utf8)): returns %NULL.
  */</input>
  <parser>
    <docblock>
      <identifier>
        <name>foo_test_array</name>
      </identifier>
      <tags>
        <tag>
          <name>returns</name>
          <annotations>
            <annotation>
              <name>element-type</name>
              <options>
                <option>
                  <name>invalid utf8=invalid GLib.HashTable(utf8,utf8)</name>
                </option>
              </options>
            </annotation>
          </annotations>
          <description>returns %NULL.</description>
        </tag>
      </tags>
    </docblock>
      <messages>
        <message>4: Warning: Test: invalid annotation options: expected a "list" but received "key=value pairs":
  * Returns: (element-type invalid utf8=invalid GLib.HashTable(utf8,utf8)): returns %NULL.
                                       ^</message>
    </messages>
  </parser>
  <output> /**
  * foo_test_array:
  *
  * Returns: (element-type invalid utf8=invalid GLib.HashTable(utf8,utf8)): returns %NULL.
  */</output>
</test>

<test>
  <input> /**
  * foo_test_array:
  *
  * Returns: (element-type utf8=invalid GLib.HashTable(utf8,utf8) invalid): returns %NULL.
  */</input>
  <parser>
    <docblock>
      <identifier>
        <name>foo_test_array</name>
      </identifier>
      <tags>
        <tag>
          <name>returns</name>
          <annotations>
            <annotation>
              <name>element-type</name>
              <options>
                <option>
                  <name>utf8=invalid GLib.HashTable(utf8,utf8) invalid</name>
                </option>
              </options>
            </annotation>
          </annotations>
          <description>returns %NULL.</description>
        </tag>
      </tags>
    </docblock>
      <messages>
        <message>4: Warning: Test: invalid annotation options: expected a "list" but received "key=value pairs":
  * Returns: (element-type utf8=invalid GLib.HashTable(utf8,utf8) invalid): returns %NULL.
                               ^</message>
    </messages>
  </parser>
  <output> /**
  * foo_test_array:
  *
  * Returns: (element-type utf8=invalid GLib.HashTable(utf8,utf8) invalid): returns %NULL.
  */</output>
</test>

</tests>