mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-19 16:10:22 +00:00
- Also fixed angular.suffix for scenarios - refactored click() to browserTrigger() - Fixed Rakefile with CSS and jQuery
106 lines
2.8 KiB
JavaScript
106 lines
2.8 KiB
JavaScript
/**
|
|
* This class is the "this" of the it/beforeEach/afterEach method.
|
|
* Responsibilities:
|
|
* - "this" for it/beforeEach/afterEach
|
|
* - keep state for single it/beforeEach/afterEach execution
|
|
* - keep track of all of the futures to execute
|
|
* - run single spec (execute each future)
|
|
*/
|
|
angular.scenario.SpecRunner = function() {
|
|
this.futures = [];
|
|
};
|
|
|
|
/**
|
|
* Executes a spec which is an it block with associated before/after functions
|
|
* based on the describe nesting.
|
|
*
|
|
* @param {Object} An angular.scenario.UI implementation
|
|
* @param {Object} A spec object
|
|
* @param {Object} An angular.scenario.Application instance
|
|
* @param {Function} Callback function that is called when the spec finshes.
|
|
*/
|
|
angular.scenario.SpecRunner.prototype.run = function(ui, spec, specDone) {
|
|
var specUI = ui.addSpec(spec);
|
|
|
|
try {
|
|
spec.fn.call(this);
|
|
} catch (e) {
|
|
specUI.error(e);
|
|
specDone();
|
|
return;
|
|
}
|
|
|
|
asyncForEach(
|
|
this.futures,
|
|
function(future, futureDone) {
|
|
var stepUI = specUI.addStep(future.name);
|
|
try {
|
|
future.execute(function(error) {
|
|
stepUI.finish(error);
|
|
futureDone(error);
|
|
});
|
|
} catch (e) {
|
|
stepUI.error(e);
|
|
throw e;
|
|
}
|
|
},
|
|
function(e) {
|
|
specUI.finish(e);
|
|
specDone();
|
|
}
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Adds a new future action.
|
|
*
|
|
* @param {String} Name of the future
|
|
* @param {Function} Behavior of the future
|
|
*/
|
|
angular.scenario.SpecRunner.prototype.addFuture = function(name, behavior) {
|
|
var future = new angular.scenario.Future(name, angular.bind(this, behavior));
|
|
this.futures.push(future);
|
|
return future;
|
|
};
|
|
|
|
/**
|
|
* Adds a new future action to be executed on the application window.
|
|
*
|
|
* @param {String} Name of the future
|
|
* @param {Function} Behavior of the future
|
|
*/
|
|
angular.scenario.SpecRunner.prototype.addFutureAction = function(name, behavior) {
|
|
return this.addFuture(name, function(done) {
|
|
this.application.executeAction(angular.bind(this, function($window, $document) {
|
|
|
|
$document.elements = angular.bind(this, function(selector) {
|
|
var args = Array.prototype.slice.call(arguments, 1);
|
|
if (this.selector) {
|
|
selector = this.selector + ' ' + (selector || '');
|
|
}
|
|
angular.foreach(args, function(value, index) {
|
|
selector = selector.replace('$' + (index + 1), value);
|
|
});
|
|
var result = $document.find(selector);
|
|
if (!result.length) {
|
|
throw {
|
|
type: 'selector',
|
|
message: 'Selector ' + selector + ' did not match any elements.'
|
|
};
|
|
}
|
|
|
|
return result;
|
|
});
|
|
|
|
try {
|
|
behavior.call(this, $window, $document, done);
|
|
} catch(e) {
|
|
if (e.type && e.type === 'selector') {
|
|
done(e.message);
|
|
} else {
|
|
throw e;
|
|
}
|
|
}
|
|
}));
|
|
});
|
|
};
|