2016-04-12 12:40:37 -04:00
|
|
|
import {
|
|
|
|
ddescribe,
|
|
|
|
describe,
|
|
|
|
it,
|
|
|
|
iit,
|
|
|
|
xit,
|
|
|
|
expect,
|
|
|
|
beforeEach,
|
|
|
|
afterEach
|
|
|
|
} from 'angular2/testing_internal';
|
2016-02-26 13:02:52 -05:00
|
|
|
|
|
|
|
import {I18nPluralPipe} from 'angular2/common';
|
2016-01-06 17:13:44 -05:00
|
|
|
import {PipeResolver} from 'angular2/src/compiler/pipe_resolver';
|
2016-02-26 13:02:52 -05:00
|
|
|
|
|
|
|
export function main() {
|
2016-04-12 12:40:37 -04:00
|
|
|
describe("I18nPluralPipe", () => {
|
2016-02-26 13:02:52 -05:00
|
|
|
var pipe;
|
|
|
|
var mapping = {'=0': 'No messages.', '=1': 'One message.', 'other': 'There are some messages.'};
|
2016-04-12 12:40:37 -04:00
|
|
|
var interpolatedMapping =
|
|
|
|
{'=0': 'No messages.', '=1': 'One message.', 'other': 'There are # messages, that is #.'};
|
2016-02-26 13:02:52 -05:00
|
|
|
|
|
|
|
beforeEach(() => { pipe = new I18nPluralPipe(); });
|
|
|
|
|
|
|
|
it('should be marked as pure',
|
|
|
|
() => { expect(new PipeResolver().resolve(I18nPluralPipe).pure).toEqual(true); });
|
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
describe("transform", () => {
|
|
|
|
it("should return 0 text if value is 0", () => {
|
2016-04-22 18:33:32 -04:00
|
|
|
var val = pipe.transform(0, mapping);
|
2016-02-26 13:02:52 -05:00
|
|
|
expect(val).toEqual('No messages.');
|
|
|
|
});
|
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
it("should return 1 text if value is 1", () => {
|
2016-04-22 18:33:32 -04:00
|
|
|
var val = pipe.transform(1, mapping);
|
2016-02-26 13:02:52 -05:00
|
|
|
expect(val).toEqual('One message.');
|
|
|
|
});
|
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
it("should return other text if value is anything other than 0 or 1", () => {
|
2016-04-22 18:33:32 -04:00
|
|
|
var val = pipe.transform(6, mapping);
|
2016-02-26 13:02:52 -05:00
|
|
|
expect(val).toEqual('There are some messages.');
|
|
|
|
});
|
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
it("should interpolate the value into the text where indicated", () => {
|
2016-04-22 18:33:32 -04:00
|
|
|
var val = pipe.transform(6, interpolatedMapping);
|
2016-02-26 13:02:52 -05:00
|
|
|
expect(val).toEqual('There are 6 messages, that is 6.');
|
|
|
|
});
|
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
it("should use 'other' if value is undefined", () => {
|
2016-02-26 13:02:52 -05:00
|
|
|
var messageLength;
|
2016-04-22 18:33:32 -04:00
|
|
|
var val = pipe.transform(messageLength, interpolatedMapping);
|
2016-02-26 13:02:52 -05:00
|
|
|
expect(val).toEqual('There are messages, that is .');
|
|
|
|
});
|
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
it("should not support bad arguments",
|
2016-04-22 18:33:32 -04:00
|
|
|
() => { expect(() => pipe.transform(0, 'hey')).toThrowError(); });
|
2016-02-26 13:02:52 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|