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-04-28 20:50:03 -04:00
|
|
|
import {I18nPluralPipe} from '@angular/common';
|
|
|
|
import {PipeResolver} from '@angular/compiler/src/pipe_resolver';
|
2016-06-08 19:38:52 -04:00
|
|
|
import {afterEach, beforeEach, ddescribe, describe, expect, iit, it, xit} from '@angular/core/testing/testing_internal';
|
2016-02-26 13:02:52 -05:00
|
|
|
|
|
|
|
export function main() {
|
2016-06-08 19:38:52 -04:00
|
|
|
describe('I18nPluralPipe', () => {
|
2016-06-17 13:57:32 -04:00
|
|
|
var pipe: I18nPluralPipe;
|
2016-02-26 13:02:52 -05:00
|
|
|
var mapping = {'=0': 'No messages.', '=1': 'One message.', 'other': 'There are some messages.'};
|
2016-06-08 19:38:52 -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-06-08 19:38:52 -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-06-08 19:38:52 -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-06-08 19:38:52 -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-06-08 19:38:52 -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-06-08 19:38:52 -04:00
|
|
|
it('should use \'other\' if value is undefined', () => {
|
2016-06-17 13:57:32 -04:00
|
|
|
var val = pipe.transform(void(0), interpolatedMapping);
|
2016-02-26 13:02:52 -05:00
|
|
|
expect(val).toEqual('There are messages, that is .');
|
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should not support bad arguments',
|
2016-06-17 13:57:32 -04:00
|
|
|
() => { expect(() => pipe.transform(0, <any>'hey')).toThrowError(); });
|
2016-02-26 13:02:52 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|