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

150 lines
3.4 KiB
JSON

{
"description": "Test in-text annotation for `_num` on big/small/negative numbers/scientific notation (`wgContLang=fr`, `wgLang=en`)",
"setup": [
{
"namespace": "SMW_NS_PROPERTY",
"page": "Has number",
"contents": "[[Has type::Number]]"
},
{
"namespace": "SMW_NS_PROPERTY",
"page": "Has number with precision 4",
"contents": "[[Has type::Number]] [[Display precision of::4]]"
},
{
"contentlanguage": "fr",
"page": "Example/P0426/1",
"contents": "[[Has number::0,00000000000012]] [[Has number::1,000000000000123]] [[Has number::72,769482308]] [[Has number::5000,769482308]] [[Has number::-0,000000000004566]] [[Has number::0,2123456e+3]] [[Has number::1,334e-13]]"
},
{
"contentlanguage": "en",
"page": "Example/P0426/2",
"contents": "[[Has number::0.00000000000012]] [[Has number::1.000000000000123]] [[Has number::72.769482308]] [[Has number::5000.769482308]] [[Has number::-0.000000000004566]] [[Has number::0.2123456e+3]] [[Has number::1.334e-13]]"
},
{
"contentlanguage": "en",
"page": "P0426/3",
"contents": "[[Has number::0.000]] [[Has number::-0.42]]"
},
{
"contentlanguage": "en",
"page": "P0426/4",
"contents": "[[Has number::-0.000]]"
},
{
"contentlanguage": "fr",
"page": "Example/P0426/Q1.1",
"contents": "{{#ask: [[Example/P0426/1]] |?Has number }}"
},
{
"contentlanguage": "fr",
"page": "Example/P0426/Q1.2",
"contents": "{{#ask: [[Example/P0426/1]] |?Has number#-p5 }}"
},
{
"contentlanguage": "fr",
"page": "Example/P0426/Q2.1",
"contents": "{{#ask: [[Example/P0426/2]] |?Has number }}"
},
{
"page": "P0426/Q3.1",
"contents": "{{#ask: [[P0426/3]] |?Has number#-p5 }}"
},
{
"page": "P0426/Q4.1",
"contents": "{{#ask: [[P0426/4]] |?Has number#-p5 }}"
}
],
"tests": [
{
"type": "parser",
"about": "#0 page content language FR, display in en",
"subject": "Example/P0426/Q1.1",
"assert-output": {
"to-contain": [
"1.2e-13",
"1",
"72.769",
"5,000.769",
"-4.566e-12",
"212.346",
"1.334e-13"
]
}
},
{
"type": "parser",
"about": "#1 page content language EN, display in en",
"subject": "Example/P0426/Q2.1",
"assert-output": {
"to-contain": [
"1.2e-13",
"1",
"72.769",
"5,000.769",
"-4.566e-12",
"212.346",
"1.334e-13"
]
}
},
{
"type": "parser",
"about": "#2 with precision display precision 5",
"subject": "Example/P0426/Q1.2",
"assert-output": {
"to-contain": [
"0.00000",
"1.00000",
"72.76948",
"5,000.76948",
"-0.00000",
"212.34560",
"0.00000"
]
}
},
{
"type": "parser",
"about": "#3",
"subject": "P0426/Q3.1",
"assert-output": {
"to-contain": [
"-0.42000",
"0.00000"
],
"not-contain": [
"--0.42000"
]
}
},
{
"type": "parser",
"about": "#4",
"skip-on": {
"sqlite": "Does not store the minus for a 0.000 values",
"blazegraph": "Skipping: the current Travis configuration does test Blazegraph with SQLite, it fails because of SQLite and works with MySQL."
},
"subject": "P0426/Q4.1",
"assert-output": {
"to-contain": [
"-0.00000"
]
}
}
],
"settings": {
"wgLang": "en",
"wgContLang": "fr",
"wgLanguageCode": "fr",
"smwgNamespacesWithSemanticLinks": {
"NS_MAIN": true,
"SMW_NS_PROPERTY": true
}
},
"meta": {
"version": "2",
"is-incomplete": false,
"debug": false
}
}