summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/f-0202.json
blob: 6216018f789c8452b2b7734f0adafc40264bbbef (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
{
	"description": "Test `format=table` with sep cell formatting, #495 (`wgContLang=en`,`wgLang=en`)",
	"setup": [
		{
			"namespace": "SMW_NS_PROPERTY",
			"page": "Has page",
			"contents": "[[Has type::Page]]"
		},
		{
			"namespace": "SMW_NS_PROPERTY",
			"page": "Has text",
			"contents": "[[Has type::Text]]"
		},
		{
			"page": "Table-page",
			"contents": "[[Has page::Foo]] [[Has page::42]] [[Has text::bar]] [[Has text::1001]]"
		},
		{
			"page": "Table-without-sep-parameter",
			"contents": "{{#ask:[[Has page::Foo]] [[Has page::42]]\n |?Has page\n |?Has text\n |format=table\n |headers=plain\n |link=none\n }}"
		},
		{
			"page": "Table-with-sep-parameter",
			"contents": "{{#ask:[[Has page::Foo]] [[Has page::42]]\n |?Has page\n |?Has text\n |format=table\n |sep=;\n |headers=plain\n |link=none\n }}"
		},
		{
			"page": "Broadtable-with-sep-parameter",
			"contents": "{{#ask:[[Has page::Foo]] [[Has page::42]]\n |?Has page\n |?Has text\n |format=broadtable\n |sep=;\n |headers=plain\n |link=none\n }}"
		}
	],
	"tests": [
		{
			"type": "format",
			"about": "#0 table without sep",
			"subject": "Table-without-sep-parameter",
			"assert-output": {
				"to-contain": [
					"<table class=\"sortable wikitable smwtable\">",
					"<th>&#160;</th><th class=\"Has-page\">Has page</th>",
					"<th class=\"Has-text\">Has text</th>",
					"<tr data-row-number=\"1\" class=\"row-odd\"><td class=\"smwtype_wpg\">Table-page</td>",
					"<td class=\"Has-page smwtype_wpg\">Foo<br />42</td>",
					"<td class=\"Has-text smwtype_txt\">bar<br />1001</td></tr>",
					"</table>"
				]
			}
		},
		{
			"type": "format",
			"about": "#1 table with sep",
			"subject": "Table-with-sep-parameter",
			"assert-output": {
				"to-contain": [
					"<table class=\"sortable wikitable smwtable\">",
					"<th>&#160;</th><th class=\"Has-page\">Has page</th>",
					"<th class=\"Has-text\">Has text</th>",
					"<tr data-row-number=\"1\" class=\"row-odd\"><td class=\"smwtype_wpg\">Table-page</td>",
					"<td class=\"Has-page smwtype_wpg\">Foo;42</td>",
					"<td class=\"Has-text smwtype_txt\">bar;1001</td></tr>",
					"</table>"
				]
			}
		},
		{
			"type": "format",
			"about": "#2 broadtable with sep",
			"subject": "Broadtable-with-sep-parameter",
			"assert-output": {
				"to-contain": [
					"<table class=\"sortable wikitable smwtable broadtable\" width=\"100%\">",
					"<th>&#160;</th><th class=\"Has-page\">Has page</th>",
					"<th class=\"Has-text\">Has text</th>",
					"<tr data-row-number=\"1\" class=\"row-odd\"><td class=\"smwtype_wpg\">Table-page</td>",
					"<td class=\"Has-page smwtype_wpg\">Foo;42</td>",
					"<td class=\"Has-text smwtype_txt\">bar;1001</td></tr>",
					"</table>"
				]
			}
		}
	],
	"settings": {
		"wgContLang": "en",
		"wgLang": "en",
		"smwgNamespacesWithSemanticLinks": {
			"NS_MAIN": true,
			"SMW_NS_PROPERTY": true
		}
	},
	"meta": {
		"version": "2",
		"is-incomplete": false,
		"debug": false
	}
}