2016-06-08 19:38:52 -04:00
|
|
|
import {beforeEachProviders, beforeEach, ddescribe, describe, expect, iit, inject, it, xit,} from '@angular/core/testing/testing_internal';
|
2016-04-28 20:50:03 -04:00
|
|
|
import {AsyncTestCompleter} from '@angular/core/testing/testing_internal';
|
2016-06-02 20:30:40 -04:00
|
|
|
import {TestComponentBuilder} from '@angular/compiler/testing';
|
2016-03-04 19:32:22 -05:00
|
|
|
|
2016-06-02 20:30:40 -04:00
|
|
|
import {Component, Injectable} from '@angular/core';
|
2016-04-28 20:50:03 -04:00
|
|
|
import {NgPlural, NgPluralCase, NgLocalization} from '@angular/common';
|
2016-03-04 19:32:22 -05:00
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('switch', () => {
|
2016-06-02 20:30:40 -04:00
|
|
|
beforeEachProviders(() => [{provide: NgLocalization, useClass: TestLocalizationMap}]);
|
2016-03-04 19:32:22 -05:00
|
|
|
|
|
|
|
it('should display the template according to the exact value',
|
2016-06-08 19:38:52 -04:00
|
|
|
inject(
|
|
|
|
[TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async: AsyncTestCompleter) => {
|
|
|
|
var template = '<div>' +
|
|
|
|
'<ul [ngPlural]="switchValue">' +
|
|
|
|
'<template ngPluralCase="=0"><li>you have no messages.</li></template>' +
|
|
|
|
'<template ngPluralCase="=1"><li>you have one message.</li></template>' +
|
|
|
|
'</ul></div>';
|
|
|
|
|
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((fixture) => {
|
|
|
|
fixture.debugElement.componentInstance.switchValue = 0;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('you have no messages.');
|
|
|
|
|
|
|
|
fixture.debugElement.componentInstance.switchValue = 1;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('you have one message.');
|
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2016-03-04 19:32:22 -05:00
|
|
|
|
|
|
|
it('should display the template according to the category',
|
2016-06-08 19:38:52 -04:00
|
|
|
inject(
|
|
|
|
[TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async: AsyncTestCompleter) => {
|
|
|
|
var template = '<div>' +
|
|
|
|
'<ul [ngPlural]="switchValue">' +
|
|
|
|
'<template ngPluralCase="few"><li>you have a few messages.</li></template>' +
|
|
|
|
'<template ngPluralCase="many"><li>you have many messages.</li></template>' +
|
|
|
|
'</ul></div>';
|
|
|
|
|
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((fixture) => {
|
|
|
|
fixture.debugElement.componentInstance.switchValue = 2;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.debugElement.nativeElement)
|
|
|
|
.toHaveText('you have a few messages.');
|
|
|
|
|
|
|
|
fixture.debugElement.componentInstance.switchValue = 8;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('you have many messages.');
|
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2016-03-04 19:32:22 -05:00
|
|
|
|
|
|
|
it('should default to other when no matches are found',
|
2016-06-08 19:38:52 -04:00
|
|
|
inject(
|
|
|
|
[TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async: AsyncTestCompleter) => {
|
|
|
|
var template = '<div>' +
|
|
|
|
'<ul [ngPlural]="switchValue">' +
|
|
|
|
'<template ngPluralCase="few"><li>you have a few messages.</li></template>' +
|
|
|
|
'<template ngPluralCase="other"><li>default message.</li></template>' +
|
|
|
|
'</ul></div>';
|
|
|
|
|
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((fixture) => {
|
|
|
|
fixture.debugElement.componentInstance.switchValue = 100;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('default message.');
|
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2016-03-04 19:32:22 -05:00
|
|
|
|
|
|
|
it('should prioritize value matches over category matches',
|
2016-06-08 19:38:52 -04:00
|
|
|
inject(
|
|
|
|
[TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async: AsyncTestCompleter) => {
|
|
|
|
var template = '<div>' +
|
|
|
|
'<ul [ngPlural]="switchValue">' +
|
|
|
|
'<template ngPluralCase="few"><li>you have a few messages.</li></template>' +
|
|
|
|
'<template ngPluralCase="=2">you have two messages.</template>' +
|
|
|
|
'</ul></div>';
|
|
|
|
|
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((fixture) => {
|
|
|
|
fixture.debugElement.componentInstance.switchValue = 2;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('you have two messages.');
|
|
|
|
|
|
|
|
fixture.debugElement.componentInstance.switchValue = 3;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(fixture.debugElement.nativeElement)
|
|
|
|
.toHaveText('you have a few messages.');
|
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2016-03-04 19:32:22 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class TestLocalizationMap extends NgLocalization {
|
|
|
|
getPluralCategory(value: number): string {
|
|
|
|
if (value > 1 && value < 4) {
|
|
|
|
return 'few';
|
|
|
|
} else if (value >= 4 && value < 10) {
|
|
|
|
return 'many';
|
|
|
|
} else {
|
|
|
|
return 'other';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-08 16:36:48 -05:00
|
|
|
@Component({selector: 'test-cmp', directives: [NgPlural, NgPluralCase], template: ''})
|
2016-03-04 19:32:22 -05:00
|
|
|
class TestComponent {
|
|
|
|
switchValue: number;
|
|
|
|
|
|
|
|
constructor() { this.switchValue = null; }
|
|
|
|
}
|