'use strict';
describe("$animator", function() {
var body, element, $rootElement;
function html(html) {
body.append($rootElement);
$rootElement.html(html);
element = $rootElement.children().eq(0);
return element;
}
beforeEach(function() {
// we need to run animation on attached elements;
body = jqLite(document.body);
});
afterEach(function(){
dealoc(body);
});
describe("enable / disable", function() {
beforeEach(function() {
module(function($animationProvider, $provide) {
$provide.value('$window', angular.mock.createMockWindow());
});
});
it("should disable and enable the animations", function() {
var initialState = null;
var animator;
angular.bootstrap(body, [function() {
return function($animator) {
animator = $animator;
initialState = $animator.enabled();
}
}]);
expect(initialState).toBe(false);
expect(animator.enabled()).toBe(true);
expect(animator.enabled(0)).toBe(false);
expect(animator.enabled()).toBe(false);
expect(animator.enabled(1)).toBe(true);
expect(animator.enabled()).toBe(true);
});
});
describe("without animation", function() {
var window, animator;
beforeEach(function() {
module(function($animationProvider, $provide) {
$provide.value('$window', window = angular.mock.createMockWindow());
})
inject(function($animator, $compile, $rootScope, _$rootElement_) {
animator = $animator($rootScope, {});
element = $compile('
')($rootScope);
$rootElement = _$rootElement_;
})
});
it("should add element at the start of enter animation", inject(function($animator, $compile, $rootScope) {
var child = $compile('')($rootScope);
expect(element.contents().length).toBe(0);
animator.enter(child, element);
expect(element.contents().length).toBe(1);
}));
it("should remove the element at the end of leave animation", inject(function($animator, $compile, $rootScope) {
var child = $compile('')($rootScope);
element.append(child);
expect(element.contents().length).toBe(1);
animator.leave(child, element);
expect(element.contents().length).toBe(0);
}));
it("should reorder the move animation", inject(function($animator, $compile, $rootScope) {
var child1 = $compile('1
')($rootScope);
var child2 = $compile('2
')($rootScope);
element.append(child1);
element.append(child2);
expect(element.text()).toBe('12');
animator.move(child1, element, child2);
expect(element.text()).toBe('21');
}));
it("should animate the show animation event", inject(function() {
element.css('display','none');
expect(element.css('display')).toBe('none');
animator.show(element);
expect(element[0].style.display).toBe('');
}));
it("should animate the hide animation event", inject(function() {
element.css('display','block');
expect(element.css('display')).toBe('block');
animator.hide(element);
expect(element.css('display')).toBe('none');
}));
it("should still perform DOM operations even if animations are disabled", inject(function($animator) {
$animator.enabled(false);
element.css('display','block');
expect(element.css('display')).toBe('block');
animator.hide(element);
expect(element.css('display')).toBe('none');
}));
});
describe("with polyfill", function() {
var child, after, window, animator;
beforeEach(function() {
module(function($animationProvider, $provide) {
$provide.value('$window', window = angular.mock.createMockWindow());
$animationProvider.register('custom', function() {
return {
start: function(element, done) {
done();
}
}
});
$animationProvider.register('setup-memo', function() {
return {
setup: function(element) {
return "memento";
},
start: function(element, done, memento) {
element.text(memento);
done();
}
}
});
})
inject(function($animator, $compile, $rootScope) {
element = $compile('')($rootScope);
child = $compile('')($rootScope);
after = $compile('')($rootScope);
});
})
it("should animate the enter animation event", inject(function($animator, $rootScope) {
animator = $animator($rootScope, {
ngAnimate : '{enter: \'custom\'}'
});
expect(element.contents().length).toBe(0);
animator.enter(child, element);
window.setTimeout.expect(1).process();
}));
it("should animate the leave animation event", inject(function($animator, $rootScope) {
animator = $animator($rootScope, {
ngAnimate : '{leave: \'custom\'}'
});
element.append(child);
expect(element.contents().length).toBe(1);
animator.leave(child, element);
window.setTimeout.expect(1).process();
expect(element.contents().length).toBe(0);
}));
it("should animate the move animation event", inject(function($animator, $compile, $rootScope) {
$animator.enabled(true);
animator = $animator($rootScope, {
ngAnimate : '{move: \'custom\'}'
});
$rootScope.$digest();
var child1 = $compile('1
')($rootScope);
var child2 = $compile('2
')($rootScope);
element.append(child1);
element.append(child2);
expect(element.text()).toBe('12');
animator.move(child1, element, child2);
expect(element.text()).toBe('21');
window.setTimeout.expect(1).process();
}));
it("should animate the show animation event", inject(function($animator, $rootScope) {
$animator.enabled(true);
animator = $animator($rootScope, {
ngAnimate : '{show: \'custom\'}'
});
$rootScope.$digest();
element.css('display','none');
expect(element.css('display')).toBe('none');
animator.show(element);
expect(element[0].style.display).toBe('');
window.setTimeout.expect(1).process();
expect(element[0].style.display).toBe('');
}));
it("should animate the hide animation event", inject(function($animator, $rootScope) {
$animator.enabled(true);
animator = $animator($rootScope, {
ngAnimate : '{hide: \'custom\'}'
});
$rootScope.$digest();
element.css('display','block');
expect(element.css('display')).toBe('block');
animator.hide(element);
expect(element.css('display')).toBe('block');
window.setTimeout.expect(1).process();
expect(element.css('display')).toBe('none');
}));
it("should assign the ngAnimate string to all events if a string is given",
inject(function($animator, $sniffer, $rootScope) {
$animator.enabled(true);
if (!$sniffer.supportsTransitions) return;
animator = $animator($rootScope, {
ngAnimate : '"custom"'
});
$rootScope.$digest();
//enter
animator.enter(child, element);
expect(child.attr('class')).toContain('custom-enter-setup');
window.setTimeout.expect(1).process();
expect(child.attr('class')).toContain('custom-enter-start');
window.setTimeout.expect(0).process();
//leave
element.append(after);
animator.move(child, element, after);
expect(child.attr('class')).toContain('custom-move-setup');
window.setTimeout.expect(1).process();
expect(child.attr('class')).toContain('custom-move-start');
window.setTimeout.expect(0).process();
//hide
animator.hide(child);
expect(child.attr('class')).toContain('custom-hide-setup');
window.setTimeout.expect(1).process();
expect(child.attr('class')).toContain('custom-hide-start');
window.setTimeout.expect(0).process();
//show
animator.show(child);
expect(child.attr('class')).toContain('custom-show-setup');
window.setTimeout.expect(1).process();
expect(child.attr('class')).toContain('custom-show-start');
window.setTimeout.expect(0).process();
//leave
animator.leave(child);
expect(child.attr('class')).toContain('custom-leave-setup');
window.setTimeout.expect(1).process();
expect(child.attr('class')).toContain('custom-leave-start');
window.setTimeout.expect(0).process();
}));
it("should run polyfillSetup and return the memento", inject(function($animator, $rootScope) {
$animator.enabled(true);
animator = $animator($rootScope, {
ngAnimate : '{show: \'setup-memo\'}'
});
$rootScope.$digest();
expect(element.text()).toEqual('');
animator.show(element);
window.setTimeout.expect(1).process();
expect(element.text()).toBe('memento');
}));
it("should not run if animations are disabled", inject(function($animator, $rootScope) {
$animator.enabled(true);
$rootScope.$digest(); // clear initial animation suppression
$animator.enabled(false);
animator = $animator($rootScope, {
ngAnimate : '{show: \'setup-memo\'}'
});
$rootScope.$digest();
element.text('123');
expect(element.text()).toBe('123');
animator.show(element);
expect(element.text()).toBe('123');
$animator.enabled(true);
animator.show(element);
window.setTimeout.expect(1).process();
expect(element.text()).toBe('memento');
}));
});
describe("with css3", function() {
var window, animator, prefix, vendorPrefix;
beforeEach(function() {
module(function($animationProvider, $provide) {
$provide.value('$window', window = angular.mock.createMockWindow());
return function($sniffer, _$rootElement_, $animator) {
vendorPrefix = '-' + $sniffer.vendorPrefix + '-';
$rootElement = _$rootElement_;
$animator.enabled(true);
};
})
});
it("should skip animations if disabled and run when enabled",
inject(function($animator, $rootScope, $compile, $sniffer) {
$animator.enabled(false);
element = $compile(html('1
'))($rootScope);
var animator = $animator($rootScope, {
ngAnimate : '{show: \'inline-show\'}'
});
element.css('display','none');
expect(element.css('display')).toBe('none');
animator.show(element);
expect(element[0].style.display).toBe('');
$animator.enabled(true);
element.css('display','none');
expect(element.css('display')).toBe('none');
animator.show(element);
if ($sniffer.supportsTransitions) {
window.setTimeout.expect(1).process();
window.setTimeout.expect(1000).process();
}
expect(element[0].style.display).toBe('');
}));
});
it("should throw an error when an invalid ng-animate syntax is provided", inject(function($compile, $rootScope) {
expect(function() {
element = $compile('')($rootScope);
$rootScope.$digest();
}).toThrow("Syntax Error: Token ':' not a primary expression at column 1 of the expression [:] starting at [:].");
}));
});