summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0204.json
blob: aa556f9185da23e69280bb0cfd7c89e8f9c7eca6 (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
{
	"description": "Test #set parser to produce error output (#870, en, verify that #set calls do not affect each other with previous errors)",
	"setup": [
		{
			"namespace": "SMW_NS_PROPERTY",
			"page": "Has number",
			"contents": "[[Has type::Number]]"
		},
		{
			"page": "Set-number-with-error",
			"contents": "{{#set:Has number=12}} {{#set:Has number=32a}} {{#set:Has number=66}} {{#set:Has number=88b}}"
		}
	],
	"tests": [
		{
			"type": "parser",
			"about": "#0 with error",
			"subject": "Set-number-with-error",
			"assert-store": {
				"semantic-data": {
					"strictPropertyValueMatch": false,
					"propertyCount": 4,
					"propertyKeys": [
						"Has_number",
						"_ERRC",
						"_SKEY",
						"_MDAT"
					],
					"propertyValues": [
						12,
						66
					]
				}
			},
			"assert-output": {
				"to-contain": [
					""a" can not be assigned to a declared number type with value 32.",
					""b" can not be assigned to a declared number type with value 88."
				]
			}
		}
	],
	"settings": {
		"wgContLang": "en",
		"smwgPageSpecialProperties": [
			"_MDAT"
		]
	},
	"meta": {
		"version": "2",
		"is-incomplete": false,
		"debug": false
	}
}