// Copyright 2006 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.userAgentTest'); goog.setTestOnly('goog.userAgentTest'); goog.require('goog.array'); goog.require('goog.labs.userAgent.platform'); goog.require('goog.labs.userAgent.testAgents'); goog.require('goog.labs.userAgent.util'); goog.require('goog.testing.PropertyReplacer'); goog.require('goog.testing.jsunit'); goog.require('goog.userAgent'); goog.require('goog.userAgentTestUtil'); var documentMode; goog.userAgent.getDocumentMode_ = function() { return documentMode; }; var propertyReplacer = new goog.testing.PropertyReplacer(); var UserAgents = { GECKO: 'GECKO', IE: 'IE', OPERA: 'OPERA', WEBKIT: 'WEBKIT' }; function tearDown() { goog.labs.userAgent.util.setUserAgent(null); documentMode = undefined; propertyReplacer.reset(); } /** * Test browser detection for a user agent configuration. * @param {Array} expectedAgents Array of expected userAgents. * @param {string} uaString User agent string. * @param {string=} opt_product Navigator product string. * @param {string=} opt_vendor Navigator vendor string. */ function assertUserAgent(expectedAgents, uaString, opt_product, opt_vendor) { var mockGlobal = { 'navigator': { 'userAgent': uaString, 'product': opt_product, 'vendor': opt_vendor } }; propertyReplacer.set(goog, 'global', mockGlobal); goog.labs.userAgent.util.setUserAgent(null); goog.userAgentTestUtil.reinitializeUserAgent(); for (var ua in UserAgents) { var isExpected = goog.array.contains(expectedAgents, UserAgents[ua]); assertEquals(isExpected, goog.userAgentTestUtil.getUserAgentDetected(UserAgents[ua])); } } function testOperaInit() { var mockOpera = { 'version': function() { return '9.20'; } }; var mockGlobal = { 'navigator': { 'userAgent': 'Opera/9.20 (Windows NT 5.1; U; de),gzip(gfe)' }, 'opera': mockOpera }; propertyReplacer.set(goog, 'global', mockGlobal); propertyReplacer.set(goog.userAgent, 'getUserAgentString', function() { return 'Opera/9.20 (Windows NT 5.1; U; de),gzip(gfe)'; }); goog.labs.userAgent.util.setUserAgent(null); goog.userAgentTestUtil.reinitializeUserAgent(); assertTrue(goog.userAgent.OPERA); assertEquals('9.20', goog.userAgent.VERSION); // What if 'opera' global has been overwritten? // We must degrade gracefully (rather than throwing JS errors). propertyReplacer.set(goog.global, 'opera', 'bobloblaw'); // NOTE(nnaze): window.opera is now ignored with the migration to // goog.labs.userAgent.*. Version is expected to should stay the same. goog.labs.userAgent.util.setUserAgent(null); goog.userAgentTestUtil.reinitializeUserAgent(); assertUndefined(goog.userAgent.VERSION); } function testCompare() { assertTrue('exact equality broken', goog.userAgent.compare('1.0', '1.0') == 0); assertTrue('mutlidot equality broken', goog.userAgent.compare('1.0.0.0', '1.0') == 0); assertTrue('less than broken', goog.userAgent.compare('1.0.2.1', '1.1') < 0); assertTrue('greater than broken', goog.userAgent.compare('1.1', '1.0.2.1') > 0); assertTrue('b broken', goog.userAgent.compare('1.1', '1.1b') > 0); assertTrue('b broken', goog.userAgent.compare('1.1b', '1.1') < 0); assertTrue('b broken', goog.userAgent.compare('1.1b', '1.1b') == 0); assertTrue('b>a broken', goog.userAgent.compare('1.1b', '1.1a') > 0); assertTrue('a