123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- // Copyright 2007 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.
- /**
- * @fileoverview Mock of IframeIo for unit testing.
- */
- goog.provide('goog.net.MockIFrameIo');
- goog.require('goog.events.EventTarget');
- goog.require('goog.json');
- goog.require('goog.net.ErrorCode');
- goog.require('goog.net.EventType');
- goog.require('goog.net.IframeIo');
- goog.forwardDeclare('goog.testing.TestQueue');
- /**
- * Mock implementation of goog.net.IframeIo. This doesn't provide a mock
- * implementation for all cases, but it's not too hard to add them as needed.
- * @param {goog.testing.TestQueue} testQueue Test queue for inserting test
- * events.
- * @constructor
- * @extends {goog.events.EventTarget}
- * @final
- * @deprecated Use goog.testing.net.MockIFrameIo instead.
- */
- goog.net.MockIFrameIo = function(testQueue) {
- goog.events.EventTarget.call(this);
- /**
- * Queue of events write to
- * @type {goog.testing.TestQueue}
- * @private
- */
- this.testQueue_ = testQueue;
- };
- goog.inherits(goog.net.MockIFrameIo, goog.events.EventTarget);
- /**
- * Whether MockIFrameIo is active.
- * @type {boolean}
- * @private
- */
- goog.net.MockIFrameIo.prototype.active_ = false;
- /**
- * Last content.
- * @type {string}
- * @private
- */
- goog.net.MockIFrameIo.prototype.lastContent_ = '';
- /**
- * Last error code.
- * @type {goog.net.ErrorCode}
- * @private
- */
- goog.net.MockIFrameIo.prototype.lastErrorCode_ = goog.net.ErrorCode.NO_ERROR;
- /**
- * Last error message.
- * @type {string}
- * @private
- */
- goog.net.MockIFrameIo.prototype.lastError_ = '';
- /**
- * Last custom error.
- * @type {Object}
- * @private
- */
- goog.net.MockIFrameIo.prototype.lastCustomError_ = null;
- /**
- * Last URI.
- * @type {goog.Uri}
- * @private
- */
- goog.net.MockIFrameIo.prototype.lastUri_ = null;
- /** @private {Function} */
- goog.net.MockIFrameIo.prototype.errorChecker_;
- /** @private {boolean} */
- goog.net.MockIFrameIo.prototype.success_;
- /** @private {boolean} */
- goog.net.MockIFrameIo.prototype.complete_;
- /**
- * Simulates the iframe send.
- *
- * @param {goog.Uri|string} uri Uri of the request.
- * @param {string=} opt_method Default is GET, POST uses a form to submit the
- * request.
- * @param {boolean=} opt_noCache Append a timestamp to the request to avoid
- * caching.
- * @param {Object|goog.structs.Map=} opt_data Map of key-value pairs.
- */
- goog.net.MockIFrameIo.prototype.send = function(
- uri, opt_method, opt_noCache, opt_data) {
- if (this.active_) {
- throw Error('[goog.net.IframeIo] Unable to send, already active.');
- }
- this.testQueue_.enqueue(['s', uri, opt_method, opt_noCache, opt_data]);
- this.complete_ = false;
- this.active_ = true;
- };
- /**
- * Simulates the iframe send from a form.
- * @param {Element} form Form element used to send the request to the server.
- * @param {string=} opt_uri Uri to set for the destination of the request, by
- * default the uri will come from the form.
- * @param {boolean=} opt_noCache Append a timestamp to the request to avoid
- * caching.
- */
- goog.net.MockIFrameIo.prototype.sendFromForm = function(
- form, opt_uri, opt_noCache) {
- if (this.active_) {
- throw Error('[goog.net.IframeIo] Unable to send, already active.');
- }
- this.testQueue_.enqueue(['s', form, opt_uri, opt_noCache]);
- this.complete_ = false;
- this.active_ = true;
- };
- /**
- * Simulates aborting the current Iframe request.
- * @param {goog.net.ErrorCode=} opt_failureCode Optional error code to use -
- * defaults to ABORT.
- */
- goog.net.MockIFrameIo.prototype.abort = function(opt_failureCode) {
- if (this.active_) {
- this.testQueue_.enqueue(['a', opt_failureCode]);
- this.complete_ = false;
- this.active_ = false;
- this.success_ = false;
- this.lastErrorCode_ = opt_failureCode || goog.net.ErrorCode.ABORT;
- this.dispatchEvent(goog.net.EventType.ABORT);
- this.simulateReady();
- }
- };
- /**
- * Simulates receive of incremental data.
- * @param {Object} data Data.
- */
- goog.net.MockIFrameIo.prototype.simulateIncrementalData = function(data) {
- this.dispatchEvent(new goog.net.IframeIo.IncrementalDataEvent(data));
- };
- /**
- * Simulates the iframe is done.
- * @param {goog.net.ErrorCode} errorCode The error code for any error that
- * should be simulated.
- */
- goog.net.MockIFrameIo.prototype.simulateDone = function(errorCode) {
- if (errorCode) {
- this.success_ = false;
- this.lastErrorCode_ = goog.net.ErrorCode.HTTP_ERROR;
- this.lastError_ = this.getLastError();
- this.dispatchEvent(goog.net.EventType.ERROR);
- } else {
- this.success_ = true;
- this.lastErrorCode_ = goog.net.ErrorCode.NO_ERROR;
- this.dispatchEvent(goog.net.EventType.SUCCESS);
- }
- this.complete_ = true;
- this.dispatchEvent(goog.net.EventType.COMPLETE);
- };
- /**
- * Simulates the IFrame is ready for the next request.
- */
- goog.net.MockIFrameIo.prototype.simulateReady = function() {
- this.dispatchEvent(goog.net.EventType.READY);
- };
- /**
- * @return {boolean} True if transfer is complete.
- */
- goog.net.MockIFrameIo.prototype.isComplete = function() {
- return this.complete_;
- };
- /**
- * @return {boolean} True if transfer was successful.
- */
- goog.net.MockIFrameIo.prototype.isSuccess = function() {
- return this.success_;
- };
- /**
- * @return {boolean} True if a transfer is in progress.
- */
- goog.net.MockIFrameIo.prototype.isActive = function() {
- return this.active_;
- };
- /**
- * Returns the last response text (i.e. the text content of the iframe).
- * Assumes plain text!
- * @return {string} Result from the server.
- */
- goog.net.MockIFrameIo.prototype.getResponseText = function() {
- return this.lastContent_;
- };
- /**
- * Parses the content as JSON. This is a safe parse and may throw an error
- * if the response is malformed.
- * @return {Object} The parsed content.
- */
- goog.net.MockIFrameIo.prototype.getResponseJson = function() {
- return goog.json.parse(this.lastContent_);
- };
- /**
- * Get the uri of the last request.
- * @return {goog.Uri} Uri of last request.
- */
- goog.net.MockIFrameIo.prototype.getLastUri = function() {
- return this.lastUri_;
- };
- /**
- * Gets the last error code.
- * @return {goog.net.ErrorCode} Last error code.
- */
- goog.net.MockIFrameIo.prototype.getLastErrorCode = function() {
- return this.lastErrorCode_;
- };
- /**
- * Gets the last error message.
- * @return {string} Last error message.
- */
- goog.net.MockIFrameIo.prototype.getLastError = function() {
- return goog.net.ErrorCode.getDebugMessage(this.lastErrorCode_);
- };
- /**
- * Gets the last custom error.
- * @return {Object} Last custom error.
- */
- goog.net.MockIFrameIo.prototype.getLastCustomError = function() {
- return this.lastCustomError_;
- };
- /**
- * Sets the callback function used to check if a loaded IFrame is in an error
- * state.
- * @param {Function} fn Callback that expects a document object as it's single
- * argument.
- */
- goog.net.MockIFrameIo.prototype.setErrorChecker = function(fn) {
- this.errorChecker_ = fn;
- };
- /**
- * Gets the callback function used to check if a loaded IFrame is in an error
- * state.
- * @return {Function} A callback that expects a document object as it's single
- * argument.
- */
- goog.net.MockIFrameIo.prototype.getErrorChecker = function() {
- return this.errorChecker_;
- };
|