goog.net.jsloader_test.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-closure-library
Show all versions of google-closure-library
The Google Closure Library is a collection of JavaScript code
designed for use with the Google Closure JavaScript Compiler.
This non-official distribution was prepared by the ClojureScript
team at http://clojure.org/
// Copyright 2011 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.net.jsloaderTest');
goog.setTestOnly('goog.net.jsloaderTest');
goog.require('goog.array');
goog.require('goog.dom');
goog.require('goog.dom.TagName');
goog.require('goog.net.jsloader');
goog.require('goog.net.jsloader.ErrorCode');
goog.require('goog.testing.jsunit');
function setUp() {
goog.provide = goog.nullFunction;
}
function tearDown() {
// Remove all the fake scripts.
var scripts =
goog.array.clone(document.getElementsByTagName(goog.dom.TagName.SCRIPT));
for (var i = 0; i < scripts.length; i++) {
if (scripts[i].src.indexOf('testdata') != -1) {
goog.dom.removeNode(scripts[i]);
}
}
}
// Sunny day scenario for load function.
function testLoad() {
window.test1 = null;
var testUrl = 'testdata/jsloader_test1.js';
var result = goog.net.jsloader.load(testUrl);
return result.then(function() {
var script = result.defaultScope_.script_;
assertNotNull('script created', script);
assertEquals('encoding is utf-8', 'UTF-8', script.charset);
// Check that the URI matches ours.
assertTrue('server URI', script.src.indexOf(testUrl) >= 0);
// Check that the script was really loaded.
assertEquals('verification object', 'Test #1 loaded', window.test1);
});
}
// Sunny day scenario for loadAndVerify function.
function testLoadAndVerify() {
var testUrl = 'testdata/jsloader_test2.js';
var result = goog.net.jsloader.loadAndVerify(testUrl, 'test2');
return result.then(function(verifyObj) {
// Check that the verification object has passed ok.
assertEquals('verification object', 'Test #2 loaded', verifyObj);
});
}
// What happens when the verification object is not set by the loaded script?
function testLoadAndVerifyError() {
var testUrl = 'testdata/jsloader_test2.js';
var result = goog.net.jsloader.loadAndVerify(testUrl, 'fake');
return result.then(fail, function(error) {
// Check that the error code is right.
assertEquals(
'verification error', goog.net.jsloader.ErrorCode.VERIFY_ERROR,
error.code);
});
}
// Tests that callers can cancel the deferred without error.
function testLoadAndVerifyCanceled() {
var testUrl = 'testdata/jsloader_test2.js';
var result = goog.net.jsloader.loadAndVerify(testUrl, 'test2');
result.cancel();
}
// Test the loadMany function.
function testLoadMany() {
window.test1 = null;
window.test4 = null;
// Load test #3 and then #1.
var testUrls1 = ['testdata/jsloader_test3.js', 'testdata/jsloader_test1.js'];
var result = goog.net.jsloader.loadMany(testUrls1);
window.test3Callback = function(msg) {
// Check that the 1st test was not loaded yet.
assertEquals('verification object', null, window.test1);
// Load test #4, which is supposed to wait for #1 to load.
var testUrls2 = ['testdata/jsloader_test4.js'];
goog.net.jsloader.loadMany(testUrls2);
};
window.test4Callback = function(msg) {
// Check that the 1st test was already loaded.
assertEquals('verification object', 'Test #1 loaded', window.test1);
// on last script loaded, set variable
window.test4 = msg;
};
return result.then(function() {
// verify that the last loaded script callback has executed
assertEquals('verification object', 'Test #4 loaded', window.test4);
});
}
// Test the load function with additional options.
function testLoadWithOptions() {
var testUrl = 'testdata/jsloader_test1.js';
var options = {
attributes: {'data-attr1': 'enabled', 'data-attr2': 'disabled'},
timeout: undefined, // Use default
cleanupWhenDone: undefined, // Use default
document: undefined // Use default
};
var result = goog.net.jsloader.load(testUrl, options);
return result.then(function() {
var script = result.defaultScope_.script_;
// Check that the URI matches ours.
assertTrue('server URI', script.src.indexOf(testUrl) >= 0);
// Check that the attributes specified are set on the script tag.
assertEquals(
'attribute option not applied for attr1', 'enabled',
script.getAttribute('data-attr1'));
assertEquals(
'attribute option not applied for attr2', 'disabled',
script.getAttribute('data-attr2'));
});
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy