verifier_test.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Copyright 2016 The Closure Library Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS-IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. /**
  15. * @fileoverview Description of this file.
  16. */
  17. goog.module('goog.labs.useragent.verifierTest');
  18. goog.setTestOnly();
  19. var testSuite = goog.require('goog.testing.testSuite');
  20. var browser = goog.require('goog.labs.userAgent.browser');
  21. var verifier = goog.require('goog.labs.useragent.verifier');
  22. testSuite({
  23. testIEVersion: function() {
  24. var isUserAgentIE = browser.isIE();
  25. var versionByBehavior = verifier.detectIeVersionByBehavior();
  26. var versionByNavigator = verifier.detectIeVersionByNavigator();
  27. var correctedVersion = verifier.getCorrectedIEVersionByNavigator();
  28. if (isUserAgentIE) {
  29. var version = Number(browser.getVersion());
  30. assertEquals('behavior detection incorrect', version, versionByBehavior);
  31. if (version != 11) {
  32. assertEquals(
  33. 'navigator version incorrect', version, versionByNavigator);
  34. } else {
  35. // IE 11 doesn't want to be detected as IE
  36. assertEquals('navigator version incorrect', 0, versionByNavigator);
  37. }
  38. assertEquals('corrected version incorrect', version, correctedVersion);
  39. } else {
  40. assertEquals(0, versionByBehavior);
  41. }
  42. },
  43. });