Files
ionic-framework/test/unit/angular/service/actionSheet.unit.js
2014-06-10 15:27:48 -06:00

88 lines
2.8 KiB
JavaScript

describe('Ionic ActionSheet Service', function() {
var sheet, timeout, ionicPlatform;
beforeEach(module('ionic', function($provide) {
// For the sake of this test, we don't want ionActionSheet to
// actually compile as a directive.
// We are only testing the service.
$provide.value('ionActionSheetDirective', []);
}));
function setup(options) {
var scope;
inject(function($ionicActionSheet, $ionicPlatform, $timeout) {
var hide = $ionicActionSheet.show(options || {});
$timeout.flush();
scope = hide.$scope;
});
return scope;
}
it('should add classes on showing', inject(function($document) {
var scope = setup();
expect($document[0].body.classList.contains('action-sheet-open')).toBe(true);
expect(scope.element.hasClass('active')).toBe(true);
}));
it('removeSheet should remove classes, remove element and destroy scope', inject(function($document, $timeout, $animate) {
spyOn($animate, 'removeClass').andCallFake(function(el, cls, cb) {
el.removeClass(cls);
cb();
});
var scope = setup();
spyOn(scope, '$destroy');
spyOn(scope.element, 'remove');
scope.removeSheet();
expect($document[0].body.classList.contains('action-sheet-open')).toBe(false);
expect(scope.element.hasClass('active')).toBe(false);
expect(scope.$destroy).toHaveBeenCalled();
expect(scope.element.remove).toHaveBeenCalled();
}));
it('destructiveButtonClicked should removeSheet if returning true', function() {
var destructiveReturnValue = false;
var scope = setup({
destructiveButtonClicked: function() {
return destructiveReturnValue;
}
});
spyOn(scope, 'removeSheet');
scope.destructiveButtonClicked();
expect(scope.removeSheet).not.toHaveBeenCalled();
destructiveReturnValue = true;
scope.destructiveButtonClicked();
expect(scope.removeSheet).toHaveBeenCalled();
});
it('buttonClicked should removeSheet if returning true for index', function() {
var scope = setup({
buttons: [{}, {}],
buttonClicked: function(index) {
return index === 0 ? false : true;
}
});
spyOn(scope, 'removeSheet');
scope.buttonClicked(0);
expect(scope.removeSheet).not.toHaveBeenCalled();
scope.buttonClicked(1);
expect(scope.removeSheet).toHaveBeenCalled();
});
it('cancel should removeSheet and call opts.cancel', inject(function($timeout, $animate) {
spyOn($animate, 'removeClass').andCallFake(function(el, cls, cb) {
el.removeClass(cls);
cb();
});
var cancelSpy = jasmine.createSpy('opts.cancel');
var scope = setup({
cancel: cancelSpy
});
spyOn(scope, 'removeSheet').andCallThrough();
scope.cancel();
expect(scope.removeSheet).toHaveBeenCalled();
expect(cancelSpy).toHaveBeenCalled();
}));
});