2016-07-15 12:42:33 -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-09-30 17:52:12 -04:00
|
|
|
import {MessageBundle} from '@angular/compiler/src/i18n/message_bundle';
|
2016-07-21 16:56:58 -04:00
|
|
|
import {Xmb} from '@angular/compiler/src/i18n/serializers/xmb';
|
2016-09-30 17:52:12 -04:00
|
|
|
import {HtmlParser} from '@angular/compiler/src/ml_parser/html_parser';
|
|
|
|
import {DEFAULT_INTERPOLATION_CONFIG} from '@angular/compiler/src/ml_parser/interpolation_config';
|
2016-07-15 12:42:33 -04:00
|
|
|
|
|
|
|
export function main(): void {
|
2016-07-21 16:56:58 -04:00
|
|
|
describe('XMB serializer', () => {
|
2016-07-15 12:42:33 -04:00
|
|
|
const HTML = `
|
|
|
|
<p>not translatable</p>
|
|
|
|
<p i18n>translatable element <b>with placeholders</b> {{ interpolation}}</p>
|
|
|
|
<!-- i18n -->{ count, plural, =0 {<p>test</p>}}<!-- /i18n -->
|
|
|
|
<p i18n="m|d">foo</p>
|
2016-11-04 18:10:19 -04:00
|
|
|
<p i18n>{ count, plural, =0 { { sex, select, other {<p>deeply nested</p>}} }}</p>`;
|
2016-07-15 12:42:33 -04:00
|
|
|
|
2016-08-13 00:26:03 -04:00
|
|
|
const XMB = `<?xml version="1.0" encoding="UTF-8" ?>
|
2016-07-29 16:07:01 -04:00
|
|
|
<!DOCTYPE messagebundle [
|
|
|
|
<!ELEMENT messagebundle (msg)*>
|
|
|
|
<!ATTLIST messagebundle class CDATA #IMPLIED>
|
|
|
|
|
|
|
|
<!ELEMENT msg (#PCDATA|ph|source)*>
|
|
|
|
<!ATTLIST msg id CDATA #IMPLIED>
|
|
|
|
<!ATTLIST msg seq CDATA #IMPLIED>
|
|
|
|
<!ATTLIST msg name CDATA #IMPLIED>
|
|
|
|
<!ATTLIST msg desc CDATA #IMPLIED>
|
|
|
|
<!ATTLIST msg meaning CDATA #IMPLIED>
|
|
|
|
<!ATTLIST msg obsolete (obsolete) #IMPLIED>
|
|
|
|
<!ATTLIST msg xml:space (default|preserve) "default">
|
|
|
|
<!ATTLIST msg is_hidden CDATA #IMPLIED>
|
|
|
|
|
|
|
|
<!ELEMENT source (#PCDATA)>
|
|
|
|
|
|
|
|
<!ELEMENT ph (#PCDATA|ex)*>
|
|
|
|
<!ATTLIST ph name CDATA #REQUIRED>
|
|
|
|
|
|
|
|
<!ELEMENT ex (#PCDATA)>
|
|
|
|
]>
|
2016-07-15 12:42:33 -04:00
|
|
|
<messagebundle>
|
2016-10-28 22:53:42 -04:00
|
|
|
<msg id="2348600990161399314">translatable element <ph name="START_BOLD_TEXT"><ex><b></ex></ph>with placeholders<ph name="CLOSE_BOLD_TEXT"><ex></b></ex></ph> <ph name="INTERPOLATION"/></msg>
|
|
|
|
<msg id="8332678508949127113">{ count, plural, =0 {<ph name="START_PARAGRAPH"><ex><p></ex></ph>test<ph name="CLOSE_PARAGRAPH"><ex></p></ex></ph>} }</msg>
|
|
|
|
<msg id="130772889486467622" desc="d" meaning="m">foo</msg>
|
|
|
|
<msg id="5848862331224404557">{ count, plural, =0 {{ sex, gender, other {<ph name="START_PARAGRAPH"><ex><p></ex></ph>deeply nested<ph name="CLOSE_PARAGRAPH"><ex></p></ex></ph>} } } }</msg>
|
2016-09-30 17:52:12 -04:00
|
|
|
</messagebundle>
|
|
|
|
`;
|
2016-07-15 12:42:33 -04:00
|
|
|
|
|
|
|
it('should write a valid xmb file', () => { expect(toXmb(HTML)).toEqual(XMB); });
|
|
|
|
|
|
|
|
it('should throw when trying to load an xmb file', () => {
|
|
|
|
expect(() => {
|
2016-07-21 16:56:58 -04:00
|
|
|
const serializer = new Xmb();
|
2016-08-10 00:05:04 -04:00
|
|
|
serializer.load(XMB, 'url', null);
|
|
|
|
}).toThrowError(/Unsupported/);
|
2016-07-15 12:42:33 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function toXmb(html: string): string {
|
2016-11-12 08:08:58 -05:00
|
|
|
const catalog = new MessageBundle(new HtmlParser, [], {});
|
2016-07-21 16:56:58 -04:00
|
|
|
const serializer = new Xmb();
|
2016-07-15 12:42:33 -04:00
|
|
|
|
|
|
|
catalog.updateFromTemplate(html, '', DEFAULT_INTERPOLATION_CONFIG);
|
|
|
|
|
|
|
|
return catalog.write(serializer);
|
2016-08-04 13:35:41 -04:00
|
|
|
}
|