2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-08-19 15:51:01 -04:00
|
|
|
import {CommonModule} from '@angular/common';
|
2016-08-02 18:53:34 -04:00
|
|
|
import {Component} from '@angular/core';
|
2016-09-08 23:37:20 -04:00
|
|
|
import {ComponentFixture, TestBed, async} from '@angular/core/testing';
|
2017-01-06 17:18:17 -05:00
|
|
|
import {By} from '@angular/platform-browser/src/dom/debug/by';
|
2016-04-28 20:50:03 -04:00
|
|
|
import {getDOM} from '@angular/platform-browser/src/dom/dom_adapter';
|
2017-03-02 15:12:46 -05:00
|
|
|
import {expect} from '@angular/platform-browser/testing/src/matchers';
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2017-12-16 17:42:55 -05:00
|
|
|
{
|
2015-11-23 19:02:19 -05:00
|
|
|
describe('ngIf directive', () => {
|
2016-09-08 23:37:20 -04:00
|
|
|
let fixture: ComponentFixture<any>;
|
|
|
|
|
|
|
|
function getComponent(): TestComponent { return fixture.componentInstance; }
|
|
|
|
|
2017-03-24 12:54:02 -04:00
|
|
|
afterEach(() => { fixture = null !; });
|
2016-06-08 19:38:52 -04:00
|
|
|
|
2016-08-15 16:52:57 -04:00
|
|
|
beforeEach(() => {
|
2016-09-08 23:37:20 -04:00
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [TestComponent],
|
|
|
|
imports: [CommonModule],
|
|
|
|
});
|
2016-08-15 16:52:57 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should work in a template attribute', async(() => {
|
2017-01-06 17:18:17 -05:00
|
|
|
const template = '<span *ngIf="booleanCondition">hello</span>';
|
2016-09-08 23:37:20 -04:00
|
|
|
fixture = createTestComponent(template);
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(1);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('hello');
|
2016-08-15 16:52:57 -04:00
|
|
|
}));
|
|
|
|
|
2017-01-06 17:18:17 -05:00
|
|
|
it('should work on a template element', async(() => {
|
2017-01-09 16:16:46 -05:00
|
|
|
const template = '<ng-template [ngIf]="booleanCondition">hello2</ng-template>';
|
2016-09-08 23:37:20 -04:00
|
|
|
fixture = createTestComponent(template);
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('hello2');
|
2016-08-15 16:52:57 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
it('should toggle node when condition changes', async(() => {
|
2017-01-06 17:18:17 -05:00
|
|
|
const template = '<span *ngIf="booleanCondition">hello</span>';
|
2016-09-08 23:37:20 -04:00
|
|
|
fixture = createTestComponent(template);
|
|
|
|
getComponent().booleanCondition = false;
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(0);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('');
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
getComponent().booleanCondition = true;
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(1);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('hello');
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
getComponent().booleanCondition = false;
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(0);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('');
|
2016-08-15 16:52:57 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
it('should handle nested if correctly', async(() => {
|
|
|
|
const template =
|
2017-01-06 17:18:17 -05:00
|
|
|
'<div *ngIf="booleanCondition"><span *ngIf="nestedBooleanCondition">hello</span></div>';
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
fixture = createTestComponent(template);
|
|
|
|
|
|
|
|
getComponent().booleanCondition = false;
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(0);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('');
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
getComponent().booleanCondition = true;
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(1);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('hello');
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
getComponent().nestedBooleanCondition = false;
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(0);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('');
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
getComponent().nestedBooleanCondition = true;
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(1);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('hello');
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
getComponent().booleanCondition = false;
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(0);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('');
|
2016-08-15 16:52:57 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
it('should update several nodes with if', async(() => {
|
2017-01-06 17:18:17 -05:00
|
|
|
const template = '<span *ngIf="numberCondition + 1 >= 2">helloNumber</span>' +
|
|
|
|
'<span *ngIf="stringCondition == \'foo\'">helloString</span>' +
|
|
|
|
'<span *ngIf="functionCondition(stringCondition, numberCondition)">helloFunction</span>';
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
fixture = createTestComponent(template);
|
|
|
|
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(3);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(getDOM().getText(fixture.nativeElement))
|
2016-08-15 16:52:57 -04:00
|
|
|
.toEqual('helloNumberhelloStringhelloFunction');
|
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
getComponent().numberCondition = 0;
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(1);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('helloString');
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
getComponent().numberCondition = 1;
|
|
|
|
getComponent().stringCondition = 'bar';
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.debugElement.queryAll(By.css('span')).length).toEqual(1);
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('helloNumber');
|
2016-08-15 16:52:57 -04:00
|
|
|
}));
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2017-01-06 17:18:17 -05:00
|
|
|
it('should not add the element twice if the condition goes from truthy to truthy', async(() => {
|
|
|
|
const template = '<span *ngIf="numberCondition">hello</span>';
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
fixture = createTestComponent(template);
|
|
|
|
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
let els = fixture.debugElement.queryAll(By.css('span'));
|
|
|
|
expect(els.length).toEqual(1);
|
|
|
|
getDOM().addClass(els[0].nativeElement, 'marker');
|
2016-09-08 23:37:20 -04:00
|
|
|
expect(fixture.nativeElement).toHaveText('hello');
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2016-09-08 23:37:20 -04:00
|
|
|
getComponent().numberCondition = 2;
|
2016-08-15 16:52:57 -04:00
|
|
|
fixture.detectChanges();
|
2017-01-06 17:18:17 -05:00
|
|
|
els = fixture.debugElement.queryAll(By.css('span'));
|
|
|
|
expect(els.length).toEqual(1);
|
|
|
|
expect(getDOM().hasClass(els[0].nativeElement, 'marker')).toBe(true);
|
2016-08-15 16:52:57 -04:00
|
|
|
|
2017-01-06 17:18:17 -05:00
|
|
|
expect(fixture.nativeElement).toHaveText('hello');
|
2016-08-15 16:52:57 -04:00
|
|
|
}));
|
2016-12-08 00:41:27 -05:00
|
|
|
|
|
|
|
describe('else', () => {
|
|
|
|
it('should support else', async(() => {
|
2017-01-06 17:18:17 -05:00
|
|
|
const template = '<span *ngIf="booleanCondition; else elseBlock">TRUE</span>' +
|
2017-01-09 16:16:46 -05:00
|
|
|
'<ng-template #elseBlock>FALSE</ng-template>';
|
2016-12-08 00:41:27 -05:00
|
|
|
|
|
|
|
fixture = createTestComponent(template);
|
|
|
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('TRUE');
|
|
|
|
|
|
|
|
getComponent().booleanCondition = false;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('FALSE');
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should support then and else', async(() => {
|
2017-01-06 17:18:17 -05:00
|
|
|
const template =
|
2016-12-08 00:41:27 -05:00
|
|
|
'<span *ngIf="booleanCondition; then thenBlock; else elseBlock">IGNORE</span>' +
|
2017-01-09 16:16:46 -05:00
|
|
|
'<ng-template #thenBlock>THEN</ng-template>' +
|
|
|
|
'<ng-template #elseBlock>ELSE</ng-template>';
|
2016-12-08 00:41:27 -05:00
|
|
|
|
|
|
|
fixture = createTestComponent(template);
|
|
|
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('THEN');
|
|
|
|
|
|
|
|
getComponent().booleanCondition = false;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('ELSE');
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should support dynamic else', async(() => {
|
2017-01-06 17:18:17 -05:00
|
|
|
const template =
|
2016-12-08 00:41:27 -05:00
|
|
|
'<span *ngIf="booleanCondition; else nestedBooleanCondition ? b1 : b2">TRUE</span>' +
|
2017-01-09 16:16:46 -05:00
|
|
|
'<ng-template #b1>FALSE1</ng-template>' +
|
|
|
|
'<ng-template #b2>FALSE2</ng-template>';
|
2016-12-08 00:41:27 -05:00
|
|
|
|
|
|
|
fixture = createTestComponent(template);
|
|
|
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('TRUE');
|
|
|
|
|
|
|
|
getComponent().booleanCondition = false;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('FALSE1');
|
|
|
|
|
|
|
|
getComponent().nestedBooleanCondition = false;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('FALSE2');
|
|
|
|
}));
|
|
|
|
|
2017-03-14 23:46:29 -04:00
|
|
|
it('should support binding to variable using let', async(() => {
|
2017-01-06 17:18:17 -05:00
|
|
|
const template = '<span *ngIf="booleanCondition; else elseBlock; let v">{{v}}</span>' +
|
2017-01-09 16:16:46 -05:00
|
|
|
'<ng-template #elseBlock let-v>{{v}}</ng-template>';
|
2016-12-08 00:41:27 -05:00
|
|
|
|
|
|
|
fixture = createTestComponent(template);
|
|
|
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('true');
|
|
|
|
|
2017-03-14 23:46:29 -04:00
|
|
|
getComponent().booleanCondition = false;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('false');
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should support binding to variable using as', async(() => {
|
|
|
|
const template = '<span *ngIf="booleanCondition as v; else elseBlock">{{v}}</span>' +
|
|
|
|
'<ng-template #elseBlock let-v>{{v}}</ng-template>';
|
|
|
|
|
|
|
|
fixture = createTestComponent(template);
|
|
|
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('true');
|
|
|
|
|
2016-12-08 00:41:27 -05:00
|
|
|
getComponent().booleanCondition = false;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.nativeElement).toHaveText('false');
|
|
|
|
}));
|
|
|
|
});
|
2018-02-17 08:14:27 -05:00
|
|
|
|
|
|
|
describe('Type guarding', () => {
|
|
|
|
it('should throw when then block is not template', async(() => {
|
|
|
|
const template = '<span *ngIf="booleanCondition; then thenBlock">IGNORE</span>' +
|
|
|
|
'<div #thenBlock>THEN</div>';
|
|
|
|
|
|
|
|
fixture = createTestComponent(template);
|
|
|
|
|
|
|
|
expect(() => fixture.detectChanges())
|
|
|
|
.toThrowError(/ngIfThen must be a TemplateRef, but received/);
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should throw when else block is not template', async(() => {
|
|
|
|
const template = '<span *ngIf="booleanCondition; else elseBlock">IGNORE</span>' +
|
|
|
|
'<div #elseBlock>ELSE</div>';
|
|
|
|
|
|
|
|
fixture = createTestComponent(template);
|
|
|
|
|
|
|
|
expect(() => fixture.detectChanges())
|
|
|
|
.toThrowError(/ngIfElse must be a TemplateRef, but received/);
|
|
|
|
}));
|
|
|
|
});
|
2015-05-26 17:22:35 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-08-19 15:51:01 -04:00
|
|
|
@Component({selector: 'test-cmp', template: ''})
|
2015-05-26 17:22:35 -04:00
|
|
|
class TestComponent {
|
2016-09-08 23:37:20 -04:00
|
|
|
booleanCondition: boolean = true;
|
|
|
|
nestedBooleanCondition: boolean = true;
|
|
|
|
numberCondition: number = 1;
|
|
|
|
stringCondition: string = 'foo';
|
|
|
|
functionCondition: Function = (s: any, n: any): boolean => s == 'foo' && n == 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
function createTestComponent(template: string): ComponentFixture<TestComponent> {
|
|
|
|
return TestBed.overrideComponent(TestComponent, {set: {template: template}})
|
|
|
|
.createComponent(TestComponent);
|
2015-05-26 17:22:35 -04:00
|
|
|
}
|