123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- // 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.html.TrustedResourceUrl');
- goog.require('goog.net.jsloader');
- goog.require('goog.net.jsloader.ErrorCode');
- goog.require('goog.string.Const');
- goog.require('goog.testing.jsunit');
- function setUp() {
- goog.provide = goog.nullFunction;
- }
- function tearDown() {
- // Remove all the fake scripts.
- var scripts =
- goog.array.clone(goog.dom.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 testSafeLoad() {
- window.test1 = null;
- var testUrl = goog.html.TrustedResourceUrl.fromConstant(
- goog.string.Const.from('testdata/jsloader_test1.js'));
- var testUrlValue = goog.html.TrustedResourceUrl.unwrap(testUrl);
- var result = goog.net.jsloader.safeLoad(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(testUrlValue) >= 0);
- // Check that the script was really loaded.
- assertEquals('verification object', 'Test #1 loaded', window.test1);
- });
- }
- // Sunny day scenario for the unsafe 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 = goog.html.TrustedResourceUrl.fromConstant(
- goog.string.Const.from('testdata/jsloader_test2.js'));
- var result = goog.net.jsloader.safeLoadAndVerify(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 = goog.html.TrustedResourceUrl.fromConstant(
- goog.string.Const.from('testdata/jsloader_test2.js'));
- var result = goog.net.jsloader.safeLoadAndVerify(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 = goog.html.TrustedResourceUrl.fromConstant(
- goog.string.Const.from('testdata/jsloader_test2.js'));
- var result = goog.net.jsloader.safeLoadAndVerify(testUrl, 'test2');
- result.cancel();
- }
- // Test the loadMany function.
- function testLoadMany() {
- window.test1 = null;
- window.test4 = null;
- // Load test #3 and then #1.
- var testUrls1 = [
- goog.html.TrustedResourceUrl.fromConstant(
- goog.string.Const.from('testdata/jsloader_test3.js')),
- goog.html.TrustedResourceUrl.fromConstant(
- goog.string.Const.from('testdata/jsloader_test1.js'))
- ];
- var result = goog.net.jsloader.safeLoadMany(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 = [goog.html.TrustedResourceUrl.fromConstant(
- goog.string.Const.from('testdata/jsloader_test4.js'))];
- goog.net.jsloader.safeLoadMany(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 = goog.html.TrustedResourceUrl.fromConstant(
- goog.string.Const.from('testdata/jsloader_test1.js'));
- var testUrlValue = goog.html.TrustedResourceUrl.unwrap(testUrl);
- 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.safeLoad(testUrl, options);
- return result.then(function() {
- var script = result.defaultScope_.script_;
- // Check that the URI matches ours.
- assertTrue('server URI', script.src.indexOf(testUrlValue) >= 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'));
- });
- }
|