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
|
<?php
namespace SMW\Tests;
use SMW\Tests\Util\SemanticDataValidator;
use SMW\SubobjectParserFunction;
use SMW\Subobject;
use SMW\ParserParameterFormatter;
use SMW\MessageFormatter;
use SMW\ParserData;
use SMW\DIProperty;
use SMWDataItem;
use Title;
use ParserOutput;
/**
* @covers \SMW\SubobjectParserFunction
*
* @ingroup Test
*
* @group SMW
* @group SMWExtension
*
* @license GNU GPL v2+
* @since 1.9
*
* @author mwjames
*/
class SubobjectParserFunctionTest extends \PHPUnit_Framework_TestCase {
public function testCanConstruct() {
$subobject = new Subobject( Title::newFromText( __METHOD__ ) );
$parserData = $this->getMockBuilder( '\SMW\ParserData' )
->disableOriginalConstructor()
->getMock();
$messageFormatter = $this->getMockBuilder( '\SMW\MessageFormatter' )
->disableOriginalConstructor()
->getMock();
$this->assertInstanceOf(
'\SMW\SubobjectParserFunction',
new SubobjectParserFunction(
$parserData,
$subobject,
$messageFormatter
)
);
}
/**
* @dataProvider parameterDataProvider
*/
public function testParse( array $parameters, array $expected ) {
$subobject = new Subobject( Title::newFromText( __METHOD__ ) );
$instance = $this->acquireInstance( $subobject );
$result = $instance->parse( new ParserParameterFormatter( $parameters ) );
$this->assertEquals(
$result !== '' ,
$expected['hasErrors']
);
}
/**
* @dataProvider parameterDataProvider
*/
public function testInstantiatedSubobject( array $parameters, array $expected ) {
$subobject = new Subobject( Title::newFromText( __METHOD__ ) );
$instance = $this->acquireInstance( $subobject );
$instance->parse( new ParserParameterFormatter( $parameters ) );
$this->assertContains(
$expected['identifier'],
$subobject->getId()
);
}
/**
* @dataProvider firstElementDataProvider
*/
public function testFirstElementAsProperty( $isEnabled , array $parameters, array $expected ) {
$parserOutput = new ParserOutput();
$title = Title::newFromText( __METHOD__ );
$subobject = new Subobject( $title );
$instance = $this->acquireInstance( $subobject, $parserOutput );
$instance->setFirstElementAsProperty( $isEnabled );
$instance->parse( new ParserParameterFormatter( $parameters ) );
// If it is enabled only check for the first character {0} that should
// contain '_' as the rest is going to be an unknown hash value
$id = $subobject->getId();
$this->assertEquals( $expected['identifier'], $isEnabled ? $id{0} : $id );
$parserData = new ParserData( $title, $parserOutput );
// Add generated title text as property value due to the auto reference
// setting
$expected['propertyValues'][] = $title->getText();
$semanticDataValidator = new SemanticDataValidator;
foreach ( $parserData->getSemanticData()->getSubSemanticData() as $containerSemanticData ){
$semanticDataValidator->assertThatPropertiesAreSet(
$expected,
$containerSemanticData
);
}
}
/**
* @dataProvider parameterDataProvider
*/
public function testInstantiatedPropertyValues( array $parameters, array $expected ) {
$this->setupInstanceAndAssertSemanticData(
$parameters,
$expected
);
}
/**
* @dataProvider sortKeyProvider
*/
public function testSortKeyAnnotation( array $parameters, array $expected ) {
$this->setupInstanceAndAssertSemanticData(
$parameters,
$expected
);
}
protected function setupInstanceAndAssertSemanticData( array $parameters, array $expected ) {
$parserOutput = new ParserOutput();
$title = Title::newFromText( __METHOD__ );
$subobject = new Subobject( $title );
$instance = $this->acquireInstance(
$subobject,
$parserOutput
);
$instance->parse( new ParserParameterFormatter( $parameters ) );
$parserData = new ParserData(
$title,
$parserOutput
);
$subSemanticData = $parserData->getSemanticData()->getSubSemanticData();
$semanticDataValidator = new SemanticDataValidator();
foreach ( $subSemanticData as $actualSemanticDataToAssert ){
$semanticDataValidator->assertThatPropertiesAreSet(
$expected,
$actualSemanticDataToAssert
);
}
}
public function parameterDataProvider() {
$provider = array();
// Anonymous identifier
// {{#subobject:
// |Foo=bar
// }}
$provider[] = array(
array( '', 'Foo=bar' ),
array(
'hasErrors' => false,
'identifier' => '_',
'propertyCount' => 1,
'propertyLabels' => 'Foo',
'propertyValues' => 'Bar'
)
);
// Anonymous identifier
// {{#subobject:-
// |Foo=1001 9009
// }}
$provider[] = array(
array( '-', 'Foo=1001 9009' ),
array(
'hasErrors' => false,
'identifier' => '_',
'propertyCount' => 1,
'propertyLabels' => 'Foo',
'propertyValues' => '1001 9009'
)
);
// Named identifier
// {{#subobject:FooBar
// |FooBar=Bar foo
// }}
$provider[] = array(
array( 'FooBar', 'FooBar=Bar foo' ),
array(
'hasErrors' => false,
'identifier' => 'FooBar',
'propertyCount' => 1,
'propertyLabels' => 'FooBar',
'propertyValues' => 'Bar foo'
)
);
// Named identifier
// {{#subobject:Foo bar
// |Foo=Help:Bar
// }}
$provider[] = array(
array( 'Foo bar', 'Foo=Help:Bar' ),
array(
'hasErrors' => false,
'identifier' => 'Foo_bar',
'propertyCount' => 1,
'propertyLabels' => 'Foo',
'propertyValues' => 'Help:Bar'
)
);
// Named identifier
// {{#subobject: Foo bar foo
// |Bar=foo Bar
// }}
$provider[] = array(
array( ' Foo bar foo ', 'Bar=foo Bar' ),
array(
'hasErrors' => false,
'identifier' => 'Foo_bar_foo',
'propertyCount' => 1,
'propertyLabels' => 'Bar',
'propertyValues' => 'Foo Bar'
)
);
// Named identifier
// {{#subobject: Foo bar foo
// |状況=超やばい
// |Bar=http://www.semantic-mediawiki.org/w/index.php?title=Subobject
// }}
$provider[] = array(
array(
' Foo bar foo ',
'状況=超やばい',
'Bar=http://www.semantic-mediawiki.org/w/index.php?title=Subobject' ),
array(
'hasErrors' => false,
'identifier' => 'Foo_bar_foo',
'propertyCount' => 2,
'propertyLabels' => array( '状況', 'Bar' ),
'propertyValues' => array( '超やばい', 'Http://www.semantic-mediawiki.org/w/index.php?title=Subobject' )
)
);
// Returns an error due to wrong declaration (see Modification date)
// Get the right language for an error object
$diPropertyError = new DIProperty( DIProperty::TYPE_ERROR );
// {{#subobject: Foo bar foo
// |Bar=foo Bar
// |Modification date=foo Bar
// }}
$provider[] = array(
array( ' Foo bar foo ', 'Bar=foo Bar', 'Modification date=foo Bar' ),
array(
'hasErrors' => true,
'identifier' => 'Foo_bar_foo',
'propertyCount' => 2,
'propertyLabels' => array( 'Bar', $diPropertyError->getLabel() ),
'propertyValues' => array( 'Foo Bar', 'Modification date' )
)
);
return $provider;
}
public function firstElementDataProvider() {
$provider = array();
// #0 / asserting that a named identifier was turned into an anonymous id
// {{#subobject: Foo bar foo
// |Bar=foo Bar
// }}
$provider[] = array(
true,
array( ' Foo bar foo ', 'Bar=foo Bar' ),
array(
'hasErrors' => false,
'identifier' => '_',
'propertyCount' => 2,
'propertyLabels' => array( 'Bar', 'Foo bar foo' ),
'propertyValues' => array( 'Foo Bar' ) // additional value is added during runtime
)
);
// #1 / asserting the validity of the named identifier
// {{#subobject: Foo bar foo
// |Bar=foo Bar
// }}
$provider[] = array(
false,
array( ' Foo bar foo ', 'Bar=foo Bar' ),
array(
'hasErrors' => false,
'identifier' => 'Foo_bar_foo',
'propertyCount' => 1,
'propertyLabels' => array( 'Bar' ),
'propertyValues' => array( 'Foo Bar' )
)
);
return $provider;
}
public function sortKeyProvider() {
$provider = array();
// #0 @sortkey
// {{#subobject:
// |Bar=foo Bar
// |@sortkey=9999
// }}
$provider[] = array(
array(
'Bar=foo Bar',
'@sortkey=9999'
),
array(
'propertyCount' => 2,
'properties' => array(
new DIProperty( 'Bar' ),
new DIProperty( '_SKEY' )
),
'propertyValues' => array(
'Foo Bar',
'9999'
)
)
);
// #1 @sortkey being empty
// {{#subobject:
// |Bar=foo Bar
// |@sortkey=
// }}
$provider[] = array(
array(
'Bar=foo Bar',
'@sortkey='
),
array(
'propertyCount' => 1,
'properties' => array(
new DIProperty( 'Bar' )
),
'propertyValues' => array(
'Foo Bar'
)
)
);
return $provider;
}
/**
* @return SubobjectParserFunction
*/
private function acquireInstance( Subobject $subobject, ParserOutput $parserOutput = null ) {
if ( $parserOutput === null ) {
$parserOutput = new ParserOutput();
}
return new SubobjectParserFunction(
new ParserData( $subobject->getTitle(), $parserOutput ),
$subobject,
new MessageFormatter( $subobject->getTitle()->getPageLanguage() )
);
}
}
|