2013-06-04 18:46:49 +00:00
/ * !
2015-07-29 13:41:30 +00:00
* VisualEditor MediaWiki Initialization DesktopArticleTarget tests .
2013-06-04 18:46:49 +00:00
*
2020-01-08 17:13:04 +00:00
* @ copyright 2011 - 2020 VisualEditor Team and others ; see AUTHORS . txt
2013-06-04 18:46:49 +00:00
* @ license The MIT License ( MIT ) ; see LICENSE . txt
* /
2015-07-29 13:41:30 +00:00
QUnit . module ( 've.init.mw.DesktopArticleTarget' , ve . test . utils . mwEnvironment ) ;
2013-06-04 18:46:49 +00:00
2018-09-04 12:28:50 +00:00
QUnit . test ( 'init' , function ( assert ) {
2021-04-29 14:42:18 +00:00
const response = {
2018-09-04 12:28:50 +00:00
visualeditor : {
result : 'success' ,
2018-11-16 18:47:54 +00:00
notices : [
'<b>HTML string notice</b> message' ,
{
type : 'object notice' ,
message : '<b>object notice</b> message'
}
] ,
2018-09-04 12:28:50 +00:00
checkboxesDef : {
wpMinoredit : {
id : 'wpMinoredit' ,
'label-message' : 'minoredit' ,
tooltip : 'minoredit' ,
'label-id' : 'mw-editpage-minoredit' ,
'legacy-name' : 'minor' ,
2019-01-08 17:00:09 +00:00
default : false
2018-09-04 12:28:50 +00:00
} ,
wpWatchthis : {
id : 'wpWatchthis' ,
'label-message' : 'watchthis' ,
tooltip : 'watch' ,
'label-id' : 'mw-editpage-watch' ,
'legacy-name' : 'watch' ,
2019-01-08 17:00:09 +00:00
default : true
2018-09-04 12:28:50 +00:00
}
} ,
checkboxesMessages : {
'accesskey-minoredit' : 'i' ,
'tooltip-minoredit' : 'Mark this as a minor edit' ,
minoredit : 'This is a minor edit' ,
'accesskey-watch' : 'w' ,
'tooltip-watch' : 'Add this page to your watchlist' ,
watchthis : 'Watch this page'
} ,
templates : '<div class="templatesUsed"></div>' ,
links : {
missing : [ ] ,
known : 1
} ,
protectedClasses : '' ,
basetimestamp : '20161119005107' ,
starttimestamp : '20180831122319' ,
oldid : 1804 ,
2019-05-24 21:08:17 +00:00
blockinfo : null ,
canEdit : true ,
2018-09-04 12:28:50 +00:00
content : '<!DOCTYPE html>\n' +
'<html prefix="dc: http://purl.org/dc/terms/ mw: http://mediawiki.org/rdf/" about="http://localhost/MediaWiki/core/index.php/Special:Redirect/revision/1804">' +
'<head prefix="mwr: http://localhost/MediaWiki/core/index.php/Special:Redirect/"><meta property="mw:TimeUuid" content="a4fc0409-ad18-11e8-9b45-dd8cefbedb6d"/>' +
'<meta charset="utf-8"/>' +
'<meta property="mw:pageNamespace" content="0"/>' +
'<meta property="mw:pageId" content="643"/>' +
'<link rel="dc:replaces" resource="mwr:revision/0"/>' +
'<meta property="dc:modified" content="2016-11-19T00:51:07.000Z"/>' +
'<meta property="mw:revisionSHA1" content="da39a3ee5e6b4b0d3255bfef95601890afd80709"/>' +
'<meta property="mw:html:version" content="1.7.0"/>' +
'<link rel="dc:isVersionOf" href="http://localhost/MediaWiki/core/index.php/Empty"/>' +
'<title>Empty</title>' +
'<base href="http://localhost/MediaWiki/core/index.php/"/>' +
2020-12-11 21:09:20 +00:00
'<link rel="stylesheet" href="//localhost/MediaWiki/core/load.php?modules=mediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.content.parsoid%7Cmediawiki.skinning.interface%7Cskins.vector.styles%7Csite.styles%7Cext.cite.style%7Cext.cite.styles%7Cmediawiki.page.gallery.styles&only=styles&skin=vector"/>' +
2018-09-04 12:28:50 +00:00
'</head>' +
'<body id="mwAA" lang="he" class="mw-content-rtl sitedir-rtl rtl mw-body-content parsoid-body mediawiki mw-parser-output" dir="rtl">' +
'<section data-mw-section-id="0" id="mwAQ"></section>' +
'</body>' +
'</html>' ,
etag : '"1804/a4fc0409-ad18-11e8-9b45-dd8cefbedb6d"' ,
switched : false ,
fromEditedState : false
}
} ,
target = new ve . init . mw . DesktopArticleTarget ( ) ,
2019-11-02 05:06:28 +00:00
dataPromise = ve . createDeferred ( ) . resolve ( response ) . promise ( ) ,
2018-09-04 12:28:50 +00:00
done = assert . async ( ) ;
target . on ( 'surfaceReady' , function ( ) {
assert . strictEqual ( target . getSurface ( ) . getModel ( ) . getDocument ( ) . getLang ( ) , 'he' , 'Page language is passed through from config' ) ;
assert . strictEqual ( target . getSurface ( ) . getModel ( ) . getDocument ( ) . getDir ( ) , 'rtl' , 'Page direction is passed through from config' ) ;
mw . config . get ( 'wgVisualEditor' ) . pageLanguageCode = 'en' ;
mw . config . get ( 'wgVisualEditor' ) . pageLanguageDir = 'ltr' ;
2018-11-16 18:47:54 +00:00
target . activatingDeferred . then ( function ( ) {
assert . equalDomElement (
target . actionsToolbar . tools . notices . noticeItems [ 0 ] . $element [ 0 ] ,
$ ( '<div class="ve-ui-mwNoticesPopupTool-item"><b>HTML string notice</b> message</div>' ) [ 0 ] ,
'HTML string notice message is passed through from API'
) ;
assert . strictEqual ( target . actionsToolbar . tools . notices . noticeItems [ 0 ] . type , undefined , 'Plain text notice type is undefined' ) ;
assert . equalDomElement (
target . actionsToolbar . tools . notices . noticeItems [ 1 ] . $element [ 0 ] ,
$ ( '<div class="ve-ui-mwNoticesPopupTool-item"><b>object notice</b> message</div>' ) [ 0 ] ,
'Object notice message is passed through from API'
) ;
assert . strictEqual ( target . actionsToolbar . tools . notices . noticeItems [ 1 ] . type , 'object notice' , 'Object notice type is passed through from API' ) ;
2019-04-15 22:39:56 +00:00
target . destroy ( ) . then ( function ( ) {
done ( ) ;
} ) ;
2018-11-16 18:47:54 +00:00
} ) ;
2018-09-04 12:28:50 +00:00
} ) ;
mw . config . get ( 'wgVisualEditor' ) . pageLanguageCode = 'he' ;
mw . config . get ( 'wgVisualEditor' ) . pageLanguageDir = 'rtl' ;
mw . config . get ( 'wgVisualEditorConfig' ) . showBetaWelcome = false ;
target . activate ( dataPromise ) ;
} ) ;
2013-06-04 18:46:49 +00:00
QUnit . test ( 'compatibility' , function ( assert ) {
2021-04-29 14:42:18 +00:00
const cases = [
2013-06-04 18:46:49 +00:00
{
2014-08-22 20:50:48 +00:00
msg : 'Unidentified browser' ,
userAgent : 'FooBar Browser Company Version 3.141' ,
matches : [ ]
2013-06-04 18:46:49 +00:00
} ,
2014-09-26 18:56:19 +00:00
{
msg : 'IE11' ,
userAgent : 'Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; .NET4.0E; .NET4.0C; rv:11.0) like Gecko' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2016-03-01 19:46:29 +00:00
} ,
{
msg : 'Edge 12' ,
userAgent : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Firefox 10' ,
userAgent : 'Mozilla/5.0 (X11; Mageia; Linux x86_64; rv:10.0.9) Gecko/20100101 Firefox/10.0.9' ,
2020-06-10 11:03:51 +00:00
matches : [ 'unsupportedList' ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Firefox 11' ,
userAgent : 'Mozilla/5.0 (Windows NT 6.1; U;WOW64; de;rv:11.0) Gecko Firefox/11.0' ,
2020-06-10 11:03:51 +00:00
matches : [ 'unsupportedList' ]
2013-07-05 16:19:15 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Firefox 12' ,
userAgent : 'Mozilla/5.0 (compatible; Windows; U; Windows NT 6.2; WOW64; en-US; rv:12.0) Gecko/20120403211507 Firefox/12.0' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2013-07-05 16:19:15 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Firefox 13' ,
userAgent : 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:13.0) Gecko/20100101 Firefox/13.0' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2013-07-09 01:20:42 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Firefox 14' ,
userAgent : 'Mozilla/5.0 (Windows NT 6.1; rv:12.0) Gecko/20120403211507 Firefox/14.0.1' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2013-07-09 01:20:42 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Firefox 15' ,
userAgent : 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Firefox 24' ,
userAgent : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Firefox/24.0' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Safari 4' ,
userAgent : 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/531.21.11 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10' ,
2020-06-10 11:03:51 +00:00
matches : [ 'unsupportedList' ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Safari 5' ,
userAgent : 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/534.1+ (KHTML, like Gecko) Version/5.0 Safari/533.16' ,
2020-06-10 11:03:51 +00:00
matches : [ 'unsupportedList' ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Safari 6' ,
userAgent : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 1084) AppleWebKit/536.30.1 (KHTML like Gecko) Version/6.0.5 Safari/536.30.1' ,
2020-06-10 11:03:51 +00:00
matches : [ 'unsupportedList' ]
2015-02-20 17:42:44 +00:00
} ,
{
msg : 'Safari 7' ,
userAgent : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2015-02-20 17:42:44 +00:00
} ,
{
msg : 'Safari 8' ,
userAgent : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Chrome 18' ,
userAgent : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.151 Safari/535.19' ,
matches : [ ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Chrome 19' ,
userAgent : 'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1061.0 Safari/536.3' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Chrome 27' ,
userAgent : 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Android 2.3' ,
userAgent : 'Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; HTC Vision Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1' ,
2017-05-22 10:32:52 +00:00
matches : [ ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Android 3.0' ,
userAgent : 'Mozilla/5.0 (Linux; U; Android 3.0; en-us; Xoom Build/HRI39) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13' ,
matches : [ ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Android 4.0' ,
userAgent : 'Mozilla/5.0 (Linux; U; Android 4.0.3; HTC Sensation Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30' ,
matches : [ ]
2013-06-04 18:46:49 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Opera 11' ,
userAgent : 'Opera/9.80 (Windows NT 5.1) Presto/2.10.229 Version/11.64' ,
2020-06-10 11:03:51 +00:00
matches : [ 'unsupportedList' ]
2013-06-04 18:46:49 +00:00
} ,
2013-07-09 15:55:23 +00:00
{
2017-04-06 21:02:18 +00:00
msg : 'Opera 12.16' ,
2014-08-22 20:50:48 +00:00
userAgent : 'Opera/9.80 (Windows NT 5.1) Presto/2.12.388 Version/12.16' ,
matches : [ ]
2013-07-09 15:55:23 +00:00
} ,
2017-10-12 15:53:13 +00:00
{
msg : 'Opera 15.0' ,
userAgent : 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100' ,
2020-06-10 11:03:51 +00:00
matches : [ 'supportedList' ]
2017-10-12 15:53:13 +00:00
} ,
2013-07-05 16:20:38 +00:00
{
2014-08-22 20:50:48 +00:00
msg : 'Amazon Silk desktop' ,
userAgent : 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us; Silk/1.0.13.81_10003810) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 Silk-Accelerated=true' ,
2017-05-22 10:32:52 +00:00
matches : [ ]
2013-07-05 16:20:38 +00:00
} ,
{
2014-08-22 20:50:48 +00:00
msg : 'Amazon Silk mobile' ,
userAgent : 'Mozilla/5.0 (Linux; U; Android 4.0.3; en-us; KFTT Build/IML74K) AppleWebKit/535.19 (KHTML, like Gecko) Silk/2.1 Mobile Safari/535.19 Silk-Accelerated=true' ,
2017-05-22 10:32:52 +00:00
matches : [ ]
2013-06-04 18:46:49 +00:00
}
] ;
2021-04-29 14:42:18 +00:00
const compatibility = {
2020-06-10 11:03:51 +00:00
supportedList : ve . init . mw . DesktopArticleTarget . static . compatibility . supportedList ,
2013-07-03 22:14:52 +00:00
// TODO: Fix this mess when we split ve.init from ve.platform
2020-06-10 11:03:51 +00:00
unsupportedList : mw . libs . ve . unsupportedList
2013-07-03 22:14:52 +00:00
} ;
2020-06-10 11:03:51 +00:00
cases . forEach ( function ( caseItem ) {
2021-04-29 14:42:18 +00:00
const profile = $ . client . profile ( { userAgent : caseItem . userAgent , platform : '' } ) ,
matches = [ ] ;
2020-06-10 11:03:51 +00:00
[ 'unsupportedList' , 'supportedList' ] . every ( function ( list ) {
2015-08-19 17:33:02 +00:00
if ( $ . client . test ( compatibility [ list ] , profile , true ) ) {
2013-06-04 18:46:49 +00:00
matches . push ( list ) ;
2020-06-10 11:03:51 +00:00
// Don't check supportedList if on unsupportedList
2017-10-12 15:53:13 +00:00
return false ;
2013-06-04 18:46:49 +00:00
}
2017-10-12 15:53:13 +00:00
return true ;
} ) ;
2020-06-10 11:03:51 +00:00
assert . deepEqual ( matches , caseItem . matches ,
caseItem . msg + ': ' + ( caseItem . matches . length ? caseItem . matches . join ( ) : 'greylist (no matches)' ) ) ;
} ) ;
2013-06-23 23:47:32 +00:00
} ) ;