We have some internal proxies for all of the Jasmine functions, as well as some other helpers. This code hasn't been touched in more than 5 years, it can lead to confusion and it isn't really necessary since the same can be achieved using Jasmine. These changes remove most of the code and clean up our existing unit tests. PR Close #42177
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC 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
|
|
*/
|
|
|
|
import {I18nPluralPipe, NgLocalization} from '@angular/common';
|
|
import {PipeResolver} from '@angular/compiler/src/pipe_resolver';
|
|
import {JitReflector} from '@angular/platform-browser-dynamic/src/compiler_reflector';
|
|
|
|
{
|
|
describe('I18nPluralPipe', () => {
|
|
let localization: NgLocalization;
|
|
let pipe: I18nPluralPipe;
|
|
|
|
const mapping = {
|
|
'=0': 'No messages.',
|
|
'=1': 'One message.',
|
|
'many': 'Many messages.',
|
|
'other': 'There are # messages, that is #.',
|
|
};
|
|
|
|
beforeEach(() => {
|
|
localization = new TestLocalization();
|
|
pipe = new I18nPluralPipe(localization);
|
|
});
|
|
|
|
it('should be marked as pure', () => {
|
|
expect(new PipeResolver(new JitReflector()).resolve(I18nPluralPipe)!.pure).toEqual(true);
|
|
});
|
|
|
|
describe('transform', () => {
|
|
it('should return 0 text if value is 0', () => {
|
|
const val = pipe.transform(0, mapping);
|
|
expect(val).toEqual('No messages.');
|
|
});
|
|
|
|
it('should return 1 text if value is 1', () => {
|
|
const val = pipe.transform(1, mapping);
|
|
expect(val).toEqual('One message.');
|
|
});
|
|
|
|
it('should return category messages', () => {
|
|
const val = pipe.transform(4, mapping);
|
|
expect(val).toEqual('Many messages.');
|
|
});
|
|
|
|
it('should interpolate the value into the text where indicated', () => {
|
|
const val = pipe.transform(6, mapping);
|
|
expect(val).toEqual('There are 6 messages, that is 6.');
|
|
});
|
|
|
|
it('should use "" if value is undefined', () => {
|
|
const val = pipe.transform(undefined, mapping);
|
|
expect(val).toEqual('');
|
|
});
|
|
|
|
it('should use "" if value is null', () => {
|
|
const val = pipe.transform(null, mapping);
|
|
expect(val).toEqual('');
|
|
});
|
|
|
|
it('should not support bad arguments', () => {
|
|
expect(() => pipe.transform(0, 'hey' as any)).toThrowError();
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
class TestLocalization extends NgLocalization {
|
|
getPluralCategory(value: number): string {
|
|
return value > 1 && value < 6 ? 'many' : 'other';
|
|
}
|
|
}
|