angular-cn/modules/@angular/compiler-cli/integrationtest/test/i18n_spec.ts

51 lines
1.4 KiB
TypeScript
Raw Normal View History

/**
* @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
*/
import './init';
2016-06-01 17:58:11 -04:00
import * as fs from 'fs';
import * as path from 'path';
describe('template i18n extraction output', () => {
2016-06-01 17:58:11 -04:00
const outDir = '';
it('should extract i18n messages', () => {
2016-08-13 00:26:03 -04:00
const EXPECTED = `<?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-21 16:56:58 -04:00
<messagebundle>
<msg id="76e1eccb1b772fa9f294ef9c146ea6d0efa8a2d4" desc="desc" meaning="meaning">translate me</msg>
<msg id="65cc4ab3b4c438e07c89be2b677d08369fb62da2">Welcome</msg>
2016-07-21 16:56:58 -04:00
</messagebundle>`;
2016-06-01 17:58:11 -04:00
const xmbOutput = path.join(outDir, 'messages.xmb');
expect(fs.existsSync(xmbOutput)).toBeTruthy();
const xmb = fs.readFileSync(xmbOutput, {encoding: 'utf-8'});
2016-07-21 16:56:58 -04:00
expect(xmb).toEqual(EXPECTED);
2016-06-01 17:58:11 -04:00
});
});