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 {I18nSelectPipe} from '@angular/common';
|
|
|
|
import {PipeResolver} from '@angular/compiler/src/pipe_resolver';
|
2016-09-27 20:12:25 -04:00
|
|
|
import {beforeEach, describe, expect, it} 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('I18nSelectPipe', () => {
|
2016-06-17 13:57:32 -04:00
|
|
|
var pipe: I18nSelectPipe;
|
2016-02-26 13:02:52 -05:00
|
|
|
var mapping = {'male': 'Invite him.', 'female': 'Invite her.', 'other': 'Invite them.'};
|
|
|
|
|
|
|
|
beforeEach(() => { pipe = new I18nSelectPipe(); });
|
|
|
|
|
|
|
|
it('should be marked as pure',
|
|
|
|
() => { expect(new PipeResolver().resolve(I18nSelectPipe).pure).toEqual(true); });
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
describe('transform', () => {
|
|
|
|
it('should return male text if value is male', () => {
|
2016-04-22 18:33:32 -04:00
|
|
|
var val = pipe.transform('male', mapping);
|
2016-02-26 13:02:52 -05:00
|
|
|
expect(val).toEqual('Invite him.');
|
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should return female text if value is female', () => {
|
2016-04-22 18:33:32 -04:00
|
|
|
var val = pipe.transform('female', mapping);
|
2016-02-26 13:02:52 -05:00
|
|
|
expect(val).toEqual('Invite her.');
|
|
|
|
});
|
|
|
|
|
2016-06-23 14:44:05 -04:00
|
|
|
it('should return "" if value is anything other than male or female', () => {
|
2016-04-22 18:33:32 -04:00
|
|
|
var val = pipe.transform('Anything else', mapping);
|
2016-06-23 14:44:05 -04:00
|
|
|
expect(val).toEqual('');
|
2016-02-26 13:02:52 -05:00
|
|
|
});
|
|
|
|
|
2016-06-23 14:44:05 -04:00
|
|
|
it('should use "" if value is undefined', () => {
|
2016-06-17 13:57:32 -04:00
|
|
|
var val = pipe.transform(void(0), mapping);
|
2016-06-23 14:44:05 -04:00
|
|
|
expect(val).toEqual('');
|
2016-02-26 13:02:52 -05:00
|
|
|
});
|
|
|
|
|
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('male', <any>'hey')).toThrowError(); });
|
2016-02-26 13:02:52 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|