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-06-22 20:25:42 -04:00
|
|
|
import {Lexer as ExpressionLexer} from '@angular/compiler/src/expression_parser/lexer';
|
|
|
|
import {Parser as ExpressionParser} from '@angular/compiler/src/expression_parser/parser';
|
2016-04-28 20:50:03 -04:00
|
|
|
import {HtmlParser} from '@angular/compiler/src/html_parser';
|
|
|
|
import {Message} from '@angular/compiler/src/i18n/message';
|
2016-06-08 19:38:52 -04:00
|
|
|
import {MessageExtractor, removeDuplicates} from '@angular/compiler/src/i18n/message_extractor';
|
|
|
|
import {beforeEach, ddescribe, describe, expect, iit, inject, it, xdescribe, xit} from '@angular/core/testing/testing_internal';
|
2016-03-14 13:51:23 -04:00
|
|
|
|
2016-06-22 20:25:42 -04:00
|
|
|
|
2016-03-14 13:51:23 -04:00
|
|
|
export function main() {
|
|
|
|
describe('MessageExtractor', () => {
|
|
|
|
let extractor: MessageExtractor;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2016-06-22 20:25:42 -04:00
|
|
|
const expParser = new ExpressionParser(new ExpressionLexer());
|
|
|
|
const htmlParser = new HtmlParser(expParser);
|
|
|
|
// TODO: pass expression parser
|
|
|
|
extractor = new MessageExtractor(htmlParser, expParser, ['i18n-tag'], {'i18n-el': ['trans']});
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract from elements with the i18n attr', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract('<div i18n=\'meaning|desc\'>message</div>', 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message('message', 'meaning', 'desc')]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract from elements with the i18n attr without a desc', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract('<div i18n=\'meaning\'>message</div>', 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message('message', 'meaning', null)]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract from elements with the i18n attr without a meaning', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract('<div i18n>message</div>', 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message('message', null, null)]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract from attributes', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
`
|
2016-03-14 13:51:23 -04:00
|
|
|
<div
|
|
|
|
title1='message1' i18n-title1='meaning1|desc1'
|
|
|
|
title2='message2' i18n-title2='meaning2|desc2'>
|
|
|
|
</div>
|
|
|
|
`,
|
2016-06-08 19:38:52 -04:00
|
|
|
'someurl');
|
2016-03-14 13:51:23 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
expect(res.messages).toEqual([
|
|
|
|
new Message('message1', 'meaning1', 'desc1'), new Message('message2', 'meaning2', 'desc2')
|
|
|
|
]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract from partitions', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
`
|
2016-03-14 13:51:23 -04:00
|
|
|
<!-- i18n: meaning1|desc1 -->message1<!-- /i18n -->
|
2016-06-14 20:50:23 -04:00
|
|
|
<!-- i18n: meaning2 -->message2<!-- /i18n -->
|
|
|
|
<!-- i18n -->message3<!-- /i18n -->`,
|
2016-06-08 19:38:52 -04:00
|
|
|
'someUrl');
|
2016-03-14 13:51:23 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
expect(res.messages).toEqual([
|
2016-06-14 20:50:23 -04:00
|
|
|
new Message('message1', 'meaning1', 'desc1'),
|
|
|
|
new Message('message2', 'meaning2'),
|
|
|
|
new Message('message3', null),
|
2016-06-08 19:38:52 -04:00
|
|
|
]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should ignore other comments', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
`
|
2016-03-14 13:51:23 -04:00
|
|
|
<!-- i18n: meaning1|desc1 --><!-- other -->message1<!-- /i18n -->`,
|
2016-06-08 19:38:52 -04:00
|
|
|
'someUrl');
|
2016-03-14 13:51:23 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
expect(res.messages).toEqual([new Message('message1', 'meaning1', 'desc1')]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should replace interpolation with placeholders (text nodes)', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract('<div i18n>Hi {{one}} and {{two}}</div>', 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message(
|
|
|
|
'<ph name="t0">Hi <ph name="0"/> and <ph name="1"/></ph>', null, null)]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should replace interpolation with placeholders (attributes)', () => {
|
|
|
|
let res =
|
2016-06-08 19:38:52 -04:00
|
|
|
extractor.extract('<div title=\'Hi {{one}} and {{two}}\' i18n-title></div>', 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message(
|
|
|
|
'Hi <ph name="0"/> and <ph name="1"/>', null, null)]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
2016-04-14 19:16:22 -04:00
|
|
|
it('should replace interpolation with named placeholders if provided (text nodes)', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
`
|
2016-04-14 19:16:22 -04:00
|
|
|
<div i18n>Hi {{one //i18n(ph="FIRST")}} and {{two //i18n(ph="SECOND")}}</div>`,
|
2016-06-08 19:38:52 -04:00
|
|
|
'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message(
|
|
|
|
'<ph name="t0">Hi <ph name="FIRST"/> and <ph name="SECOND"/></ph>', null, null)]);
|
2016-04-14 19:16:22 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should replace interpolation with named placeholders if provided (attributes)', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
`
|
2016-04-14 19:16:22 -04:00
|
|
|
<div title='Hi {{one //i18n(ph="FIRST")}} and {{two //i18n(ph="SECOND")}}'
|
|
|
|
i18n-title></div>`,
|
2016-06-08 19:38:52 -04:00
|
|
|
'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message(
|
|
|
|
'Hi <ph name="FIRST"/> and <ph name="SECOND"/>', null, null)]);
|
2016-04-14 19:16:22 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should match named placeholders with extra spacing', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
`
|
2016-04-14 19:16:22 -04:00
|
|
|
<div title='Hi {{one // i18n ( ph = "FIRST" )}} and {{two // i18n ( ph = "SECOND" )}}'
|
|
|
|
i18n-title></div>`,
|
2016-06-08 19:38:52 -04:00
|
|
|
'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message(
|
|
|
|
'Hi <ph name="FIRST"/> and <ph name="SECOND"/>', null, null)]);
|
2016-04-14 19:16:22 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should suffix duplicate placeholder names with numbers', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
`
|
2016-04-14 19:16:22 -04:00
|
|
|
<div title='Hi {{one //i18n(ph="FIRST")}} and {{two //i18n(ph="FIRST")}} and {{three //i18n(ph="FIRST")}}'
|
|
|
|
i18n-title></div>`,
|
2016-06-08 19:38:52 -04:00
|
|
|
'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message(
|
|
|
|
'Hi <ph name="FIRST"/> and <ph name="FIRST_1"/> and <ph name="FIRST_2"/>', null, null)]);
|
2016-04-14 19:16:22 -04:00
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should handle html content', () => {
|
2016-03-23 16:44:45 -04:00
|
|
|
let res = extractor.extract(
|
2016-06-08 19:38:52 -04:00
|
|
|
'<div i18n><div attr="value">zero<div>one</div></div><div>two</div></div>', 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message(
|
|
|
|
'<ph name="e0">zero<ph name="e2">one</ph></ph><ph name="e4">two</ph>', null, null)]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should handle html content with interpolation', () => {
|
2016-03-23 16:44:45 -04:00
|
|
|
let res =
|
2016-06-08 19:38:52 -04:00
|
|
|
extractor.extract('<div i18n><div>zero{{a}}<div>{{b}}</div></div></div>', 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message(
|
|
|
|
'<ph name="e0"><ph name="t1">zero<ph name="0"/></ph><ph name="e2"><ph name="t3"><ph name="0"/></ph></ph></ph>',
|
|
|
|
null, null)]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should extract from nested elements', () => {
|
2016-03-14 13:51:23 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
'<div title="message1" i18n-title="meaning1|desc1"><div i18n="meaning2|desc2">message2</div></div>',
|
2016-06-08 19:38:52 -04:00
|
|
|
'someurl');
|
|
|
|
expect(res.messages).toEqual([
|
|
|
|
new Message('message2', 'meaning2', 'desc2'), new Message('message1', 'meaning1', 'desc1')
|
|
|
|
]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should extract messages from attributes in i18n blocks', () => {
|
2016-03-14 13:51:23 -04:00
|
|
|
let res = extractor.extract(
|
2016-06-08 19:38:52 -04:00
|
|
|
'<div i18n><div attr="value" i18n-attr="meaning|desc">message</div></div>', 'someurl');
|
|
|
|
expect(res.messages).toEqual([
|
|
|
|
new Message('<ph name="e0">message</ph>', null, null),
|
|
|
|
new Message('value', 'meaning', 'desc')
|
|
|
|
]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
2016-06-17 18:00:26 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should remove duplicate messages', () => {
|
|
|
|
let res = extractor.extract(
|
|
|
|
`
|
2016-03-14 13:51:23 -04:00
|
|
|
<!-- i18n: meaning|desc1 -->message<!-- /i18n -->
|
|
|
|
<!-- i18n: meaning|desc2 -->message<!-- /i18n -->`,
|
2016-06-08 19:38:52 -04:00
|
|
|
'someUrl');
|
2016-03-14 13:51:23 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
expect(removeDuplicates(res.messages)).toEqual([
|
|
|
|
new Message('message', 'meaning', 'desc1'),
|
|
|
|
]);
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
2016-03-23 16:44:45 -04:00
|
|
|
|
2016-05-20 18:44:58 -04:00
|
|
|
describe('implicit translation', () => {
|
|
|
|
it('should extract from elements', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract('<i18n-tag>message</i18n-tag>', 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message('message', null, null)]);
|
2016-05-20 18:44:58 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract meaning and description from elements when present', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
'<i18n-tag i18n=\'meaning|description\'>message</i18n-tag>', 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message('message', 'meaning', 'description')]);
|
2016-05-20 18:44:58 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract from attributes', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(`<i18n-el trans='message'></i18n-el>`, 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message('message', null, null)]);
|
2016-05-20 18:44:58 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract meaning and description from attributes when present', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
`<i18n-el trans='message' i18n-trans="meaning|desc"></i18n-el>`, 'someurl');
|
|
|
|
expect(res.messages).toEqual([new Message('message', 'meaning', 'desc')]);
|
2016-05-20 18:44:58 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
describe('errors', () => {
|
2016-03-23 16:44:45 -04:00
|
|
|
it('should error on i18n attributes without matching "real" attributes', () => {
|
2016-06-08 19:38:52 -04:00
|
|
|
let res = extractor.extract(
|
|
|
|
`
|
2016-03-23 16:44:45 -04:00
|
|
|
<div
|
|
|
|
title1='message1' i18n-title1='meaning1|desc1' i18n-title2='meaning2|desc2'>
|
2016-06-14 20:50:23 -04:00
|
|
|
</div>`,
|
2016-06-08 19:38:52 -04:00
|
|
|
'someurl');
|
2016-03-23 16:44:45 -04:00
|
|
|
|
|
|
|
expect(res.errors.length).toEqual(1);
|
2016-06-08 19:38:52 -04:00
|
|
|
expect(res.errors[0].msg).toEqual('Missing attribute \'title2\'.');
|
2016-03-23 16:44:45 -04:00
|
|
|
});
|
|
|
|
|
2016-06-17 18:00:26 -04:00
|
|
|
it('should error when i18n comments are unbalanced', () => {
|
|
|
|
const res = extractor.extract('<!-- i18n -->message1', 'someUrl');
|
|
|
|
expect(res.errors.length).toEqual(1);
|
|
|
|
expect(res.errors[0].msg).toEqual('Missing closing \'i18n\' comment.');
|
|
|
|
});
|
2016-03-23 16:44:45 -04:00
|
|
|
|
2016-06-17 18:00:26 -04:00
|
|
|
it('should error when i18n comments are unbalanced', () => {
|
|
|
|
const res = extractor.extract('<!-- i18n -->', 'someUrl');
|
2016-03-23 16:44:45 -04:00
|
|
|
expect(res.errors.length).toEqual(1);
|
2016-06-08 19:38:52 -04:00
|
|
|
expect(res.errors[0].msg).toEqual('Missing closing \'i18n\' comment.');
|
2016-03-23 16:44:45 -04:00
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should return parse errors when the template is invalid', () => {
|
|
|
|
let res = extractor.extract('<input&#Besfs', 'someurl');
|
2016-03-23 16:44:45 -04:00
|
|
|
expect(res.errors.length).toEqual(1);
|
|
|
|
expect(res.errors[0].msg).toEqual('Unexpected character "s"');
|
|
|
|
});
|
|
|
|
});
|
2016-03-14 13:51:23 -04:00
|
|
|
});
|
|
|
|
}
|