summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/a-0003.json
blob: f74e51214f8997fb52666e7260ab18d7a7e716f0 (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
{
	"description": "Test API `action=smwbrowse`, `browse=pvalue`",
	"setup": [
		{
			"namespace": "SMW_NS_PROPERTY",
			"page": "Has text",
			"contents": "[[Has type::Text]]"
		},
		{
			"namespace": "SMW_NS_PROPERTY",
			"page": "Has text extra",
			"contents": "[[Has type::Text]]"
		},
		{
			"namespace": "NS_MAIN",
			"page": "A0003/1",
			"contents": "[[Has text::123]]"
		},
		{
			"namespace": "NS_MAIN",
			"page": "A0003/2",
			"contents": "[[Has text::1234]]"
		},
		{
			"namespace": "NS_MAIN",
			"page": "A0003/3",
			"contents": "[[Has text extra::12345]]"
		}
	],
	"tests": [
		{
			"type": "api",
			"about": "#0 `smwbrowse` pvalue (text type) search, abide or/and on property",
			"api": {
				"parameters": {
					"action": "smwbrowse",
					"format": "json",
					"browse": "pvalue",
					"params": "{ \"limit\": 10, \"offset\": 0, \"property\": \"Has text\", \"search\": \"123\", \"sort\": \"asc\" }"
				}
			},
			"assert-output": {
				"to-contain": [
					"123",
					"1234"
				],
				"not-contain": [
					"12345"
				]
			}
		}
	],
	"settings": {
		"wgContLang": "en",
		"wgLang": "en",
		"smwgCacheUsage": {
			"api.browse.pvalue": false
		},
		"smwgNamespacesWithSemanticLinks": {
			"NS_MAIN": true,
			"SMW_NS_PROPERTY": true,
			"SMW_NS_CONCEPT": true,
			"NS_CATEGORY": true
		}
	},
	"meta": {
		"version": "2",
		"is-incomplete": false,
		"debug": false
	}
}