aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/ui/media/flickr_test.html
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/ui/media/flickr_test.html')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/ui/media/flickr_test.html114
1 files changed, 0 insertions, 114 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/ui/media/flickr_test.html b/contexts/data/lib/closure-library/closure/goog/ui/media/flickr_test.html
deleted file mode 100644
index 323af79..0000000
--- a/contexts/data/lib/closure-library/closure/goog/ui/media/flickr_test.html
+++ /dev/null
@@ -1,114 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!--
-Copyright 2009 The Closure Library Authors. All Rights Reserved.
-
-Use of this source code is governed by the Apache License, Version 2.0.
-See the COPYING file for details.
--->
-<!--
--->
-<head>
-<meta http-equiv="X-UA-Compatible" content="IE=edge">
-<title>Closure Unit Tests - goog.ui.media.FlickrSet</title>
-<script src="../../base.js"></script>
-<script>
- goog.require('goog.debug.Logger');
- goog.require('goog.dom');
- goog.require('goog.events');
- goog.require('goog.testing.LooseMock');
- goog.require('goog.testing.jsunit');
- goog.require('goog.ui.Component');
- goog.require('goog.ui.Control');
- goog.require('goog.ui.ControlRenderer');
- goog.require('goog.ui.media.FlashObject');
- goog.require('goog.ui.media.FlickrSet');
- goog.require('goog.ui.media.FlickrSetModel');
-</script>
-</head>
-<body>
-<script>
-
- var flickr;
- var control;
- var FLICKR_USER = 'ingawalker';
- var FLICKR_SET = '72057594102831547';
- var FLICKRSET_URL =
- 'http://flickr.com/photos/' + FLICKR_USER + '/sets/' + FLICKR_SET;
- var parent = goog.dom.createElement('div');
-
- function setUp() {
- flickr = new goog.ui.media.FlickrSet();
- var set = new goog.ui.media.FlickrSetModel(FLICKR_USER, FLICKR_SET,
- 'caption');
- control = new goog.ui.media.Media(set, flickr);
- }
-
- function tearDown() {
- control.dispose();
- }
-
- function testBasicRendering() {
- control.render(parent);
- var el = goog.dom.getElementsByTagNameAndClass(
- 'div', goog.ui.media.FlickrSet.CSS_CLASS, parent);
- assertEquals(1, el.length);
- assertEquals(FLICKRSET_URL, control.getDataModel().getUrl());
- }
-
- function testParsingUrl() {
- assertExtractsCorrectly(FLICKR_USER, FLICKR_SET, FLICKRSET_URL);
- // user id with @ sign
- assertExtractsCorrectly('30441750@N06', '7215760789302468',
- 'http://flickr.com/photos/30441750@N06/sets/7215760789302468/');
- // user id with - sign
- assertExtractsCorrectly('30441750-N06', '7215760789302468',
- 'http://flickr.com/photos/30441750-N06/sets/7215760789302468/');
-
- var invalidUrl = 'http://invalidUrl/filename.doc';
- var e = assertThrows('', function() {
- goog.ui.media.FlickrSetModel.newInstance(invalidUrl);
- });
- assertEquals('failed to parse flickr url: ' + invalidUrl, e.message);
- }
-
- function testBuildingUrl() {
- assertEquals(FLICKRSET_URL,
- goog.ui.media.FlickrSetModel.buildUrl(
- FLICKR_USER, FLICKR_SET, FLICKRSET_URL));
- }
-
- function testCreatingModel() {
- var model = new goog.ui.media.FlickrSetModel(FLICKR_USER, FLICKR_SET);
- assertEquals(FLICKR_USER, model.getUserId());
- assertEquals(FLICKR_SET, model.getSetId());
- assertEquals(FLICKRSET_URL, model.getUrl());
- assertUndefined(model.getCaption());
- }
-
- function testSettingWhichFlashUrlToUse() {
- goog.ui.media.FlickrSet.setFlashUrl('http://foo');
- assertEquals(goog.ui.media.FlickrSet.flashUrl_, 'http://foo');
- }
-
- function testCreatingDomOnInitialState() {
- control.render(parent);
- var caption = goog.dom.getElementsByTagNameAndClass(
- 'div',
- goog.ui.media.FlickrSet.CSS_CLASS + '-caption',
- parent);
- assertEquals(1, caption.length);
-
- var flash = goog.dom.getElementsByTagNameAndClass(
- 'div', goog.ui.media.FlashObject.CSS_CLASS, parent);
- assertEquals(1, flash.length);
- }
-
- function assertExtractsCorrectly(expectedUserId, expectedSetId, url) {
- var flickr = goog.ui.media.FlickrSetModel.newInstance(url);
- assertEquals('userId for ' + url, expectedUserId, flickr.getUserId());
- assertEquals('setId for ' + url, expectedSetId, flickr.getSetId());
- }
-</script>
-</body>
-</html>