mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-19 01:01:00 +00:00
548e94da98
Added to MediaWiki core last year with I9fca9fdf9b7623b1. This fixes a confusing assertion in page-issues/index.test.js, where for "insertBannersOrNotice()" it was asserting that the HTML contain "⧼skin-minerva-issue-learn-more⧽", where the ⧼ character indicates the message is not found (i.e. an error). The test had to be written this way in order to pass, because the skins.minerva.scripts module was not actually loaded, and thus its templates and messages are not present either. This lack was filled in by index.js for mw.templates, but not mw.messages. By adopting private require(), these workarounds can all be removed. == Motivation == In change I3a4024ccf90e505581, I'm working on improving the testrunner config to enforce uselang=qqx on all tests. This is passing except for GrowthExperiments and Minerva, both of which have the above workarounds in place that caused a message to be undefined, and then kept in the assertion expectation. When using uselang=qqx, values are returned as (key) instead of ⧼key⧽, which exposes these message existence errors. By removing this workaround, the test will simply import the module in the test as normal, thus the messages will exist, and thus it will expect (key), and thus it will continue to pass even after enforcing uselang=qqx. Change-Id: Ib68f45d93a7054ed8bd35fc5644e2852f2f90248
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
( function () {
|
|
const UriUtil = require( 'skins.minerva.scripts/UriUtil.js' );
|
|
const mwUriOrg = mw.Uri;
|
|
|
|
QUnit.module( 'Minerva UriUtil', {
|
|
beforeEach: function () {
|
|
mw.Uri = mw.UriRelative( 'https://meta.wikimedia.org/w/index.php' );
|
|
},
|
|
afterEach: function () {
|
|
mw.Uri = mwUriOrg;
|
|
}
|
|
} );
|
|
|
|
QUnit.test( '.isInternal()', ( assert ) => {
|
|
assert.true(
|
|
UriUtil.isInternal( new mw.Uri( '/relative' ) ),
|
|
'relative URLs are internal'
|
|
);
|
|
assert.true(
|
|
UriUtil.isInternal( new mw.Uri( 'http://meta.wikimedia.org/' ) ),
|
|
'matching hosts are internal'
|
|
);
|
|
assert.true(
|
|
UriUtil.isInternal( new mw.Uri( 'https:/meta.wikimedia.org/' ) ),
|
|
'protocol is irrelevant'
|
|
);
|
|
assert.true(
|
|
UriUtil.isInternal( new mw.Uri( 'https://meta.wikimedia.org/path' ) ),
|
|
'path is irrelevant'
|
|
);
|
|
assert.false(
|
|
UriUtil.isInternal( new mw.Uri( 'https://archive.org/' ) ),
|
|
'external links are not internal'
|
|
);
|
|
assert.false(
|
|
UriUtil.isInternal( new mw.Uri( 'https://www.meta.wikimedia.org/' ) ),
|
|
'differing subdomains are not internal'
|
|
);
|
|
} );
|
|
}() );
|