From 595b4ea097bcb512173b6d4a12924ea1a3d70ecd Mon Sep 17 00:00:00 2001
From: Misko Hevery
Date: Mon, 18 Jan 2010 10:47:03 -0800
Subject: checkpoint for integration with angular
---
Rakefile | 2 +-
css/angular.css | 8 +-
css/angular_images/arrow_ascend.png | Bin 0 -> 3093 bytes
css/angular_images/arrow_descend.png | Bin 0 -> 3076 bytes
css/angular_images/arrow_left.gif | Bin 0 -> 102 bytes
css/angular_images/arrow_right.gif | Bin 0 -> 102 bytes
css/angular_images/loader-bar.gif | Bin 0 -> 10819 bytes
css/images/arrow_ascend.png | Bin 3093 -> 0 bytes
css/images/arrow_descend.png | Bin 3076 -> 0 bytes
css/images/arrow_left.gif | Bin 102 -> 0 bytes
css/images/arrow_right.gif | Bin 102 -> 0 bytes
css/images/loader-bar.gif | Bin 10819 -> 0 bytes
jsTestDriver.conf | 4 +-
lib/jasmine-jstd-adapter/JasmineAdapter.js | 96 ++
lib/jasmine/jasmine-0.10.0.js | 2261 ++++++++++++++++++++++++++++
src/Angular.js | 414 +++++
src/Loader.js | 424 ------
src/angular-bootstrap.js | 115 --
test/AngularTest.js | 60 +
test/LoaderTest.js | 70 -
test/testabilityPatch.js | 2 +-
21 files changed, 2838 insertions(+), 618 deletions(-)
create mode 100644 css/angular_images/arrow_ascend.png
create mode 100644 css/angular_images/arrow_descend.png
create mode 100644 css/angular_images/arrow_left.gif
create mode 100644 css/angular_images/arrow_right.gif
create mode 100644 css/angular_images/loader-bar.gif
delete mode 100644 css/images/arrow_ascend.png
delete mode 100644 css/images/arrow_descend.png
delete mode 100644 css/images/arrow_left.gif
delete mode 100644 css/images/arrow_right.gif
delete mode 100644 css/images/loader-bar.gif
create mode 100644 lib/jasmine-jstd-adapter/JasmineAdapter.js
create mode 100644 lib/jasmine/jasmine-0.10.0.js
create mode 100644 src/Angular.js
delete mode 100644 src/Loader.js
delete mode 100644 src/angular-bootstrap.js
create mode 100644 test/AngularTest.js
delete mode 100644 test/LoaderTest.js
diff --git a/Rakefile b/Rakefile
index 8f7bc7ec..56f7a9c4 100644
--- a/Rakefile
+++ b/Rakefile
@@ -34,7 +34,7 @@ task :compile do
concat = %x(cat \
src/angular.prefix \
lib/webtoolkit/webtoolkit.base64.js \
- src/Loader.js \
+ src/Angular.js \
src/API.js \
src/Binder.js \
src/ControlBar.js \
diff --git a/css/angular.css b/css/angular.css
index 08065295..f90c5d07 100644
--- a/css/angular.css
+++ b/css/angular.css
@@ -63,8 +63,8 @@ div.ui-widget {
background-repeat: no-repeat;
background-position: right;
}
-.ng-ascend { background-image: url(images/arrow_ascend.png); }
-.ng-descend { background-image: url(images/arrow_descend.png); }
+.ng-ascend { background-image: url(angular_images/arrow_ascend.png); }
+.ng-descend { background-image: url(angular_images/arrow_descend.png); }
/*****************
* TIP
@@ -83,7 +83,7 @@ div.ui-widget {
}
#ng-callout .ng-arrow-left{
- background-image: url(images/arrow_left.gif);
+ background-image: url(angular_images/arrow_left.gif);
background-repeat: no-repeat;
background-position: left top;
position: absolute;
@@ -95,7 +95,7 @@ div.ui-widget {
}
#ng-callout .ng-arrow-right{
- background-image: url(images/arrow_right.gif);
+ background-image: url(angular_images/arrow_right.gif);
background-repeat: no-repeat;
background-position: left top;
position: absolute;
diff --git a/css/angular_images/arrow_ascend.png b/css/angular_images/arrow_ascend.png
new file mode 100644
index 00000000..dd27b92b
Binary files /dev/null and b/css/angular_images/arrow_ascend.png differ
diff --git a/css/angular_images/arrow_descend.png b/css/angular_images/arrow_descend.png
new file mode 100644
index 00000000..ec1cb5df
Binary files /dev/null and b/css/angular_images/arrow_descend.png differ
diff --git a/css/angular_images/arrow_left.gif b/css/angular_images/arrow_left.gif
new file mode 100644
index 00000000..4c9e5c66
Binary files /dev/null and b/css/angular_images/arrow_left.gif differ
diff --git a/css/angular_images/arrow_right.gif b/css/angular_images/arrow_right.gif
new file mode 100644
index 00000000..3252c359
Binary files /dev/null and b/css/angular_images/arrow_right.gif differ
diff --git a/css/angular_images/loader-bar.gif b/css/angular_images/loader-bar.gif
new file mode 100644
index 00000000..47adbf03
Binary files /dev/null and b/css/angular_images/loader-bar.gif differ
diff --git a/css/images/arrow_ascend.png b/css/images/arrow_ascend.png
deleted file mode 100644
index dd27b92b..00000000
Binary files a/css/images/arrow_ascend.png and /dev/null differ
diff --git a/css/images/arrow_descend.png b/css/images/arrow_descend.png
deleted file mode 100644
index ec1cb5df..00000000
Binary files a/css/images/arrow_descend.png and /dev/null differ
diff --git a/css/images/arrow_left.gif b/css/images/arrow_left.gif
deleted file mode 100644
index 4c9e5c66..00000000
Binary files a/css/images/arrow_left.gif and /dev/null differ
diff --git a/css/images/arrow_right.gif b/css/images/arrow_right.gif
deleted file mode 100644
index 3252c359..00000000
Binary files a/css/images/arrow_right.gif and /dev/null differ
diff --git a/css/images/loader-bar.gif b/css/images/loader-bar.gif
deleted file mode 100644
index 47adbf03..00000000
Binary files a/css/images/loader-bar.gif and /dev/null differ
diff --git a/jsTestDriver.conf b/jsTestDriver.conf
index ebd45d9d..1fbe05a7 100644
--- a/jsTestDriver.conf
+++ b/jsTestDriver.conf
@@ -5,7 +5,7 @@ load:
- lib/jquery/jquery-1.3.2.js
- lib/jquery/jquery-ui-1.7.1.custom.min.js
- lib/underscore/underscore.js
- - src/Loader.js
+ - src/Angular.js
- src/*.js
- src/test/_namespace.js
- src/test/*.js
@@ -14,7 +14,5 @@ load:
- test/*.js
exclude:
- - src/angular-bootstrap.js
- src/angular.prefix
- src/angular.suffix
-
\ No newline at end of file
diff --git a/lib/jasmine-jstd-adapter/JasmineAdapter.js b/lib/jasmine-jstd-adapter/JasmineAdapter.js
new file mode 100644
index 00000000..83a1deed
--- /dev/null
+++ b/lib/jasmine-jstd-adapter/JasmineAdapter.js
@@ -0,0 +1,96 @@
+/**
+ * @fileoverview Jasmine JsTestDriver Adapter.
+ * @author ibolmo@gmail.com (Olmo Maldonado)
+ */
+
+(function() {
+
+// Suite/TestCase before and after function stacks.
+var before = [];
+var after = [];
+
+jasmine.Env.prototype.describe = (function(describe){
+
+ // TODO(ibolmo): Support nested describes.
+ return function(description, specDefinitions){
+ this.currentTestCase = TestCase(description);
+ return describe.call(this, description, specDefinitions);
+ };
+
+})(jasmine.Env.prototype.describe);
+
+
+jasmine.Env.prototype.it = (function(it){
+
+ return function(desc, func){
+ var spec = it.call(this, desc, func);
+ this.currentTestCase.prototype['test that it ' + desc] = func;
+ return spec;
+ };
+
+})(jasmine.Env.prototype.it);
+
+
+jasmine.Env.prototype.beforeEach = (function(beforeEach){
+
+ // TODO(ibolmo): Support beforeEach TestCase.
+ return function(beforeEachFunction) {
+ beforeEach.call(this, beforeEachFunction);
+ if (this.currentTestCase) {
+ this.currentTestCase.prototype.setUp = beforeEachFunction;
+ } else {
+ before.push(beforeEachFunction);
+ }
+ };
+
+})(jasmine.Env.prototype.beforeEach);
+
+
+jasmine.Env.prototype.afterEach = (function(afterEach){
+
+ // TODO(ibolmo): Support afterEach TestCase.
+ return function(afterEachFunction) {
+ afterEach.call(this, afterEachFunction);
+ if (this.currentTestCase) {
+ this.currentTestCase.prototype.tearDown = afterEachFunction;
+ } else {
+ after.push(afterEachFunction);
+ }
+ };
+
+})(jasmine.Env.prototype.afterEach);
+
+
+jasmine.NestedResults.prototype.addResult = (function(addResult){
+
+ return function(result) {
+ addResult.call(this, result);
+ if (result.type != 'MessageResult' && !result.passed()) fail(result.message);
+ };
+
+})(jasmine.NestedResults.prototype.addResult);
+
+
+jstestdriver.plugins.TestRunnerPlugin.prototype.runTestConfiguration = (function(runTestConfiguration){
+
+ return function(testRunConfiguration, onTestDone, onTestRunConfigurationComplete){
+ for (var i = 0, l = before.length; i < l; i++) before[i]();
+ onTestRunConfigurationComplete = (function(configurationComplete){
+
+ return function() {
+ for (var i = 0, l = after.length; i < l; i++) after[i]();
+ configurationComplete();
+ };
+
+ })(onTestRunConfigurationComplete);
+ runTestConfiguration.call(this, testRunConfiguration, onTestDone, onTestRunConfigurationComplete);
+ };
+
+})(jstestdriver.plugins.TestRunnerPlugin.prototype.runTestConfiguration);
+
+
+// Reset environment with overriden methods.
+jasmine.currentEnv_ = null;
+jasmine.getEnv();
+
+})();
diff --git a/lib/jasmine/jasmine-0.10.0.js b/lib/jasmine/jasmine-0.10.0.js
new file mode 100644
index 00000000..bb7547e8
--- /dev/null
+++ b/lib/jasmine/jasmine-0.10.0.js
@@ -0,0 +1,2261 @@
+/**
+ * Top level namespace for Jasmine, a lightweight JavaScript BDD/spec/testing framework.
+ *
+ * @namespace
+ */
+var jasmine = {};
+
+/**
+ * @private
+ */
+jasmine.unimplementedMethod_ = function() {
+ throw new Error("unimplemented method");
+};
+
+/**
+ * Use jasmine.undefined instead of undefined, since undefined 0;
+};
+
+/**
+ * Returns a matchable 'generic' object of the class type. For use in expecations of type when values don't matter.
+ *
+ * @example
+ * // don't care about which function is passed in, as long as it's a function
+ * expect(mySpy).wasCalledWith(jasmine.any(Function));
+ *
+ * @param {Class} clazz
+ * @returns matchable object of the type clazz
+ */
+jasmine.any = function(clazz) {
+ return new jasmine.Matchers.Any(clazz);
+};
+
+/**
+ * Jasmine Spies are test doubles that can act as stubs, spies, fakes or when used in an expecation, mocks.
+ *
+ * Spies should be created in test setup, before expectations. They can then be checked, using the standard Jasmine
+ * expectation syntax. Spies can be checked if they were called or not and what the calling params were.
+ *
+ * A Spy has the following mehtod: wasCalled, callCount, mostRecentCall, and argsForCall (see docs)
+ * Spies are torn down at the end of every spec.
+ *
+ * Note: Do not call new jasmine.Spy() directly - a spy must be created using spyOn, jasmine.createSpy or jasmine.createSpyObj.
+ *
+ * @example
+ * // a stub
+ * var myStub = jasmine.createSpy('myStub'); // can be used anywhere
+ *
+ * // spy example
+ * var foo = {
+ * not: function(bool) { return !bool; }
+ * }
+ *
+ * // actual foo.not will not be called, execution stops
+ * spyOn(foo, 'not');
+
+ // foo.not spied upon, execution will continue to implementation
+ * spyOn(foo, 'not').andCallThrough();
+ *
+ * // fake example
+ * var foo = {
+ * not: function(bool) { return !bool; }
+ * }
+ *
+ * // foo.not(val) will return val
+ * spyOn(foo, 'not').andCallFake(function(value) {return value;});
+ *
+ * // mock example
+ * foo.not(7 == 7);
+ * expect(foo.not).wasCalled();
+ * expect(foo.not).wasCalledWith(true);
+ *
+ * @constructor
+ * @see spyOn, jasmine.createSpy, jasmine.createSpyObj
+ * @param {String} name
+ */
+jasmine.Spy = function(name) {
+ /**
+ * The name of the spy, if provided.
+ */
+ this.identity = name || 'unknown';
+ /**
+ * Is this Object a spy?
+ */
+ this.isSpy = true;
+ /**
+ * The actual function this spy stubs.
+ */
+ this.plan = function() {
+ };
+ /**
+ * Tracking of the most recent call to the spy.
+ * @example
+ * var mySpy = jasmine.createSpy('foo');
+ * mySpy(1, 2);
+ * mySpy.mostRecentCall.args = [1, 2];
+ */
+ this.mostRecentCall = {};
+
+ /**
+ * Holds arguments for each call to the spy, indexed by call count
+ * @example
+ * var mySpy = jasmine.createSpy('foo');
+ * mySpy(1, 2);
+ * mySpy(7, 8);
+ * mySpy.mostRecentCall.args = [7, 8];
+ * mySpy.argsForCall[0] = [1, 2];
+ * mySpy.argsForCall[1] = [7, 8];
+ */
+ this.argsForCall = [];
+ this.calls = [];
+};
+
+/**
+ * Tells a spy to call through to the actual implemenatation.
+ *
+ * @example
+ * var foo = {
+ * bar: function() { // do some stuff }
+ * }
+ *
+ * // defining a spy on an existing property: foo.bar
+ * spyOn(foo, 'bar').andCallThrough();
+ */
+jasmine.Spy.prototype.andCallThrough = function() {
+ this.plan = this.originalValue;
+ return this;
+};
+
+/**
+ * For setting the return value of a spy.
+ *
+ * @example
+ * // defining a spy from scratch: foo() returns 'baz'
+ * var foo = jasmine.createSpy('spy on foo').andReturn('baz');
+ *
+ * // defining a spy on an existing property: foo.bar() returns 'baz'
+ * spyOn(foo, 'bar').andReturn('baz');
+ *
+ * @param {Object} value
+ */
+jasmine.Spy.prototype.andReturn = function(value) {
+ this.plan = function() {
+ return value;
+ };
+ return this;
+};
+
+/**
+ * For throwing an exception when a spy is called.
+ *
+ * @example
+ * // defining a spy from scratch: foo() throws an exception w/ message 'ouch'
+ * var foo = jasmine.createSpy('spy on foo').andThrow('baz');
+ *
+ * // defining a spy on an existing property: foo.bar() throws an exception w/ message 'ouch'
+ * spyOn(foo, 'bar').andThrow('baz');
+ *
+ * @param {String} exceptionMsg
+ */
+jasmine.Spy.prototype.andThrow = function(exceptionMsg) {
+ this.plan = function() {
+ throw exceptionMsg;
+ };
+ return this;
+};
+
+/**
+ * Calls an alternate implementation when a spy is called.
+ *
+ * @example
+ * var baz = function() {
+ * // do some stuff, return something
+ * }
+ * // defining a spy from scratch: foo() calls the function baz
+ * var foo = jasmine.createSpy('spy on foo').andCall(baz);
+ *
+ * // defining a spy on an existing property: foo.bar() calls an anonymnous function
+ * spyOn(foo, 'bar').andCall(function() { return 'baz';} );
+ *
+ * @param {Function} fakeFunc
+ */
+jasmine.Spy.prototype.andCallFake = function(fakeFunc) {
+ this.plan = fakeFunc;
+ return this;
+};
+
+/**
+ * Resets all of a spy's the tracking variables so that it can be used again.
+ *
+ * @example
+ * spyOn(foo, 'bar');
+ *
+ * foo.bar();
+ *
+ * expect(foo.bar.callCount).toEqual(1);
+ *
+ * foo.bar.reset();
+ *
+ * expect(foo.bar.callCount).toEqual(0);
+ */
+jasmine.Spy.prototype.reset = function() {
+ this.wasCalled = false;
+ this.callCount = 0;
+ this.argsForCall = [];
+ this.calls = [];
+ this.mostRecentCall = {};
+};
+
+jasmine.createSpy = function(name) {
+
+ var spyObj = function() {
+ spyObj.wasCalled = true;
+ spyObj.callCount++;
+ var args = jasmine.util.argsToArray(arguments);
+ spyObj.mostRecentCall.object = this;
+ spyObj.mostRecentCall.args = args;
+ spyObj.argsForCall.push(args);
+ spyObj.calls.push({object: this, args: args});
+ return spyObj.plan.apply(this, arguments);
+ };
+
+ var spy = new jasmine.Spy(name);
+
+ for (var prop in spy) {
+ spyObj[prop] = spy[prop];
+ }
+
+ spyObj.reset();
+
+ return spyObj;
+};
+
+/**
+ * Determines whether an object is a spy.
+ *
+ * @param {jasmine.Spy|Object} putativeSpy
+ * @returns {Boolean}
+ */
+jasmine.isSpy = function(putativeSpy) {
+ return putativeSpy && putativeSpy.isSpy;
+};
+
+/**
+ * Creates a more complicated spy: an Object that has every property a function that is a spy. Used for stubbing something
+ * large in one call.
+ *
+ * @param {String} baseName name of spy class
+ * @param {Array} methodNames array of names of methods to make spies
+ */
+jasmine.createSpyObj = function(baseName, methodNames) {
+ var obj = {};
+ for (var i = 0; i < methodNames.length; i++) {
+ obj[methodNames[i]] = jasmine.createSpy(baseName + '.' + methodNames[i]);
+ }
+ return obj;
+};
+
+jasmine.log = function(message) {
+ jasmine.getEnv().currentSpec.log(message);
+};
+
+/**
+ * Function that installs a spy on an existing object's method name. Used within a Spec to create a spy.
+ *
+ * @example
+ * // spy example
+ * var foo = {
+ * not: function(bool) { return !bool; }
+ * }
+ * spyOn(foo, 'not'); // actual foo.not will not be called, execution stops
+ *
+ * @see jasmine.createSpy
+ * @param obj
+ * @param methodName
+ * @returns a Jasmine spy that can be chained with all spy methods
+ */
+var spyOn = function(obj, methodName) {
+ return jasmine.getEnv().currentSpec.spyOn(obj, methodName);
+};
+
+/**
+ * Creates a Jasmine spec that will be added to the current suite.
+ *
+ * // TODO: pending tests
+ *
+ * @example
+ * it('should be true', function() {
+ * expect(true).toEqual(true);
+ * });
+ *
+ * @param {String} desc description of this specification
+ * @param {Function} func defines the preconditions and expectations of the spec
+ */
+var it = function(desc, func) {
+ return jasmine.getEnv().it(desc, func);
+};
+
+/**
+ * Creates a disabled Jasmine spec.
+ *
+ * A convenience method that allows existing specs to be disabled temporarily during development.
+ *
+ * @param {String} desc description of this specification
+ * @param {Function} func defines the preconditions and expectations of the spec
+ */
+var xit = function(desc, func) {
+ return jasmine.getEnv().xit(desc, func);
+};
+
+/**
+ * Starts a chain for a Jasmine expectation.
+ *
+ * It is passed an Object that is the actual value and should chain to one of the many
+ * jasmine.Matchers functions.
+ *
+ * @param {Object} actual Actual value to test against and expected value
+ */
+var expect = function(actual) {
+ return jasmine.getEnv().currentSpec.expect(actual);
+};
+
+/**
+ * Defines part of a jasmine spec. Used in cominbination with waits or waitsFor in asynchrnous specs.
+ *
+ * @param {Function} func Function that defines part of a jasmine spec.
+ */
+var runs = function(func) {
+ jasmine.getEnv().currentSpec.runs(func);
+};
+
+/**
+ * Waits for a timeout before moving to the next runs()-defined block.
+ * @param {Number} timeout
+ */
+var waits = function(timeout) {
+ jasmine.getEnv().currentSpec.waits(timeout);
+};
+
+/**
+ * Waits for the latchFunction to return true before proceeding to the next runs()-defined block.
+ *
+ * @param {Number} timeout
+ * @param {Function} latchFunction
+ * @param {String} message
+ */
+var waitsFor = function(timeout, latchFunction, message) {
+ jasmine.getEnv().currentSpec.waitsFor(timeout, latchFunction, message);
+};
+
+/**
+ * A function that is called before each spec in a suite.
+ *
+ * Used for spec setup, including validating assumptions.
+ *
+ * @param {Function} beforeEachFunction
+ */
+var beforeEach = function(beforeEachFunction) {
+ jasmine.getEnv().beforeEach(beforeEachFunction);
+};
+
+/**
+ * A function that is called after each spec in a suite.
+ *
+ * Used for restoring any state that is hijacked during spec execution.
+ *
+ * @param {Function} afterEachFunction
+ */
+var afterEach = function(afterEachFunction) {
+ jasmine.getEnv().afterEach(afterEachFunction);
+};
+
+/**
+ * Defines a suite of specifications.
+ *
+ * Stores the description and all defined specs in the Jasmine environment as one suite of specs. Variables declared
+ * are accessible by calls to beforeEach, it, and afterEach. Describe blocks can be nested, allowing for specialization
+ * of setup in some tests.
+ *
+ * @example
+ * // TODO: a simple suite
+ *
+ * // TODO: a simple suite with a nested describe block
+ *
+ * @param {String} description A string, usually the class under test.
+ * @param {Function} specDefinitions function that defines several specs.
+ */
+var describe = function(description, specDefinitions) {
+ return jasmine.getEnv().describe(description, specDefinitions);
+};
+
+/**
+ * Disables a suite of specifications. Used to disable some suites in a file, or files, temporarily during development.
+ *
+ * @param {String} description A string, usually the class under test.
+ * @param {Function} specDefinitions function that defines several specs.
+ */
+var xdescribe = function(description, specDefinitions) {
+ return jasmine.getEnv().xdescribe(description, specDefinitions);
+};
+
+
+// Provide the XMLHttpRequest class for IE 5.x-6.x:
+jasmine.XmlHttpRequest = (typeof XMLHttpRequest == "undefined") ? function() {
+ try {
+ return new ActiveXObject("Msxml2.XMLHTTP.6.0");
+ } catch(e) {
+ }
+ try {
+ return new ActiveXObject("Msxml2.XMLHTTP.3.0");
+ } catch(e) {
+ }
+ try {
+ return new ActiveXObject("Msxml2.XMLHTTP");
+ } catch(e) {
+ }
+ try {
+ return new ActiveXObject("Microsoft.XMLHTTP");
+ } catch(e) {
+ }
+ throw new Error("This browser does not support XMLHttpRequest.");
+} : XMLHttpRequest;
+
+/**
+ * Adds suite files to an HTML document so that they are executed, thus adding them to the current
+ * Jasmine environment.
+ *
+ * @param {String} url path to the file to include
+ * @param {Boolean} opt_global
+ */
+jasmine.include = function(url, opt_global) {
+ if (opt_global) {
+ document.write('');
- };
-
- if (scriptConfig.autoLoadDependencies) {
- addScript("/../lib/webtoolkit/webtoolkit.base64.js");
- addScript("/../lib/swfobject/swfobject.js");
- addScript("/../lib/jquery/jquery-1.3.2.js");
- addScript("/../lib/jquery/jquery-ui-1.7.1.custom.min.js");
- addScript("/../lib/underscore/underscore.js");
- addScript("/Loader.js");
- addScript("/API.js");
- addScript("/Binder.js");
- addScript("/ControlBar.js");
- addScript("/DataStore.js");
- addScript("/Filters.js");
- addScript("/JSON.js");
- addScript("/Model.js");
- addScript("/Parser.js");
- addScript("/Scope.js");
- addScript("/Server.js");
- addScript("/Users.js");
- addScript("/Validators.js");
- addScript("/Widgets.js");
- } else {
- addScript("/ajax/libs/swfobject/2.2/swfobject.js", "http://ajax.googleapis.com");
- addScript("/ajax/libs/jquery/1.3.2/jquery.min.js", "http://ajax.googleapis.com");
- addScript("/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js", "http://ajax.googleapis.com");
- }
-
- window.onload = function() {
- var doc = window.document;
- if (scriptConfig.bindRootId) {
- doc = null;
- var ids = scriptConfig.bindRootId.split('|');
- for ( var i = 0; i < ids.length && !doc; i++) {
- var idCond = ids[i].split('?');
- var id = idCond[0];
- if (idCond.length > 1) {
- if (!window.document.getElementById(idCond[1])) {
- continue;
- }
- }
- doc = window.document.getElementById(id);
- }
- }
- if (scriptConfig.autoBind && doc) {
- window.angularScope = angular.compile(doc, scriptConfig);
- }
- if (typeof previousOnLoad === 'function') {
- try {
- previousOnLoad.apply(this, arguments);
- } catch (e) {}
- }
- };
-})(window.onload);
-
-
diff --git a/test/AngularTest.js b/test/AngularTest.js
new file mode 100644
index 00000000..9610ef76
--- /dev/null
+++ b/test/AngularTest.js
@@ -0,0 +1,60 @@
+AngularTest = TestCase('AngularTest');
+
+AngularTest.prototype.testDefaultDatabasePathFromSubdomain = function() {
+ var loader = new Angular(null, null, {server:"http://account.getangular.com", database:"database"});
+ loader.computeConfiguration();
+ assertEquals("database", loader.config.database);
+
+ loader = new Angular(null, null, {server:"http://account.getangular.com"});
+ loader.computeConfiguration();
+ assertEquals("account", loader.config.database);
+
+ loader = new Angular(null, null, {server:"https://account.getangular.com"});
+ loader.computeConfiguration();
+ assertEquals("account", loader.config.database);
+};
+
+
+
+UrlWatcherTest = TestCase('UrlWatcherTest');
+
+UrlWatcherTest.prototype.testUrlWatcher = function () {
+ expectAsserts(2);
+ var location = {href:"http://server", hash:""};
+ var watcher = new UrlWatcher(location);
+ watcher.delay = 1;
+ watcher.listener = function(url){
+ assertEquals('http://getangular.test', url);
+ };
+ watcher.setTimeout = function(fn, delay){
+ assertEquals(1, delay);
+ location.href = "http://getangular.test";
+ watcher.setTimeout = function(fn, delay) {
+ };
+ fn();
+ };
+ watcher.watch();
+};
+
+UrlWatcherTest.prototype.testItShouldFireOnUpdateEventWhenSpecialURLSet = function(){
+ expectAsserts(2);
+ var location = {href:"http://server", hash:"#$iframe_notify=1234"};
+ var watcher = new UrlWatcher(location);
+ angular.callbacks._iframe_notify_1234 = function () {
+ assertEquals("undefined", typeof angularCallbacks._iframe_notify_1234);
+ assertEquals("http://server2#", location.href);
+ };
+ watcher.delay = 1;
+ watcher.expectedUrl = "http://server2";
+ watcher.setTimeout = function(fn, delay){
+ watcher.setTimeout = function(fn, delay) {};
+ fn();
+ };
+ watcher.watch();
+};
+
+FunctionTest = TestCase("FunctionTest");
+
+FunctionTest.prototype.testEscapeHtml = function () {
+ assertEquals("<div>&</div>", escapeHtml('