Files
angular__angular/packages/common/test/pipes/case_conversion_pipes_spec.ts
Joey Perrott 0460a9dfaf refactor: migrate common to prettier formatting (#54150)
Migrate formatting to prettier for common from clang-format

PR Close #54150
2024-01-30 16:08:07 +00:00

202 lines
5.6 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 {LowerCasePipe, TitleCasePipe, UpperCasePipe} from '@angular/common';
import {Component} from '@angular/core';
import {TestBed} from '@angular/core/testing';
describe('LowerCasePipe', () => {
let pipe: LowerCasePipe;
beforeEach(() => {
pipe = new LowerCasePipe();
});
it('should return lowercase', () => {
expect(pipe.transform('FOO')).toEqual('foo');
});
it('should lowercase when there is a new value', () => {
expect(pipe.transform('FOO')).toEqual('foo');
expect(pipe.transform('BAr')).toEqual('bar');
});
it('should map null to null', () => {
expect(pipe.transform(null)).toEqual(null);
});
it('should map undefined to null', () => {
expect(pipe.transform(undefined)).toEqual(null);
});
it('should not support numbers', () => {
expect(() => pipe.transform(0 as any)).toThrowError();
});
it('should not support other objects', () => {
expect(() => pipe.transform({} as any)).toThrowError();
});
it('should be available as a standalone pipe', () => {
@Component({
selector: 'test-component',
imports: [LowerCasePipe],
template: '{{ value | lowercase }}',
standalone: true,
})
class TestComponent {
value = 'FOO';
}
const fixture = TestBed.createComponent(TestComponent);
fixture.detectChanges();
const content = fixture.nativeElement.textContent;
expect(content).toBe('foo');
});
});
describe('TitleCasePipe', () => {
let pipe: TitleCasePipe;
beforeEach(() => {
pipe = new TitleCasePipe();
});
it('should return titlecase', () => {
expect(pipe.transform('foo')).toEqual('Foo');
});
it('should return titlecase for subsequent words', () => {
expect(pipe.transform('one TWO Three fouR')).toEqual('One Two Three Four');
});
it('should support empty strings', () => {
expect(pipe.transform('')).toEqual('');
});
it('should persist whitespace', () => {
expect(pipe.transform('one two')).toEqual('One Two');
});
it('should titlecase when there is a new value', () => {
expect(pipe.transform('bar')).toEqual('Bar');
expect(pipe.transform('foo')).toEqual('Foo');
});
it('should not capitalize letter after the quotes', () => {
expect(pipe.transform("it's complicated")).toEqual("It's Complicated");
});
it('should not treat non-space character as a separator', () => {
expect(pipe.transform('one,two,three')).toEqual('One,two,three');
expect(pipe.transform('true|false')).toEqual('True|false');
expect(pipe.transform('foo-vs-bar')).toEqual('Foo-vs-bar');
});
it('should support support all whitespace characters', () => {
expect(pipe.transform('one\ttwo')).toEqual('One\tTwo');
expect(pipe.transform('three\rfour')).toEqual('Three\rFour');
expect(pipe.transform('five\nsix')).toEqual('Five\nSix');
});
it('should work properly for non-latin alphabet', () => {
expect(pipe.transform('føderation')).toEqual('Føderation');
expect(pipe.transform('poniedziałek')).toEqual('Poniedziałek');
expect(pipe.transform('éric')).toEqual('Éric');
});
it('should handle numbers at the beginning of words', () => {
expect(pipe.transform('frodo was 1st and bilbo was 2nd')).toEqual(
'Frodo Was 1st And Bilbo Was 2nd',
);
expect(pipe.transform('1ST')).toEqual('1st');
});
it('should map null to null', () => {
expect(pipe.transform(null)).toEqual(null);
});
it('should map undefined to null', () => {
expect(pipe.transform(undefined)).toEqual(null);
});
it('should not support numbers', () => {
expect(() => pipe.transform(0 as any)).toThrowError();
});
it('should not support other objects', () => {
expect(() => pipe.transform({} as any)).toThrowError();
});
it('should be available as a standalone pipe', () => {
@Component({
selector: 'test-component',
imports: [TitleCasePipe],
template: '{{ value | titlecase }}',
standalone: true,
})
class TestComponent {
value = 'foo';
}
const fixture = TestBed.createComponent(TestComponent);
fixture.detectChanges();
const content = fixture.nativeElement.textContent;
expect(content).toBe('Foo');
});
});
describe('UpperCasePipe', () => {
let pipe: UpperCasePipe;
beforeEach(() => {
pipe = new UpperCasePipe();
});
it('should return uppercase', () => {
expect(pipe.transform('foo')).toEqual('FOO');
});
it('should uppercase when there is a new value', () => {
expect(pipe.transform('foo')).toEqual('FOO');
expect(pipe.transform('bar')).toEqual('BAR');
});
it('should map null to null', () => {
expect(pipe.transform(null)).toEqual(null);
});
it('should map undefined to null', () => {
expect(pipe.transform(undefined)).toEqual(null);
});
it('should not support numbers', () => {
expect(() => pipe.transform(0 as any)).toThrowError();
});
it('should not support other objects', () => {
expect(() => pipe.transform({} as any)).toThrowError();
});
it('should be available as a standalone pipe', () => {
@Component({
selector: 'test-component',
imports: [UpperCasePipe],
template: '{{ value | uppercase }}',
standalone: true,
})
class TestComponent {
value = 'foo';
}
const fixture = TestBed.createComponent(TestComponent);
fixture.detectChanges();
const content = fixture.nativeElement.textContent;
expect(content).toBe('FOO');
});
});