gecko-dev/browser/components/loop/test/shared/utils_test.js

221 lines
6.6 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
/* global loop, sinon */
/* jshint newcap:false */
var expect = chai.expect;
describe("loop.shared.utils", function() {
"use strict";
var sandbox;
var sharedUtils = loop.shared.utils;
beforeEach(function() {
sandbox = sinon.sandbox.create();
});
afterEach(function() {
navigator.mozLoop = undefined;
sandbox.restore();
});
describe("#getUnsupportedPlatform", function() {
it("should detect iOS", function() {
expect(sharedUtils.getUnsupportedPlatform("iPad")).eql('ios');
expect(sharedUtils.getUnsupportedPlatform("iPod")).eql('ios');
expect(sharedUtils.getUnsupportedPlatform("iPhone")).eql('ios');
expect(sharedUtils.getUnsupportedPlatform("iPhone Simulator")).eql('ios');
});
it("should detect Windows Phone", function() {
expect(sharedUtils.getUnsupportedPlatform("Windows Phone"))
.eql('windows_phone');
});
it("should detect BlackBerry", function() {
expect(sharedUtils.getUnsupportedPlatform("BlackBerry"))
.eql('blackberry');
});
it("shouldn't detect other platforms", function() {
expect(sharedUtils.getUnsupportedPlatform("MacIntel")).eql(null);
});
});
describe("#isFirefox", function() {
it("should detect Firefox", function() {
expect(sharedUtils.isFirefox("Firefox")).eql(true);
expect(sharedUtils.isFirefox("Gecko/Firefox")).eql(true);
expect(sharedUtils.isFirefox("Firefox/Gecko")).eql(true);
expect(sharedUtils.isFirefox("Gecko/Firefox/Chuck Norris")).eql(true);
});
it("shouldn't detect Firefox with other platforms", function() {
expect(sharedUtils.isFirefox("Opera")).eql(false);
});
});
describe("#isFirefoxOS", function() {
describe("without mozActivities", function() {
it("shouldn't detect FirefoxOS on mobile platform", function() {
expect(sharedUtils.isFirefoxOS("mobi")).eql(false);
});
it("shouldn't detect FirefoxOS on non mobile platform", function() {
expect(sharedUtils.isFirefoxOS("whatever")).eql(false);
});
});
describe("with mozActivities", function() {
var realMozActivity;
before(function() {
realMozActivity = window.MozActivity;
window.MozActivity = {};
});
after(function() {
window.MozActivity = realMozActivity;
});
it("should detect FirefoxOS on mobile platform", function() {
expect(sharedUtils.isFirefoxOS("mobi")).eql(true);
});
it("shouldn't detect FirefoxOS on non mobile platform", function() {
expect(sharedUtils.isFirefoxOS("whatever")).eql(false);
});
});
});
describe("#formatDate", function() {
beforeEach(function() {
sandbox.stub(Date.prototype, "toLocaleDateString").returns("fake result");
});
it("should call toLocaleDateString with arguments", function() {
sharedUtils.formatDate(1000);
sinon.assert.calledOnce(Date.prototype.toLocaleDateString);
sinon.assert.calledWithExactly(Date.prototype.toLocaleDateString,
navigator.language,
{year: "numeric", month: "long", day: "numeric"}
);
});
it("should return the formatted string", function() {
expect(sharedUtils.formatDate(1000)).eql("fake result");
});
});
describe("#getBoolPreference", function() {
afterEach(function() {
localStorage.removeItem("test.true");
});
describe("mozLoop set", function() {
beforeEach(function() {
navigator.mozLoop = {
getLoopPref: function(prefName) {
return prefName === "test.true";
}
};
});
it("should return the mozLoop preference", function() {
expect(sharedUtils.getBoolPreference("test.true")).eql(true);
});
it("should not use the localStorage value", function() {
localStorage.setItem("test.false", true);
expect(sharedUtils.getBoolPreference("test.false")).eql(false);
});
});
describe("mozLoop not set", function() {
it("should return the localStorage value", function() {
localStorage.setItem("test.true", true);
expect(sharedUtils.getBoolPreference("test.true")).eql(true);
});
});
});
describe("#composeCallUrlEmail", function() {
var composeEmail;
beforeEach(function() {
// fake mozL10n
sandbox.stub(navigator.mozL10n, "get", function(id) {
switch(id) {
case "share_email_subject5": return "subject";
case "share_email_body5": return "body";
}
});
composeEmail = sandbox.spy();
navigator.mozLoop = {
getLoopPref: sandbox.spy(),
composeEmail: composeEmail
};
});
it("should compose a call url email", function() {
sharedUtils.composeCallUrlEmail("http://invalid", "fake@invalid.tld");
sinon.assert.calledOnce(composeEmail);
sinon.assert.calledWith(composeEmail,
"subject", "body", "fake@invalid.tld");
});
});
describe("#btoa", function() {
it("should encode a basic base64 string", function() {
var result = sharedUtils.btoa(sharedUtils.strToUint8Array("crypto is great"));
expect(result).eql("Y3J5cHRvIGlzIGdyZWF0");
});
it("should pad encoded base64 strings", function() {
var result = sharedUtils.btoa(sharedUtils.strToUint8Array("crypto is grea"));
expect(result).eql("Y3J5cHRvIGlzIGdyZWE=");
result = sharedUtils.btoa(sharedUtils.strToUint8Array("crypto is gre"));
expect(result).eql("Y3J5cHRvIGlzIGdyZQ==");
});
it("should encode a non-unicode base64 string", function() {
var result = sharedUtils.btoa(sharedUtils.strToUint8Array("\uFDFD"));
expect(result).eql("77e9");
});
});
describe("#atob", function() {
it("should decode a basic base64 string", function() {
var result = sharedUtils.Uint8ArrayToStr(sharedUtils.atob("Y3J5cHRvIGlzIGdyZWF0"));
expect(result).eql("crypto is great");
});
it("should decode a padded base64 string", function() {
var result = sharedUtils.Uint8ArrayToStr(sharedUtils.atob("Y3J5cHRvIGlzIGdyZWE="));
expect(result).eql("crypto is grea");
result = sharedUtils.Uint8ArrayToStr(sharedUtils.atob("Y3J5cHRvIGlzIGdyZQ=="));
expect(result).eql("crypto is gre");
});
it("should decode a base64 string that has unicode characters", function() {
var result = sharedUtils.Uint8ArrayToStr(sharedUtils.atob("77e9"));
expect(result).eql("\uFDFD");
});
});
});