AngularJS 1.3.15 如何同步测试动画?
How to synchronous test animation in AngularJS 1.3.15?
我想我遇到了 angular-animate.js 从版本 1.2 到 1.3 的迁移问题。
这是我的动画
'use strict';
angular.module('cookbook', ['ngAnimate'])
.animation('.slide-down', function() {
var NG_HIDE_CLASS = 'ng-hide';
return {
beforeAddClass: function(element, className, done) {
alert('before add');
if(className === NG_HIDE_CLASS) {
element.slideUp(done);
}
},
removeClass: function(element, className, done) {
if(className === NG_HIDE_CLASS) {
element.hide().slideDown(done);
}
}
};
});
同步测试
'use strict';
describe('A Brief Look At Testing Animations(changed) - ', function() {
var scope;
var element;
var $animate;
var $rootElement;
beforeEach(module('cookbook', 'ngAnimateMock'));
describe('Synchronous testing of animations', function() {
var animatedShow = false;
var animatedHide = false;
beforeEach(module(function($animateProvider) {
$animateProvider.register('.slide-down', function() {
return {
beforeAddClass: function(element, className, done) {
debugger;alert(1);
animatedHide = true;
done();
},
removeClass: function(element, className, done) {
animatedShow = true;
done();
}
};
});
}));
beforeEach(inject(function($injector) {
scope = $injector.get('$rootScope').$new();
$rootElement = $injector.get('$rootElement');
}));
beforeEach(inject(function($compile) {
element = angular.element('<div class="slide-down" ng-show="hint"></div>');
$compile(element)(scope);
scope.$digest();
$rootElement.append(element);
}));
it('should animate to show', function() {
scope.hint = true;
scope.$digest();
expect(animatedShow).toBeTruthy();
});
it('should animate to hide', function() {
scope.hint = true;
scope.$digest();
scope.hint = false;
scope.$digest();
expect(animatedHide).toBeTruthy();
});
});
});
和规格亚军
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Angular Spec Runner</title>
<link rel="shortcut icon" type="image/png" href="../../lib/jasmine-2.0.0/jasmine_favicon.png">
<link rel="stylesheet" type="text/css" href="../../lib/jasmine-2.0.0/jasmine.css">
<script type="text/javascript" src="../../lib/jasmine-2.0.0/jasmine.js"></script>
<script type="text/javascript" src="../../lib/jasmine-2.0.0/jasmine-html.js"></script>
<script type="text/javascript" src="../../lib/jasmine-2.0.0/boot.js"></script>
<script type="text/javascript" src="../../lib/angular-1.2.28_/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="../../lib/angular-1.3.15/angular.js"></script>
<script type="text/javascript" src="../../lib/angular-1.3.15/angular-route.js"></script>
<script type="text/javascript" src="../../lib/angular-1.3.15/angular-ui-router.js"></script>
<script type="text/javascript" src="../../lib/angular-1.3.15/angular-mocks.js"></script>
<script type="text/javascript" src="../../lib/angular-1.2.28_/angular-animate.js"></script>
<!--DOESN'T WORK WITH 1.3.15-->
<!--<script type="text/javascript" src="../../lib/angular-1.3.15/angular-animate.js"></script>-->
<!-- include source files here... -->
<script type="text/javascript" src="../src/cookbook.js"></script>
<link rel="stylesheet" href="../src/styles.css">
<!-- include spec files here... -->
<script type="text/javascript" src="cookbookSpec.js"></script>
</head>
<body>
</body>
</html>
当我使用 angular-animate 1.2.28 时,所有测试都通过了,但在切换到 1.3.15 后,测试失败了。现在,我正在尝试研究两个版本的 angular-animate 之间的区别。也许,有人遇到过这个麻烦。谢谢大家的回答。
在尝试进行测试时,我意识到我只能:
- 使用 $animate 的 addClass 和 removeClass 到 add/remove ng-hide class;直接用 "ng-show" 不行。当使用这些方法时,我意识到注册为动画的对象中的方法 "removeClass" 从未被调用,被调用的方法是:“beforeAddClass”和“beforeRemoveClass”,所以我改变了它。当我 google 关于它时,我发现了一个有点相关的问题:$animate.removeClass() doesn't work if addClass animation incomplete.
- 使用 rootScope 而不是范围(我不明白为什么)
进一步搜索后,我发现这个 comment 关于一个问题;似乎有一些动画错误;该评论建议使用不同版本的 angular 和 angular-动画 因为有"a few bugfixes for animate in the pipeline"。所以我尝试使用更新版本 (v1.4.0-build.4010+sha.213c2a7) 现在它似乎可以工作更好...现在可以使用 ng-show 指令。 (但仍然只有 beforeAddClass 和 beforeRemoveClass 被调用并且无法获得工作范围...)。
我不是建议你升级(即使因为 v.1.4.0 尚未发布)只是指出围绕这个主题存在问题和错误......)
这是代码(建议版本 v1.4.0-build.4010):
describe('animate', function() {
var scope, $animate, $rootElement, $compile, $rootscope;
describe('Synchronous testing of animations', function() {
var animatedShow = false;
var animatedHide = false;
beforeEach(module('cookbook', function( $animateProvider ) {
animatedShow = false;
animatedHide = false;
$animateProvider.register('.slide-down', function() {
return {
beforeAddClass: function( element, className, done ) {
animatedHide = true;
done();
},
beforeRemoveClass: function( element, className, done ) {
animatedShow = true;
done();
}
};
});
}));
beforeEach(inject(function( _$injector_, _$animate_, _$compile_ ) {
$compile = _$compile_;
$animate = _$animate_;
$rootscope = _$injector_.get('$rootScope');
scope = _$injector_.get('$rootScope').$new();
$rootElement = _$injector_.get('$rootElement');
}));
it('should animate to hide', function() {
$rootscope.hint = true;
var el = $compile('<div class="slide-down" ng-show="hint"></div>')($rootscope);
$rootElement.append(el);
angular.element(document.body).append($rootElement);
$rootscope.$digest();
$rootscope.hint = false;
$rootscope.$digest();
expect(animatedHide).toBeTruthy();
});
it('should animate to show', function() {
$rootscope.hint = false;
var el = $compile('<div class="slide-down" ng-show="hint"></div>')($rootscope);
$rootElement.append(el);
angular.element(document.body).append($rootElement);
$rootscope.$digest();
$rootscope.hint = true;
$rootscope.$digest();
expect(animatedShow).toBeTruthy();
});
});
});
我也同意这个测试不是测试真正的动画代码;也许 e2e 测试应该更好。
这是使用 angular 和 angular-animate v1.3.15 以及使用 addClass 和removeClass直接:
//...the rest of code is identical
it('should animate to hide', function() {
var el = $compile('<div class="slide-down"></div>')($rootscope);
$rootElement.append(el);
angular.element(document.body).append($rootElement);
$rootscope.$digest();
$animate.addClass(el, 'ng-hide');
$rootscope.$digest();
expect(animatedHide).toBeTruthy();
});
it('should animate to show', function() {
var el = $compile('<div class="slide-down ng-hide"></div>')($rootscope);
$rootElement.append(el);
angular.element(document.body).append($rootElement);
$rootscope.$digest();
$animate.removeClass(el, 'ng-hide');
$rootscope.$digest();
expect(animatedShow).toBeTruthy();
});
//...
希望对您有所帮助...谢谢。
我想我遇到了 angular-animate.js 从版本 1.2 到 1.3 的迁移问题。 这是我的动画
'use strict';
angular.module('cookbook', ['ngAnimate'])
.animation('.slide-down', function() {
var NG_HIDE_CLASS = 'ng-hide';
return {
beforeAddClass: function(element, className, done) {
alert('before add');
if(className === NG_HIDE_CLASS) {
element.slideUp(done);
}
},
removeClass: function(element, className, done) {
if(className === NG_HIDE_CLASS) {
element.hide().slideDown(done);
}
}
};
});
同步测试
'use strict';
describe('A Brief Look At Testing Animations(changed) - ', function() {
var scope;
var element;
var $animate;
var $rootElement;
beforeEach(module('cookbook', 'ngAnimateMock'));
describe('Synchronous testing of animations', function() {
var animatedShow = false;
var animatedHide = false;
beforeEach(module(function($animateProvider) {
$animateProvider.register('.slide-down', function() {
return {
beforeAddClass: function(element, className, done) {
debugger;alert(1);
animatedHide = true;
done();
},
removeClass: function(element, className, done) {
animatedShow = true;
done();
}
};
});
}));
beforeEach(inject(function($injector) {
scope = $injector.get('$rootScope').$new();
$rootElement = $injector.get('$rootElement');
}));
beforeEach(inject(function($compile) {
element = angular.element('<div class="slide-down" ng-show="hint"></div>');
$compile(element)(scope);
scope.$digest();
$rootElement.append(element);
}));
it('should animate to show', function() {
scope.hint = true;
scope.$digest();
expect(animatedShow).toBeTruthy();
});
it('should animate to hide', function() {
scope.hint = true;
scope.$digest();
scope.hint = false;
scope.$digest();
expect(animatedHide).toBeTruthy();
});
});
});
和规格亚军
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Angular Spec Runner</title>
<link rel="shortcut icon" type="image/png" href="../../lib/jasmine-2.0.0/jasmine_favicon.png">
<link rel="stylesheet" type="text/css" href="../../lib/jasmine-2.0.0/jasmine.css">
<script type="text/javascript" src="../../lib/jasmine-2.0.0/jasmine.js"></script>
<script type="text/javascript" src="../../lib/jasmine-2.0.0/jasmine-html.js"></script>
<script type="text/javascript" src="../../lib/jasmine-2.0.0/boot.js"></script>
<script type="text/javascript" src="../../lib/angular-1.2.28_/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="../../lib/angular-1.3.15/angular.js"></script>
<script type="text/javascript" src="../../lib/angular-1.3.15/angular-route.js"></script>
<script type="text/javascript" src="../../lib/angular-1.3.15/angular-ui-router.js"></script>
<script type="text/javascript" src="../../lib/angular-1.3.15/angular-mocks.js"></script>
<script type="text/javascript" src="../../lib/angular-1.2.28_/angular-animate.js"></script>
<!--DOESN'T WORK WITH 1.3.15-->
<!--<script type="text/javascript" src="../../lib/angular-1.3.15/angular-animate.js"></script>-->
<!-- include source files here... -->
<script type="text/javascript" src="../src/cookbook.js"></script>
<link rel="stylesheet" href="../src/styles.css">
<!-- include spec files here... -->
<script type="text/javascript" src="cookbookSpec.js"></script>
</head>
<body>
</body>
</html>
当我使用 angular-animate 1.2.28 时,所有测试都通过了,但在切换到 1.3.15 后,测试失败了。现在,我正在尝试研究两个版本的 angular-animate 之间的区别。也许,有人遇到过这个麻烦。谢谢大家的回答。
在尝试进行测试时,我意识到我只能:
- 使用 $animate 的 addClass 和 removeClass 到 add/remove ng-hide class;直接用 "ng-show" 不行。当使用这些方法时,我意识到注册为动画的对象中的方法 "removeClass" 从未被调用,被调用的方法是:“beforeAddClass”和“beforeRemoveClass”,所以我改变了它。当我 google 关于它时,我发现了一个有点相关的问题:$animate.removeClass() doesn't work if addClass animation incomplete.
- 使用 rootScope 而不是范围(我不明白为什么)
进一步搜索后,我发现这个 comment 关于一个问题;似乎有一些动画错误;该评论建议使用不同版本的 angular 和 angular-动画 因为有"a few bugfixes for animate in the pipeline"。所以我尝试使用更新版本 (v1.4.0-build.4010+sha.213c2a7) 现在它似乎可以工作更好...现在可以使用 ng-show 指令。 (但仍然只有 beforeAddClass 和 beforeRemoveClass 被调用并且无法获得工作范围...)。
我不是建议你升级(即使因为 v.1.4.0 尚未发布)只是指出围绕这个主题存在问题和错误......) 这是代码(建议版本 v1.4.0-build.4010):
describe('animate', function() {
var scope, $animate, $rootElement, $compile, $rootscope;
describe('Synchronous testing of animations', function() {
var animatedShow = false;
var animatedHide = false;
beforeEach(module('cookbook', function( $animateProvider ) {
animatedShow = false;
animatedHide = false;
$animateProvider.register('.slide-down', function() {
return {
beforeAddClass: function( element, className, done ) {
animatedHide = true;
done();
},
beforeRemoveClass: function( element, className, done ) {
animatedShow = true;
done();
}
};
});
}));
beforeEach(inject(function( _$injector_, _$animate_, _$compile_ ) {
$compile = _$compile_;
$animate = _$animate_;
$rootscope = _$injector_.get('$rootScope');
scope = _$injector_.get('$rootScope').$new();
$rootElement = _$injector_.get('$rootElement');
}));
it('should animate to hide', function() {
$rootscope.hint = true;
var el = $compile('<div class="slide-down" ng-show="hint"></div>')($rootscope);
$rootElement.append(el);
angular.element(document.body).append($rootElement);
$rootscope.$digest();
$rootscope.hint = false;
$rootscope.$digest();
expect(animatedHide).toBeTruthy();
});
it('should animate to show', function() {
$rootscope.hint = false;
var el = $compile('<div class="slide-down" ng-show="hint"></div>')($rootscope);
$rootElement.append(el);
angular.element(document.body).append($rootElement);
$rootscope.$digest();
$rootscope.hint = true;
$rootscope.$digest();
expect(animatedShow).toBeTruthy();
});
});
});
我也同意这个测试不是测试真正的动画代码;也许 e2e 测试应该更好。
这是使用 angular 和 angular-animate v1.3.15 以及使用 addClass 和removeClass直接:
//...the rest of code is identical
it('should animate to hide', function() {
var el = $compile('<div class="slide-down"></div>')($rootscope);
$rootElement.append(el);
angular.element(document.body).append($rootElement);
$rootscope.$digest();
$animate.addClass(el, 'ng-hide');
$rootscope.$digest();
expect(animatedHide).toBeTruthy();
});
it('should animate to show', function() {
var el = $compile('<div class="slide-down ng-hide"></div>')($rootscope);
$rootElement.append(el);
angular.element(document.body).append($rootElement);
$rootscope.$digest();
$animate.removeClass(el, 'ng-hide');
$rootscope.$digest();
expect(animatedShow).toBeTruthy();
});
//...
希望对您有所帮助...谢谢。