2 QUnit
.module( 'jquery.accessKeyLabel', QUnit
.newMwEnvironment( {
9 var getAccessKeyPrefixTestData
= [
10 // ua string, platform string, expected prefix
12 [ 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)', 'Win32', 'alt-' ],
13 [ 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', 'Win32', 'alt-' ],
14 [ 'Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; rv:11.0) like Gecko', 'Win64', 'alt-' ],
15 [ 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10136', 'Win64', 'alt-' ],
17 [ 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.19) Gecko/20110420 Firefox/3.5.19', 'MacIntel', 'ctrl-' ],
18 [ 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110422 Ubuntu/10.10 (maverick) Firefox/3.6.17', 'Linux i686', 'alt-shift-' ],
19 [ 'Mozilla/5.0 (Windows NT 6.0; rv:2.0.1) Gecko/20100101 Firefox/4.0.1', 'Win32', 'alt-shift-' ],
20 [ 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:50.0) Gecko/20100101 Firefox/50.0', 'MacIntel', 'ctrl-option-' ],
21 [ 'Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20121202 Firefox/17.0 Iceweasel/17.0.1', 'Linux 1686', 'alt-shift-' ],
22 [ 'Mozilla/5.0 (Windows NT 5.2; U; de; rv:1.8.0) Gecko/20060728 Firefox/1.5.0', 'Win32', 'alt-' ],
24 [ 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; nl-nl) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7', 'MacIntel', 'ctrl-option-' ],
25 [ 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7; de-de) AppleWebKit/525.28.3 (KHTML, like Gecko) Version/3.2.3 Safari/525.28.3', 'MacIntel', 'ctrl-' ],
26 [ 'Mozilla/5.0 (Windows; U; Windows NT 5.1; cs-CZ) AppleWebKit/525.28.3 (KHTML, like Gecko) Version/3.2.3 Safari/525.29', 'Win32', 'alt-' ],
27 [ 'Mozilla/5.0 (Windows; U; Windows NT 6.0; cs-CZ) AppleWebKit/533.21.1 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7', 'Win32', 'alt-' ],
28 [ 'Mozilla/5.0 (X11; Linux i686) KHTML/4.9.1 (like Gecko) Konqueror/4.9', 'Linux i686', 'ctrl-' ],
30 [ 'Opera/9.80 (Windows NT 5.1)', 'Win32', 'shift-esc-' ],
31 [ 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.130', 'Win32', 'alt-shift-' ],
33 [ 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.112 Safari/534.30', 'MacIntel', 'ctrl-option-' ],
34 [ 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.68 Safari/534.30', 'Linux i686', 'alt-shift-' ],
35 // Unknown! Note: These aren't necessarily *right*, this is just
36 // testing that we're getting the expected output based on the
38 [ 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US; rv:1.0.1) Gecko/20021111 Chimera/0.6', 'MacPPC', 'ctrl-' ],
39 [ 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3a) Gecko/20021207 Phoenix/0.5', 'Linux i686', 'alt-' ]
41 // strings appended to title to make sure updateTooltipAccessKeys handles them correctly
42 updateTooltipAccessKeysTestData
= [ '', ' [a]', ' [test-a]', ' [alt-b]' ];
44 function makeInput( title
, accessKey
) {
45 // The properties aren't escaped, so make sure you don't call this function with values that need to be escaped!
46 return '<input title="' + title
+ '" ' + ( accessKey
? 'accessKey="' + accessKey
+ '" ' : '' ) + ' />';
49 QUnit
.test( 'getAccessKeyPrefix', getAccessKeyPrefixTestData
.length
, function ( assert
) {
51 for ( i
= 0; i
< getAccessKeyPrefixTestData
.length
; i
++ ) {
52 assert
.equal( $.fn
.updateTooltipAccessKeys
.getAccessKeyPrefix( {
53 userAgent
: getAccessKeyPrefixTestData
[ i
][ 0 ],
54 platform
: getAccessKeyPrefixTestData
[ i
][ 1 ]
55 } ), getAccessKeyPrefixTestData
[ i
][ 2 ], 'Correct prefix for ' + getAccessKeyPrefixTestData
[ i
][ 0 ] );
59 QUnit
.test( 'updateTooltipAccessKeys - current browser', 2, function ( assert
) {
60 var title
= $( makeInput( 'Title', 'a' ) ).updateTooltipAccessKeys().prop( 'title' ),
61 // The new title should be something like "Title [alt-a]", but the exact label will depend on the browser.
62 // The "a" could be capitalized, and the prefix could be anything, e.g. a simple "^" for ctrl-
63 // (no browser is known using such a short prefix, though) or "Alt+Umschalt+" in German Firefox.
64 result
= /^Title \[(.+)[aA]\]$/.exec( title
);
65 assert
.ok( result
, 'title should match expected structure.' );
66 assert
.notEqual( result
[ 1 ], 'test-', 'Prefix used for testing shouldn\'t be used in production.' );
69 QUnit
.test( 'updateTooltipAccessKeys - no access key', updateTooltipAccessKeysTestData
.length
, function ( assert
) {
70 var i
, oldTitle
, $input
, newTitle
;
71 for ( i
= 0; i
< updateTooltipAccessKeysTestData
.length
; i
++ ) {
72 oldTitle
= 'Title' + updateTooltipAccessKeysTestData
[ i
];
73 $input
= $( makeInput( oldTitle
) );
74 $( '#qunit-fixture' ).append( $input
);
75 newTitle
= $input
.updateTooltipAccessKeys().prop( 'title' );
76 assert
.equal( newTitle
, 'Title', 'title="' + oldTitle
+ '"' );
80 QUnit
.test( 'updateTooltipAccessKeys - with access key', updateTooltipAccessKeysTestData
.length
, function ( assert
) {
81 $.fn
.updateTooltipAccessKeys
.setTestMode( true );
82 var i
, oldTitle
, $input
, newTitle
;
83 for ( i
= 0; i
< updateTooltipAccessKeysTestData
.length
; i
++ ) {
84 oldTitle
= 'Title' + updateTooltipAccessKeysTestData
[ i
];
85 $input
= $( makeInput( oldTitle
, 'a' ) );
86 $( '#qunit-fixture' ).append( $input
);
87 newTitle
= $input
.updateTooltipAccessKeys().prop( 'title' );
88 assert
.equal( newTitle
, 'Title [test-a]', 'title="' + oldTitle
+ '"' );
90 $.fn
.updateTooltipAccessKeys
.setTestMode( false );
93 QUnit
.test( 'updateTooltipAccessKeys with label element', 2, function ( assert
) {
94 $.fn
.updateTooltipAccessKeys
.setTestMode( true );
95 var html
= '<label for="testInput" title="Title">Label</label><input id="testInput" accessKey="a" />',
97 $( '#qunit-fixture' ).html( html
);
98 $label
= $( '#qunit-fixture label' );
99 $input
= $( '#qunit-fixture input' );
100 $input
.updateTooltipAccessKeys();
101 assert
.equal( $input
.prop( 'title' ), '', 'No title attribute added to input element.' );
102 assert
.equal( $label
.prop( 'title' ), 'Title [test-a]', 'title updated for associated label element.' );
103 $.fn
.updateTooltipAccessKeys
.setTestMode( false );
106 QUnit
.test( 'updateTooltipAccessKeys with label element as parent', 2, function ( assert
) {
107 $.fn
.updateTooltipAccessKeys
.setTestMode( true );
108 var html
= '<label title="Title">Label<input id="testInput" accessKey="a" /></label>',
110 $( '#qunit-fixture' ).html( html
);
111 $label
= $( '#qunit-fixture label' );
112 $input
= $( '#qunit-fixture input' );
113 $input
.updateTooltipAccessKeys();
114 assert
.equal( $input
.prop( 'title' ), '', 'No title attribute added to input element.' );
115 assert
.equal( $label
.prop( 'title' ), 'Title [test-a]', 'title updated for associated label element.' );
116 $.fn
.updateTooltipAccessKeys
.setTestMode( false );