File: product_test.js

package info (click to toggle)
aseba-plugin-blockly 20180211%2Bgit-2
  • links: PTS
  • area: non-free
  • in suites: buster
  • size: 64,472 kB
  • sloc: xml: 7,976; python: 2,314; sh: 261; lisp: 24; makefile: 10
file content (386 lines) | stat: -rw-r--r-- 12,791 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
// Copyright 2008 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

goog.provide('goog.userAgent.productTest');
goog.setTestOnly('goog.userAgent.productTest');

goog.require('goog.array');
goog.require('goog.labs.userAgent.testAgents');
goog.require('goog.labs.userAgent.util');
goog.require('goog.testing.MockUserAgent');
goog.require('goog.testing.PropertyReplacer');
goog.require('goog.testing.jsunit');
goog.require('goog.userAgent');
goog.require('goog.userAgent.product');
goog.require('goog.userAgent.product.isVersion');
goog.require('goog.userAgentTestUtil');

function shouldRunTests() {
  // This test has not yet been updated to run on IE8 and up. See b/2997681.
  return !goog.userAgent.IE || !goog.userAgent.isVersionOrHigher(8);
}

var mockAgent;
var replacer;

function setUp() {
  mockAgent = new goog.testing.MockUserAgent();
  mockAgent.install();
  replacer = new goog.testing.PropertyReplacer();
}

function tearDown() {
  replacer.reset();
  mockAgent.dispose();
  updateUserAgentUtils();
}

function updateUserAgentUtils() {
  goog.labs.userAgent.util.setUserAgent(null);
  goog.userAgentTestUtil.reinitializeUserAgent();
}

// The set of products whose corresponding goog.userAgent.product value is set
// in goog.userAgent.product.init_().
var DETECTED_BROWSER_KEYS =
    ['FIREFOX', 'IPHONE', 'IPAD', 'ANDROID', 'CHROME', 'SAFARI'];


// browserKey should be the constant name, as a string
// 'FIREFOX', 'CHROME', 'ANDROID', etc.
function assertIsBrowser(currentBrowser) {
  assertTrue(
      'Current browser key into goog.userAgent.product ' +
          'should be true',
      goog.userAgent.product[currentBrowser]);

  // Make sure we don't have any false positives for other browsers.
  goog.array.forEach(DETECTED_BROWSER_KEYS, function(browserKey) {
    // Ignore the iPad/Safari case, as the new code correctly
    // identifies the test useragent as both iPad and Safari.
    if (currentBrowser == 'IPAD' && browserKey == 'SAFARI') {
      return;
    }

    if (currentBrowser == 'IPHONE' && browserKey == 'SAFARI') {
      return;
    }

    if (currentBrowser == 'CHROME' && browserKey == 'IPHONE') {
      return;
    }

    if (currentBrowser != browserKey) {
      assertFalse(
          'Current browser key is ' + currentBrowser +
              ' but different key into goog.userAgent.product is true: ' +
              browserKey,
          goog.userAgent.product[browserKey]);
    }
  });
}

function assertBrowserAndVersion(userAgent, browser, version) {
  mockAgent.setUserAgentString(userAgent);
  updateUserAgentUtils();
  assertIsBrowser(browser);
  assertEquals(
      'User agent should have this version', version, goog.userAgent.VERSION);
}


/**
 * @param {Array<{
 *           ua: string,
 *           versions: Array<{
 *             num: (string|number), truth: boolean}>}>} userAgents
 * @param {string} browser
 */
function checkEachUserAgentDetected(userAgents, browser) {
  goog.array.forEach(userAgents, function(ua) {
    mockAgent.setUserAgentString(ua.ua);
    updateUserAgentUtils();

    assertIsBrowser(browser);

    // Check versions
    goog.array.forEach(ua.versions, function(v) {
      mockAgent.setUserAgentString(ua.ua);
      updateUserAgentUtils();
      assertEquals(
          'Expected version ' + v.num + ' from ' + ua.ua + ' but got ' +
              goog.userAgent.product.VERSION,
          v.truth, goog.userAgent.product.isVersion(v.num));
    });
  });
}

function testInternetExplorer() {
  var userAgents = [
    {
      ua: 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; ' +
          'chromeframe; .NET CLR 1.1.4322; InfoPath.1; ' +
          '.NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; ' +
          '.NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)',
      versions: [
        {num: 6, truth: true}, {num: '7.0', truth: true},
        {num: 7.1, truth: false}, {num: 8, truth: false}
      ]
    },
    {
      ua: 'Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko',
      versions: [
        {num: 10, truth: true}, {num: 11, truth: true},
        {num: '11.0', truth: true}, {num: '12', truth: false}
      ]
    }
  ];
  // hide any navigator.product value by putting in a navigator with no
  // properties.
  mockAgent.setNavigator({});
  checkEachUserAgentDetected(userAgents, 'IE');
}

function testEdge() {
  var userAgents = [{
    ua: goog.labs.userAgent.testAgents.EDGE_12_9600,
    versions: [
      {num: 11, truth: true}, {num: 12, truth: true},
      {num: '12.96', truth: true}, {num: '12.9600', truth: true},
      {num: '12.9601', truth: false}, {num: '12.10240', truth: false},
      {num: 13, truth: false}
    ]
  }];
  checkEachUserAgentDetected(userAgents, 'EDGE');
}

function testOpera() {
  var opera = {};
  var userAgents = [{
    ua: 'Opera/9.80 (Windows NT 5.1; U; en) Presto/2.2.15 Version/10.01',
    versions: [
      {num: 9, truth: true}, {num: '10.1', truth: true},
      {num: 11, truth: false}
    ]
  }];
  replacer.set(goog.global, 'opera', opera);
  opera.version = '10.01';
  checkEachUserAgentDetected(userAgents, 'OPERA');
}

function testFirefox() {
  var userAgents = [
    {
      ua: 'Mozilla/6.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; ' +
          'rv:2.0.0.0) Gecko/20061028 Firefox/3.0',
      versions: [
        {num: 2, truth: true}, {num: '3.0', truth: true},
        {num: '3.5.3', truth: false}
      ]
    },
    {
      ua: 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; ' +
          'rv:1.8.1.4) Gecko/20070515 Firefox/2.0.4',
      versions: [
        {num: 2, truth: true}, {num: '2.0.4', truth: true},
        {num: 3, truth: false}, {num: '3.5.3', truth: false}
      ]
    },
    {
      ua: 'Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/6.0 Firefox/6.0',
      versions: [
        {num: 6, truth: true}, {num: '6.0', truth: true},
        {num: 7, truth: false}, {num: '7.0', truth: false}
      ]
    }
  ];

  checkEachUserAgentDetected(userAgents, 'FIREFOX');

  // Mozilla reported to us that they plan this UA format starting
  // in Firefox 13.
  // See bug at https://bugzilla.mozilla.org/show_bug.cgi?id=588909
  mockAgent.setNavigator({product: 'Gecko'});
  assertBrowserAndVersion(
      'Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/6.0 Firefox/6.0', 'FIREFOX',
      '6.0');
}

function testChrome() {
  var userAgents = [
    {
      ua: 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) ' +
          'AppleWebKit/525.19 (KHTML, like Gecko) Chrome/0.2.153.0 ' +
          'Safari/525.19',
      versions: [{num: '0.2.153', truth: true}, {num: 1, truth: false}]
    },
    {
      ua: 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) ' +
          'AppleWebKit/532.3 (KHTML, like Gecko) Chrome/4.0.223.11 ' +
          'Safari/532.3',
      versions: [
        {num: 4, truth: true}, {num: '0.2.153', truth: true},
        {num: '4.1.223.13', truth: false}, {num: '4.0.223.10', truth: true}
      ]
    },
    {
      ua: 'Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B)' +
          'AppleWebKit/535.19 (KHTML, like Gecko) ' +
          'Chrome/18.0.1025.133 Mobile' +
          'Safari/535.19',
      versions: [
        {num: 18, truth: true}, {num: '0.2.153', truth: true},
        {num: 29, truth: false}, {num: '18.0.1025.133', truth: true}
      ]
    },
    {
      ua: 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) ' +
          'AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/56.0.2924.79 ' +
          'Mobile/14D27 Safari/602.1',
      versions: [
        {num: '56.1.2924.79', truth: false},
        {num: '56.0.2924.79', truth: true}
      ]
    }
  ];
  checkEachUserAgentDetected(userAgents, 'CHROME');
}

function testSafari() {
  var userAgents = [
    {
      ua: 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; de-de) ' +
          'AppleWebKit/534.16+ (KHTML, like Gecko) Version/5.0.3 ' +
          'Safari/533.19.4',
      versions: [
        {num: 5, truth: true}, {num: '5.0.3', truth: true},
        {num: '5.0.4', truth: false}, {num: '533', truth: false}
      ]
    },
    {
      ua: 'Mozilla/5.0 (Windows; U; Windows NT 6.0; pl-PL) ' +
          'AppleWebKit/525.19 (KHTML, like Gecko) Version/3.1.2 Safari/525.21',
      versions: [
        {num: 3, truth: true}, {num: '3.0', truth: true},
        {num: '3.1.2', truth: true}
      ]
    },
    {
      ua: 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_3; en-us) ' +
          'AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.20',
      versions: [
        {num: 3, truth: true}, {num: '3.1.1', truth: true},
        {num: '3.1.2', truth: false}, {num: '525.21', truth: false}
      ]
    },

    // Safari 1 and 2 do not report product version numbers in their
    // user-agent strings. VERSION for these browsers will be set to ''.
    {
      ua: 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; ja-jp) ' +
          'AppleWebKit/418.9.1 (KHTML, like Gecko) Safari/419.3',
      versions: [
        {num: 3, truth: false}, {num: 2, truth: false}, {num: 1, truth: false},
        {num: 0, truth: true}, {num: '0', truth: true},
        {num: '', truth: true}
      ]
    }
  ];
  checkEachUserAgentDetected(userAgents, 'SAFARI');
}

function testIphone() {
  var userAgents = [
    {
      ua: 'Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ ' +
          '(KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3',
      versions: [
        {num: '3.0.1A543a', truth: true}, {num: '3.0', truth: true},
        {num: '3.0.1B543a', truth: false}, {num: '3.1.1A543a', truth: false},
        {num: '3.0.1A320c', truth: true}, {num: '3.0.3A100a', truth: false}
      ]
    },
    {
      ua: 'Mozilla/5.0 (iPod; U; CPU like Mac OS X; en) AppleWebKit/420.1 ' +
          '(KHTML, like Gecko) Version/3.0 Mobile/3A100a Safari/419.3',
      versions: [
        {num: '3.0.1A543a', truth: true}, {num: '3.0.3A100a', truth: true}
      ]
    }
  ];
  checkEachUserAgentDetected(userAgents, 'IPHONE');
}

function testIpad() {
  var userAgents = [
    {
      ua: 'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) ' +
          'AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 ' +
          'Mobile/7B334b Safari/531.21.10',
      versions: [
        {num: '4.0.4.7B334b', truth: true}, {num: '4.0', truth: true},
        {num: '4.0.4.7C334b', truth: false}, {num: '4.1.7B334b', truth: false},
        {num: '4.0.4.7B320c', truth: true},
        {num: '4.0.4.8B334b', truth: false}
      ]
    },
    // Webview in the Facebook iOS app
    {
      ua: 'Mozilla/5.0 (iPad; CPU OS 8_1 like Mac OS X) AppleWebKit/600.1.4' +
          '(KHTML, like Gecko) Mobile/12B410 [FBAN/FBIOS;FBAV/16.0.0.13.22;' +
          'FBBV/4697910;FBDV/iPad3,4;FBMD/iPad;FBSN/iPhone OS;FBSV/8.1;' +
          'FBSS/2; FBCR/;FBID/tablet;FBLC/ja_JP;FBOP/1]',
      versions: [{num: '', truth: true}]
    }
  ];
  checkEachUserAgentDetected(userAgents, 'IPAD');
}

function testAndroid() {
  var userAgents = [
    {
      ua: 'Mozilla/5.0 (Linux; U; Android 0.5; en-us) AppleWebKit/522+ ' +
          '(KHTML, like Gecko) Safari/419.3',
      versions: [{num: 0.5, truth: true}, {num: '1.0', truth: false}]
    },
    {
      ua: 'Mozilla/5.0 (Linux; U; Android 1.0; en-us; dream) ' +
          'AppleWebKit/525.10+ (KHTML, like Gecko) Version/3.0.4 Mobile ' +
          'Safari/523.12.2',
      versions: [
        {num: 0.5, truth: true}, {num: 1, truth: true},
        {num: '1.0', truth: true}, {num: '3.0.12', truth: false}
      ]
    }
  ];
  checkEachUserAgentDetected(userAgents, 'ANDROID');
}

function testAndroidLegacyBehavior() {
  mockAgent.setUserAgentString(
      goog.labs.userAgent.testAgents.FIREFOX_ANDROID_TABLET);
  updateUserAgentUtils();
  // Historically, goog.userAgent.product.ANDROID has referred to the
  // Android browser, not the platform. Firefox on Android should
  // be false.
  assertFalse(goog.userAgent.product.ANDROID);
}

function testSafariIosLegacyBehavior() {
  mockAgent.setUserAgentString(goog.labs.userAgent.testAgents.SAFARI_IPHONE_6);
  updateUserAgentUtils();
  // Historically, goog.userAgent.product.SAFARI has referred to the
  // Safari desktop browser, not the mobile browser.
  assertFalse(goog.userAgent.product.SAFARI);
}