gplx/mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0433.json

93 lines
2.1 KiB
JSON

{
"description": "Test in-text annotation `::` with left pipe (#1747, `wgContLang=en`)",
"setup": [
{
"namespace": "SMW_NS_PROPERTY",
"page": "Has text",
"contents": "[[Has type::Text]]"
},
{
"page": "Example/P0433/1",
"contents": "[[Foo|Bar::Foobar]] [[File:Example.png|alt=Bar::Foobar|Caption]] [[File:Example.png|Bar::Foobar|link=Foo]]"
},
{
"page": "Example/P0433/2",
"contents": "{{#set:Has text=[[Foo|Bar::Foobar]] [[File:Example.png|alt=Bar::Foobar|Caption]] [[File:Example.png|Bar::Foobar|link=Foo]] }}"
},
{
"page": "Example/P0433/Q.1",
"contents": "{{#ask: [[Example/P0433/2]] |?Has text |link=none}}"
}
],
"tests": [
{
"type": "parser",
"about": "#0 no annotation due to left pipe",
"subject": "Example/P0433/1",
"assert-store": {
"semantic-data": {
"strictPropertyValueMatch": false,
"propertyCount": 3,
"propertyKeys": [
"_SKEY",
"_MDAT",
"_INST"
],
"propertyValues": []
}
}
},
{
"type": "parser",
"about": "#1",
"subject": "Example/P0433/2",
"assert-store": {
"semantic-data": {
"strictPropertyValueMatch": false,
"propertyCount": 3,
"propertyKeys": [
"_SKEY",
"_MDAT",
"Has_text"
],
"propertyValues": [
"[[Foo|Bar::Foobar]] [[File:Example.png|alt=Bar::Foobar|Caption]] [[File:Example.png|Bar::Foobar|link=Foo]]"
]
}
}
},
{
"type": "parser",
"about": "#2",
"skip-on": {
"mediawiki": [ ">1.39", "MediaWiki changed the HTML Tidy" ]
},
"subject": "Example/P0433/Q.1",
"assert-output": {
"to-contain": [
"title=\"File:Example.png\">Caption</a>",
"title=\"File:Example.png\">Bar::Foobar</a>"
]
}
}
],
"settings": {
"wgContLang": "en",
"smwgParserFeatures": [
"SMW_PARSER_STRICT",
"SMW_PARSER_INL_ERROR",
"SMW_PARSER_HID_CATS"
],
"smwgPageSpecialProperties": [
"_MDAT"
]
},
"meta": {
"skip-on": {
"sitelanguage": [ "ja", "Some issues with NS_SPECIAL when 'ja' is used as sitelanguage." ]
},
"version": "2",
"is-incomplete": false,
"debug": false
}
}