Skip to content
Snippets Groups Projects
Commit 6b9cc7ed authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Starting unit tests on the validation module. Renaming...

Starting unit tests on the validation module.  Renaming browserid-storage_unit_test to storage_unit_test.
parent b5471108
No related branches found
No related tags found
No related merge requests found
......@@ -39,31 +39,6 @@ steal.plugins("jquery", "funcunit/qunit").then("/dialog/resources/browserid", fu
module("browserid-unit");
var bid = BrowserID;
test("email address x@y.z is valid", function() {
ok(bid.verifyEmail("x@y.z"), "x@y.z is valid");
});
test("email address x@y.z.w is valid", function() {
ok(bid.verifyEmail("x@y.z.w"), "x@y.z.w is valid");
});
test("email address x.v@y.z.w is valid", function() {
ok(bid.verifyEmail("x.v@y.z.w"), "x.v@y.z.w is valid");
});
test("email address x_v@y.z.w is valid", function() {
ok(bid.verifyEmail("x_v@y.z.w"), "x_v@y.z.w is valid");
});
test("email address x is not valid", function() {
equal(bid.verifyEmail("x"), false, "x is not valid");
});
test("email address x@y is not valid", function() {
equal(bid.verifyEmail("x@y"), false, "x@y is not valid");
});
});
steal("/dialog/resources/browserid.js",
"/dialog/resources/storage.js",
"/dialog/resources/tooltip.js",
"/dialog/resources/validation.js",
"/dialog/resources/underscore-min.js")
.plugins("funcunit/qunit")
.then("browserid_unit_test")
.then("browserid-storage_unit_test")
.then("validation_unit_test")
.then("storage_unit_test")
.then("browserid-network_test")
.then("browserid-identities_unit_test")
/*jshint browsers:true, forin: true, laxbreak: true */
/*global steal: true, test: true, start: true, stop: true, module: true, ok: true, equal: true, BrowserID: true */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mozilla BrowserID.
*
* The Initial Developer of the Original Code is Mozilla.
* Portions created by the Initial Developer are Copyright (C) 2011
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
steal.plugins("jquery", "funcunit/qunit").then("/dialog/resources/browserid", function() {
"use strict";
var bid = BrowserID,
validation = bid.Validation,
tooltipShown,
origShowTooltip;
function showTooltip(el) {
tooltipShown = true;
}
module("validation-unit", {
setup: function() {
origShowTooltip = bid.Tooltip.showTooltip;
bid.Tooltip.showTooltip = showTooltip;
tooltipShown = false;
},
teardown: function() {
bid.Tooltip.showTooltip = origShowTooltip;
}
});
test("email address x@y.z is valid", function() {
ok(bid.verifyEmail("x@y.z"), "x@y.z is valid");
});
test("email address x@y.z.w is valid", function() {
ok(bid.verifyEmail("x@y.z.w"), "x@y.z.w is valid");
});
test("email address x.v@y.z.w is valid", function() {
ok(bid.verifyEmail("x.v@y.z.w"), "x.v@y.z.w is valid");
});
test("email address x_v@y.z.w is valid", function() {
ok(bid.verifyEmail("x_v@y.z.w"), "x_v@y.z.w is valid");
});
test("email address x is not valid", function() {
equal(bid.verifyEmail("x"), false, "x is not valid");
});
test("email address x@y is not valid", function() {
equal(bid.verifyEmail("x@y"), false, "x@y is not valid");
});
test("email address x@y. is not valid", function() {
equal(bid.verifyEmail("x@y."), false, "x@y. is not valid");
});
test("email with valid email", function() {
var valid = validation.email("testuser@testuser.com");
ok(valid, "valid email is valid");
equal(tooltipShown, false, "valid email shows no tooltip");
});
test("email with empty email", function() {
var valid = validation.email("");
equal(valid, valid, "missing email is missing");
equal(tooltipShown, true, "missing email shows no tooltip");
});
test("email with invalid email", function() {
var valid = validation.email("testuser@testuser");
equal(valid, valid, "invalid email is invalid");
equal(tooltipShown, true, "invalid email shows no tooltip");
});
test("validateEmailAndPassword with valid email and password", function() {
var valid = validation.emailAndPassword("testuser@testuser.com", "password");
ok(valid, "valid email and password are valid");
equal(tooltipShown, false, "valid email and password shows no tooltip");
});
test("validateEmailAndPassword with empty email", function() {
var valid = validation.emailAndPassword("", "password");
equal(valid, false, "empty email is invalid");
equal(tooltipShown, true, "empty email shows tooltip");
});
test("validateEmailAndPassword with invalid email", function() {
var valid = validation.emailAndPassword("testuser", "password");
equal(valid, false, "invalid email is invalid");
equal(tooltipShown, true, "invalid email shows tooltip");
});
test("validateEmailAndPassword with empty password", function() {
var valid = validation.emailAndPassword("testuser@testuser.com", "");
equal(valid, false, "empty password is invalid");
equal(tooltipShown, true, "empty password shows tooltip");
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment