mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-06-16 10:23:51 +08:00
230 lines
6.6 KiB
JavaScript
230 lines
6.6 KiB
JavaScript
'use strict';
|
|
|
|
describe('ngShow / ngHide', function() {
|
|
var $scope, $compile, element;
|
|
|
|
function expectVisibility(exprs, ngShowOrNgHide, shownOrHidden) {
|
|
element = $compile('<div></div>')($scope);
|
|
forEach(exprs, function(expr) {
|
|
var childElem = $compile('<div ' + ngShowOrNgHide + '="' + expr + '"></div>')($scope);
|
|
element.append(childElem);
|
|
$scope.$digest();
|
|
expect(childElem)[shownOrHidden === 'shown' ? 'toBeShown' : 'toBeHidden']();
|
|
});
|
|
}
|
|
|
|
beforeEach(inject(function($rootScope, _$compile_) {
|
|
$scope = $rootScope.$new();
|
|
$compile = _$compile_;
|
|
}));
|
|
|
|
afterEach(function() {
|
|
dealoc(element);
|
|
});
|
|
|
|
describe('ngShow', function() {
|
|
function expectShown() {
|
|
expectVisibility(arguments, 'ng-show', 'shown');
|
|
}
|
|
|
|
function expectHidden() {
|
|
expectVisibility(arguments, 'ng-show', 'hidden');
|
|
}
|
|
|
|
it('should show and hide an element', function() {
|
|
element = jqLite('<div ng-show="exp"></div>');
|
|
element = $compile(element)($scope);
|
|
$scope.$digest();
|
|
expect(element).toBeHidden();
|
|
$scope.exp = true;
|
|
$scope.$digest();
|
|
expect(element).toBeShown();
|
|
});
|
|
|
|
// https://github.com/angular/angular.js/issues/5414
|
|
it('should show if the expression is a function with a no arguments', function() {
|
|
element = jqLite('<div ng-show="exp"></div>');
|
|
element = $compile(element)($scope);
|
|
$scope.exp = function() {};
|
|
$scope.$digest();
|
|
expect(element).toBeShown();
|
|
});
|
|
|
|
it('should make hidden element visible', function() {
|
|
element = jqLite('<div class="ng-hide" ng-show="exp"></div>');
|
|
element = $compile(element)($scope);
|
|
expect(element).toBeHidden();
|
|
$scope.exp = true;
|
|
$scope.$digest();
|
|
expect(element).toBeShown();
|
|
});
|
|
|
|
it('should hide the element if condition is falsy', function() {
|
|
expectHidden('false', 'undefined', 'null', 'NaN', '\'\'', '0');
|
|
});
|
|
|
|
it('should show the element if condition is a non-empty string', function() {
|
|
expectShown('\'f\'', '\'0\'', '\'false\'', '\'no\'', '\'n\'', '\'[]\'');
|
|
});
|
|
|
|
it('should show the element if condition is an object', function() {
|
|
expectShown('[]', '{}');
|
|
});
|
|
});
|
|
|
|
describe('ngHide', function() {
|
|
function expectShown() {
|
|
expectVisibility(arguments, 'ng-hide', 'shown');
|
|
}
|
|
|
|
function expectHidden() {
|
|
expectVisibility(arguments, 'ng-hide', 'hidden');
|
|
}
|
|
|
|
it('should hide an element', function() {
|
|
element = jqLite('<div ng-hide="exp"></div>');
|
|
element = $compile(element)($scope);
|
|
expect(element).toBeShown();
|
|
$scope.exp = true;
|
|
$scope.$digest();
|
|
expect(element).toBeHidden();
|
|
});
|
|
|
|
it('should show the element if condition is falsy', function() {
|
|
expectShown('false', 'undefined', 'null', 'NaN', '\'\'', '0');
|
|
});
|
|
|
|
it('should hide the element if condition is a non-empty string', function() {
|
|
expectHidden('\'f\'', '\'0\'', '\'false\'', '\'no\'', '\'n\'', '\'[]\'');
|
|
});
|
|
|
|
it('should hide the element if condition is an object', function() {
|
|
expectHidden('[]', '{}');
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('ngShow / ngHide animations', function() {
|
|
var body, element, $rootElement;
|
|
|
|
function html(content) {
|
|
body.append($rootElement);
|
|
$rootElement.html(content);
|
|
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);
|
|
dealoc(element);
|
|
body.removeAttr('ng-animation-running');
|
|
});
|
|
|
|
beforeEach(module('ngAnimateMock'));
|
|
|
|
beforeEach(module(function($animateProvider, $provide) {
|
|
return function(_$rootElement_) {
|
|
$rootElement = _$rootElement_;
|
|
};
|
|
}));
|
|
|
|
describe('ngShow', function() {
|
|
it('should fire off the $animate.show and $animate.hide animation', inject(function($compile, $rootScope, $animate) {
|
|
var item;
|
|
var $scope = $rootScope.$new();
|
|
$scope.on = true;
|
|
element = $compile(html(
|
|
'<div ng-show="on">data</div>'
|
|
))($scope);
|
|
$scope.$digest();
|
|
|
|
item = $animate.queue.shift();
|
|
expect(item.event).toBe('removeClass');
|
|
expect(item.element.text()).toBe('data');
|
|
expect(item.element).toBeShown();
|
|
|
|
$scope.on = false;
|
|
$scope.$digest();
|
|
|
|
item = $animate.queue.shift();
|
|
expect(item.event).toBe('addClass');
|
|
expect(item.element.text()).toBe('data');
|
|
expect(item.element).toBeHidden();
|
|
}));
|
|
|
|
it('should apply the temporary `.ng-hide-animate` class to the element',
|
|
inject(function($compile, $rootScope, $animate) {
|
|
|
|
var item;
|
|
var $scope = $rootScope.$new();
|
|
$scope.on = false;
|
|
element = $compile(html(
|
|
'<div class="show-hide" ng-show="on">data</div>'
|
|
))($scope);
|
|
$scope.$digest();
|
|
|
|
item = $animate.queue.shift();
|
|
expect(item.event).toEqual('addClass');
|
|
expect(item.options.tempClasses).toEqual('ng-hide-animate');
|
|
|
|
$scope.on = true;
|
|
$scope.$digest();
|
|
item = $animate.queue.shift();
|
|
expect(item.event).toEqual('removeClass');
|
|
expect(item.options.tempClasses).toEqual('ng-hide-animate');
|
|
}));
|
|
});
|
|
|
|
describe('ngHide', function() {
|
|
it('should fire off the $animate.show and $animate.hide animation', inject(function($compile, $rootScope, $animate) {
|
|
var item;
|
|
var $scope = $rootScope.$new();
|
|
$scope.off = true;
|
|
element = $compile(html(
|
|
'<div ng-hide="off">datum</div>'
|
|
))($scope);
|
|
$scope.$digest();
|
|
|
|
item = $animate.queue.shift();
|
|
expect(item.event).toBe('addClass');
|
|
expect(item.element.text()).toBe('datum');
|
|
expect(item.element).toBeHidden();
|
|
|
|
$scope.off = false;
|
|
$scope.$digest();
|
|
|
|
item = $animate.queue.shift();
|
|
expect(item.event).toBe('removeClass');
|
|
expect(item.element.text()).toBe('datum');
|
|
expect(item.element).toBeShown();
|
|
}));
|
|
|
|
it('should apply the temporary `.ng-hide-animate` class to the element',
|
|
inject(function($compile, $rootScope, $animate) {
|
|
|
|
var item;
|
|
var $scope = $rootScope.$new();
|
|
$scope.on = false;
|
|
element = $compile(html(
|
|
'<div class="show-hide" ng-hide="on">data</div>'
|
|
))($scope);
|
|
$scope.$digest();
|
|
|
|
item = $animate.queue.shift();
|
|
expect(item.event).toEqual('removeClass');
|
|
expect(item.options.tempClasses).toEqual('ng-hide-animate');
|
|
|
|
$scope.on = true;
|
|
$scope.$digest();
|
|
item = $animate.queue.shift();
|
|
expect(item.event).toEqual('addClass');
|
|
expect(item.options.tempClasses).toEqual('ng-hide-animate');
|
|
}));
|
|
});
|
|
});
|