2016-12-08 16:12:43 +03:00
|
|
|
import { expect } from 'chai';
|
|
|
|
|
2016-12-08 16:28:59 +03:00
|
|
|
import { PipeParser } from '../../src/parsers/pipe.parser';
|
2016-12-08 16:12:43 +03:00
|
|
|
|
|
|
|
describe('PipeParser', () => {
|
|
|
|
const templateFilename: string = 'test.template.html';
|
|
|
|
|
|
|
|
let parser: PipeParser;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
parser = new PipeParser();
|
|
|
|
});
|
|
|
|
|
2017-01-13 11:34:34 +03:00
|
|
|
it('should only extract string using pipe', () => {
|
|
|
|
const contents = `<button [style.background]="'lime'">{{ 'SomeKey_NotWorking' | translate }}</button>`;
|
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal(['SomeKey_NotWorking']);
|
|
|
|
});
|
|
|
|
|
2017-04-06 09:50:23 +03:00
|
|
|
it('should extract string using pipe, but between quotes only', () => {
|
|
|
|
const contents = `<input class="form-control" type="text" placeholder="{{'user.settings.form.phone.placeholder' | translate}}" [formControl]="settingsForm.controls['phone']">`;
|
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal(['user.settings.form.phone.placeholder']);
|
|
|
|
});
|
|
|
|
|
2016-12-08 16:12:43 +03:00
|
|
|
it('should extract interpolated strings using translate pipe', () => {
|
|
|
|
const contents = `Hello {{ 'World' | translate }}`;
|
2016-12-09 07:18:04 +03:00
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
2019-07-08 15:36:44 +03:00
|
|
|
expect(keys).to.deep.equal(['World']);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract interpolated strings when translate pipe is used in conjunction with other pipes', () => {
|
|
|
|
const contents = `Hello {{ 'World' | translate | upper }}`;
|
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
2016-12-09 07:18:04 +03:00
|
|
|
expect(keys).to.deep.equal(['World']);
|
2016-12-08 16:12:43 +03:00
|
|
|
});
|
|
|
|
|
2016-12-13 17:17:03 +03:00
|
|
|
it('should extract strings with escaped quotes', () => {
|
2017-04-06 09:50:23 +03:00
|
|
|
const contents = `Hello {{ 'World\\'s largest potato' | translate }}`;
|
2016-12-13 17:17:03 +03:00
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal([`World's largest potato`]);
|
|
|
|
});
|
|
|
|
|
2017-07-05 16:43:54 +03:00
|
|
|
it('should extract strings with multiple escaped quotes', () => {
|
|
|
|
const contents = `{{ 'C\\'est ok. C\\'est ok' | translate }}`;
|
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal([`C'est ok. C'est ok`]);
|
|
|
|
});
|
|
|
|
|
2016-12-08 16:12:43 +03:00
|
|
|
it('should extract interpolated strings using translate pipe in attributes', () => {
|
2019-06-13 13:17:04 +03:00
|
|
|
const contents = `<span attr="{{ 'Hello World' | translate }}"></span>`;
|
2016-12-09 07:18:04 +03:00
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal(['Hello World']);
|
2016-12-08 16:12:43 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract bound strings using translate pipe in attributes', () => {
|
2019-06-13 13:17:04 +03:00
|
|
|
const contents = `<span [attr]="'Hello World' | translate"></span>`;
|
2016-12-09 07:18:04 +03:00
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal(['Hello World']);
|
2016-12-08 16:12:43 +03:00
|
|
|
});
|
|
|
|
|
2016-12-20 18:18:40 +03:00
|
|
|
it('should not use a greedy regular expression', () => {
|
|
|
|
const contents = `
|
|
|
|
<ion-header>
|
|
|
|
<ion-navbar color="brand">
|
2019-06-13 13:17:04 +03:00
|
|
|
<ion-title>{{ 'Info' | translate }}</ion-title>
|
2016-12-20 18:18:40 +03:00
|
|
|
</ion-navbar>
|
|
|
|
</ion-header>
|
|
|
|
|
|
|
|
<ion-content>
|
|
|
|
|
|
|
|
<content-loading *ngIf="isLoading">
|
2019-06-13 13:17:04 +03:00
|
|
|
{{ 'Loading...' | translate }}
|
2016-12-20 18:18:40 +03:00
|
|
|
</content-loading>
|
|
|
|
|
|
|
|
</ion-content>
|
|
|
|
`;
|
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal(['Info', 'Loading...']);
|
|
|
|
});
|
|
|
|
|
2016-12-20 18:42:05 +03:00
|
|
|
it('should extract strings on same line', () => {
|
2019-06-13 13:17:04 +03:00
|
|
|
const contents = `<span [attr]="'Hello' | translate"></span><span [attr]="'World' | translate"></span>`;
|
2016-12-20 18:42:05 +03:00
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal(['Hello', 'World']);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract strings from this template', () => {
|
|
|
|
const contents = `
|
|
|
|
<ion-list inset>
|
|
|
|
<ion-item>
|
|
|
|
<ion-icon item-left name="person" color="dark"></ion-icon>
|
2019-06-13 13:17:04 +03:00
|
|
|
<ion-input formControlName="name" type="text" [placeholder]="'Name' | translate"></ion-input>
|
2016-12-20 18:42:05 +03:00
|
|
|
</ion-item>
|
|
|
|
<ion-item>
|
|
|
|
<p color="danger" danger *ngFor="let error of form.get('name').getError('remote')">
|
|
|
|
{{ error }}
|
|
|
|
</p>
|
|
|
|
</ion-item>
|
|
|
|
</ion-list>
|
|
|
|
<div class="form-actions">
|
2019-06-13 13:17:04 +03:00
|
|
|
<button ion-button (click)="onSubmit()" color="secondary" block>{{ 'Create account' | translate }}</button>
|
2016-12-20 18:42:05 +03:00
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal(['Name', 'Create account']);
|
|
|
|
});
|
|
|
|
|
2019-06-13 13:17:04 +03:00
|
|
|
it('should not extract variables', () => {
|
|
|
|
const contents = '<p>{{ message | translate }}</p>';
|
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal([]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be able to extract without html', () => {
|
|
|
|
const contents = `{{ 'message' | translate }}`;
|
|
|
|
const keys = parser.extract(contents, templateFilename).keys();
|
|
|
|
expect(keys).to.deep.equal(['message']);
|
|
|
|
});
|
2016-12-08 16:12:43 +03:00
|
|
|
});
|