mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-12-02 19:26:24 +00:00
ae44042cbf
Change-Id: Ic0a47bd468532824e8648c3f6371cc403896603c
89 lines
2.1 KiB
JavaScript
89 lines
2.1 KiB
JavaScript
import { createModel, previewTypes }
|
|
from '../../../src/preview/model';
|
|
|
|
QUnit.module( 'ext.popups.preview#createModel' );
|
|
|
|
QUnit.test( 'it should copy the basic properties', ( assert ) => {
|
|
const thumbnail = {},
|
|
model = createModel(
|
|
'Foo',
|
|
'https://en.wikipedia.org/wiki/Foo',
|
|
'en',
|
|
'ltr',
|
|
'Foo bar baz.',
|
|
'standard',
|
|
thumbnail
|
|
);
|
|
|
|
assert.strictEqual(
|
|
model.title,
|
|
'Foo',
|
|
'The title is passed.'
|
|
);
|
|
assert.strictEqual(
|
|
model.url,
|
|
'https://en.wikipedia.org/wiki/Foo',
|
|
'The URL is generated.'
|
|
);
|
|
assert.strictEqual(
|
|
model.languageCode,
|
|
'en',
|
|
'The language code is passed.'
|
|
);
|
|
assert.strictEqual(
|
|
model.languageDirection,
|
|
'ltr',
|
|
'The language direction is passed.'
|
|
);
|
|
assert.strictEqual(
|
|
model.type,
|
|
previewTypes.TYPE_PAGE,
|
|
'The preview type is "page preview".'
|
|
);
|
|
assert.strictEqual( model.thumbnail, thumbnail, 'The thumbnail is passed' );
|
|
} );
|
|
|
|
QUnit.test( 'it computes the type property', ( assert ) => {
|
|
|
|
function createModelWith( { extract, type } ) {
|
|
return createModel(
|
|
'Foo',
|
|
'https://en.wikipedia.org/wiki/Foo',
|
|
'en',
|
|
'ltr',
|
|
extract,
|
|
type
|
|
);
|
|
}
|
|
|
|
assert.strictEqual(
|
|
createModelWith( { extract: 'Foo', type: 'standard' } ).type,
|
|
previewTypes.TYPE_PAGE,
|
|
'A non-generic ("page") preview has an extract and type "standard" property.'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
createModelWith( { extract: 'Foo', type: undefined } ).type,
|
|
previewTypes.TYPE_PAGE,
|
|
'A non-generic ("page") preview has an extract with an undefined "type" property.'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
createModelWith( { extract: undefined, type: undefined } ).type,
|
|
previewTypes.TYPE_GENERIC,
|
|
'A generic ("empty") preview has an undefined extract and an undefined "type" property.'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
createModelWith( { extract: undefined, type: 'standard' } ).type,
|
|
previewTypes.TYPE_GENERIC,
|
|
'A generic ("empty") preview has an undefined extract regardless of "type".'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
createModelWith( { extract: 'Foo', type: 'disambiguation' } ).type,
|
|
previewTypes.TYPE_DISAMBIGUATION,
|
|
'A disambiguation preview has an extract and type ("disambiguation") property.'
|
|
);
|
|
} );
|