iframeio_different_base_test.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Copyright 2011 The Closure Library Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS-IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. goog.provide('goog.net.iframeIoDifferentBaseTest');
  15. goog.setTestOnly('goog.net.iframeIoDifferentBaseTest');
  16. goog.require('goog.Promise');
  17. goog.require('goog.events');
  18. goog.require('goog.net.EventType');
  19. goog.require('goog.net.IframeIo');
  20. goog.require('goog.testing.TestCase');
  21. goog.require('goog.testing.jsunit');
  22. function setUpPage() {
  23. goog.testing.TestCase.getActiveTestCase().promiseTimeout = 10000; // 10s
  24. }
  25. function testDifferentBaseUri() {
  26. var io = new goog.net.IframeIo();
  27. return new goog
  28. .Promise(function(resolve, reject) {
  29. goog.events.listen(io, goog.net.EventType.COMPLETE, resolve);
  30. io.send('net/iframeio_different_base_test.txt');
  31. })
  32. .then(function() {
  33. assertNotEquals(
  34. 'File should have expected content.', -1,
  35. io.getResponseText().indexOf('just a file'));
  36. });
  37. }