| 
									
										
										
										
											2016-08-12 20:14:52 -07: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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-02 09:37:01 -08:00
										 |  |  | import {escapeRegExp} from '@angular/compiler/src/util'; | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | import {serializeNodes} from '../../../src/i18n/digest'; | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  | import {MessageBundle} from '../../../src/i18n/message_bundle'; | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  | import {Xliff} from '../../../src/i18n/serializers/xliff'; | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  | import {HtmlParser} from '../../../src/ml_parser/html_parser'; | 
					
						
							|  |  |  | import {DEFAULT_INTERPOLATION_CONFIG} from '../../../src/ml_parser/interpolation_config'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const HTML = `
 | 
					
						
							|  |  |  | <p i18n-title title="translatable attribute">not translatable</p> | 
					
						
							|  |  |  | <p i18n>translatable element <b>with placeholders</b> {{ interpolation}}</p> | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  | <!-- i18n -->{ count, plural, =0 {<p>test</p>}}<!-- /i18n --> | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  | <p i18n="m|d">foo</p> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  | <p i18n="m|d">foo</p> | 
					
						
							| 
									
										
										
										
											2016-12-06 15:04:59 +01:00
										 |  |  | <p i18n="m|d@@i">foo</p> | 
					
						
							|  |  |  | <p i18n="@@bar">foo</p> | 
					
						
							| 
									
										
										
										
											2016-09-30 15:39:46 -07:00
										 |  |  | <p i18n="ph names"><br><img><div></div></p> | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  | <p i18n="@@baz">{ count, plural, =0 { { sex, select, other {<p>deeply nested</p>}} }}</p> | 
					
						
							| 
									
										
										
										
											2017-07-12 16:27:53 +02:00
										 |  |  | <p i18n>Test: { count, plural, =0 { { sex, select, other {<p>deeply nested</p>}} } =other {a lot}}</p> | 
					
						
							| 
									
										
										
										
											2017-05-22 20:20:45 +02:00
										 |  |  | <p i18n>multi | 
					
						
							|  |  |  | lines</p> | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  | `;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const WRITE_XLIFF = `<?xml version="1.0" encoding="UTF-8" ?>
 | 
					
						
							|  |  |  | <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |   <file source-language="en" datatype="plaintext" original="ng2.template"> | 
					
						
							|  |  |  |     <body> | 
					
						
							|  |  |  |       <trans-unit id="983775b9a51ce14b036be72d4cfd65d68d64e231" datatype="html"> | 
					
						
							|  |  |  |         <source>translatable attribute</source> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">2</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |       </trans-unit> | 
					
						
							|  |  |  |       <trans-unit id="ec1d033f2436133c14ab038286c4f5df4697484a" datatype="html"> | 
					
						
							| 
									
										
										
										
											2017-07-12 16:27:53 +02:00
										 |  |  |         <source>translatable element <x id="START_BOLD_TEXT" ctype="x-b" equiv-text="<b>"/>with placeholders<x id="CLOSE_BOLD_TEXT" ctype="x-b" equiv-text="</b>"/> <x id="INTERPOLATION" equiv-text="{{ interpolation}}"/></source> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">3</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  |       <trans-unit id="e2ccf3d131b15f54aa1fcf1314b1ca77c14bfcc2" datatype="html"> | 
					
						
							| 
									
										
										
										
											2017-07-12 16:27:53 +02:00
										 |  |  |         <source>{VAR_PLURAL, plural, =0 {<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>test<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/>} }</source> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">4</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |       <trans-unit id="db3e0a6a5a96481f60aec61d98c3eecddef5ac23" datatype="html"> | 
					
						
							|  |  |  |         <source>foo</source> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">5</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							|  |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">6</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |         <note priority="1" from="description">d</note> | 
					
						
							|  |  |  |         <note priority="1" from="meaning">m</note> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2016-12-06 15:04:59 +01:00
										 |  |  |       <trans-unit id="i" datatype="html"> | 
					
						
							|  |  |  |         <source>foo</source> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">7</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-12-06 15:04:59 +01:00
										 |  |  |         <note priority="1" from="description">d</note> | 
					
						
							|  |  |  |         <note priority="1" from="meaning">m</note> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							|  |  |  |       <trans-unit id="bar" datatype="html"> | 
					
						
							|  |  |  |         <source>foo</source> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">8</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-12-06 15:04:59 +01:00
										 |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2016-09-30 15:39:46 -07:00
										 |  |  |       <trans-unit id="d7fa2d59aaedcaa5309f13028c59af8c85b8c49d" datatype="html"> | 
					
						
							| 
									
										
										
										
											2017-07-12 16:27:53 +02:00
										 |  |  |         <source><x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/><x id="TAG_IMG" ctype="image" equiv-text="<img/>"/><x id="START_TAG_DIV" ctype="x-div" equiv-text="<div>"/><x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/></source> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">9</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-09-30 15:39:46 -07:00
										 |  |  |         <note priority="1" from="description">ph names</note> | 
					
						
							| 
									
										
										
										
											2016-09-30 15:50:59 -07:00
										 |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  |       <trans-unit id="baz" datatype="html"> | 
					
						
							| 
									
										
										
										
											2017-07-12 16:27:53 +02:00
										 |  |  |         <source>{VAR_PLURAL, plural, =0 {{VAR_SELECT, select, other {<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>deeply nested<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/>} } } }</source> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">10</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2017-07-12 16:27:53 +02:00
										 |  |  |       <trans-unit id="52ffa620dcd76247a56d5331f34e73f340a43cdb" datatype="html"> | 
					
						
							|  |  |  |         <source>Test: <x id="ICU" equiv-text="{ count, plural, =0 {...} =other {...}}"/></source> | 
					
						
							|  |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">11</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							|  |  |  |       <trans-unit id="1503afd0ccc20ff01d5e2266a9157b7b342ba494" datatype="html"> | 
					
						
							|  |  |  |         <source>{VAR_PLURAL, plural, =0 {{VAR_SELECT, select, other {<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>deeply nested<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/>} } } =other {a lot} }</source> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">11</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2017-05-22 20:20:45 +02:00
										 |  |  |       <trans-unit id="fcfa109b0e152d4c217dbc02530be0bcb8123ad1" datatype="html"> | 
					
						
							|  |  |  |         <source>multi | 
					
						
							|  |  |  | lines</source> | 
					
						
							|  |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">12</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |     </body> | 
					
						
							|  |  |  |   </file> | 
					
						
							|  |  |  | </xliff> | 
					
						
							|  |  |  | `;
 | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | const LOAD_XLIFF = `<?xml version="1.0" encoding="UTF-8" ?>
 | 
					
						
							|  |  |  | <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> | 
					
						
							| 
									
										
										
										
											2017-02-03 14:29:28 -08:00
										 |  |  |   <file source-language="en" target-language="fr" datatype="plaintext" original="ng2.template"> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |     <body> | 
					
						
							|  |  |  |       <trans-unit id="983775b9a51ce14b036be72d4cfd65d68d64e231" datatype="html"> | 
					
						
							|  |  |  |         <source>translatable attribute</source> | 
					
						
							|  |  |  |         <target>etubirtta elbatalsnart</target> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">1</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |       </trans-unit> | 
					
						
							|  |  |  |       <trans-unit id="ec1d033f2436133c14ab038286c4f5df4697484a" datatype="html"> | 
					
						
							|  |  |  |         <source>translatable element <x id="START_BOLD_TEXT" ctype="b"/>with placeholders<x id="CLOSE_BOLD_TEXT" ctype="b"/> <x id="INTERPOLATION"/></source> | 
					
						
							| 
									
										
										
										
											2016-09-30 15:39:46 -07:00
										 |  |  |         <target><x id="INTERPOLATION"/> footnemele elbatalsnart <x id="START_BOLD_TEXT" ctype="x-b"/>sredlohecalp htiw<x id="CLOSE_BOLD_TEXT" ctype="x-b"/></target> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">2</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  |       <trans-unit id="e2ccf3d131b15f54aa1fcf1314b1ca77c14bfcc2" datatype="html"> | 
					
						
							|  |  |  |         <source>{VAR_PLURAL, plural, =0 {<x id="START_PARAGRAPH" ctype="x-p"/>test<x id="CLOSE_PARAGRAPH" ctype="x-p"/>} }</source> | 
					
						
							|  |  |  |         <target>{VAR_PLURAL, plural, =0 {<x id="START_PARAGRAPH" ctype="x-p"/>TEST<x id="CLOSE_PARAGRAPH" ctype="x-p"/>} }</target> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |       <trans-unit id="db3e0a6a5a96481f60aec61d98c3eecddef5ac23" datatype="html"> | 
					
						
							|  |  |  |         <source>foo</source> | 
					
						
							|  |  |  |         <target>oof</target> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">3</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |         <note priority="1" from="description">d</note> | 
					
						
							|  |  |  |         <note priority="1" from="meaning">m</note> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2016-12-06 15:04:59 +01:00
										 |  |  |       <trans-unit id="i" datatype="html"> | 
					
						
							|  |  |  |         <source>foo</source> | 
					
						
							|  |  |  |         <target>toto</target> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">4</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-12-06 15:04:59 +01:00
										 |  |  |         <note priority="1" from="description">d</note> | 
					
						
							|  |  |  |         <note priority="1" from="meaning">m</note> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							|  |  |  |       <trans-unit id="bar" datatype="html"> | 
					
						
							|  |  |  |         <source>foo</source> | 
					
						
							|  |  |  |         <target>tata</target> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">5</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-12-06 15:04:59 +01:00
										 |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2016-09-30 15:39:46 -07:00
										 |  |  |       <trans-unit id="d7fa2d59aaedcaa5309f13028c59af8c85b8c49d" datatype="html"> | 
					
						
							|  |  |  |         <source><x id="LINE_BREAK" ctype="lb"/><x id="TAG_IMG" ctype="image"/><x id="START_TAG_DIV" ctype="x-div"/><x id="CLOSE_TAG_DIV" ctype="x-div"/></source> | 
					
						
							|  |  |  |         <target><x id="START_TAG_DIV" ctype="x-div"/><x id="CLOSE_TAG_DIV" ctype="x-div"/><x id="TAG_IMG" ctype="image"/><x id="LINE_BREAK" ctype="lb"/></target> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">6</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2016-09-30 15:39:46 -07:00
										 |  |  |         <note priority="1" from="description">ph names</note> | 
					
						
							|  |  |  |       </trans-unit>             | 
					
						
							| 
									
										
										
										
											2017-01-25 17:43:19 -08:00
										 |  |  |       <trans-unit id="empty target" datatype="html"> | 
					
						
							|  |  |  |         <source><x id="LINE_BREAK" ctype="lb"/><x id="TAG_IMG" ctype="image"/><x id="START_TAG_DIV" ctype="x-div"/><x id="CLOSE_TAG_DIV" ctype="x-div"/></source> | 
					
						
							|  |  |  |         <target/> | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">6</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							| 
									
										
										
										
											2017-01-25 17:43:19 -08:00
										 |  |  |         <note priority="1" from="description">ph names</note> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  |       <trans-unit id="baz" datatype="html"> | 
					
						
							|  |  |  |         <source>{VAR_PLURAL, plural, =0 {{VAR_SELECT, select, other {<x id="START_PARAGRAPH" ctype="x-p"/>deeply nested<x id="CLOSE_PARAGRAPH" ctype="x-p"/>} } } }</source> | 
					
						
							|  |  |  |         <target>{VAR_PLURAL, plural, =0 {{VAR_SELECT, select, other {<x id="START_PARAGRAPH" ctype="x-p"/>profondément imbriqué<x id="CLOSE_PARAGRAPH" ctype="x-p"/>} } } }</target> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2017-07-12 16:27:53 +02:00
										 |  |  |       <trans-unit id="52ffa620dcd76247a56d5331f34e73f340a43cdb" datatype="html"> | 
					
						
							|  |  |  |         <source>Test: <x id="ICU" equiv-text="{ count, plural, =0 {...} =other {...}}"/></source> | 
					
						
							|  |  |  |         <target>Test: <x id="ICU" equiv-text="{ count, plural, =0 {...} =other {...}}"/></target> | 
					
						
							|  |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">11</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							|  |  |  |       <trans-unit id="1503afd0ccc20ff01d5e2266a9157b7b342ba494" datatype="html"> | 
					
						
							|  |  |  |         <source>{VAR_PLURAL, plural, =0 {{VAR_SELECT, select, other {<x id="START_PARAGRAPH" ctype="x-p"/>deeply nested<x id="CLOSE_PARAGRAPH" ctype="x-p"/>} } } =other {a lot} }</source> | 
					
						
							|  |  |  |         <target>{VAR_PLURAL, plural, =0 {{VAR_SELECT, select, other {<x id="START_PARAGRAPH" ctype="x-p"/>profondément imbriqué<x id="CLOSE_PARAGRAPH" ctype="x-p"/>} } } =other {beaucoup} }</target> | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2017-05-22 20:20:45 +02:00
										 |  |  |       <trans-unit id="fcfa109b0e152d4c217dbc02530be0bcb8123ad1" datatype="html"> | 
					
						
							|  |  |  |         <source>multi | 
					
						
							|  |  |  | lines</source> | 
					
						
							|  |  |  |         <target>multi | 
					
						
							|  |  |  | lignes</target> | 
					
						
							|  |  |  |         <context-group purpose="location"> | 
					
						
							|  |  |  |           <context context-type="sourcefile">file.ts</context> | 
					
						
							|  |  |  |           <context context-type="linenumber">12</context> | 
					
						
							|  |  |  |         </context-group> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							| 
									
										
										
										
											2016-09-30 14:52:12 -07:00
										 |  |  |     </body> | 
					
						
							|  |  |  |   </file> | 
					
						
							|  |  |  | </xliff> | 
					
						
							|  |  |  | `;
 | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main(): void { | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |   const serializer = new Xliff(); | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-16 17:03:18 +01:00
										 |  |  |   function toXliff(html: string, locale: string | null = null): string { | 
					
						
							|  |  |  |     const catalog = new MessageBundle(new HtmlParser, [], {}, locale); | 
					
						
							| 
									
										
										
										
											2017-04-14 18:06:25 +02:00
										 |  |  |     catalog.updateFromTemplate(html, 'file.ts', DEFAULT_INTERPOLATION_CONFIG); | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  |     return catalog.write(serializer); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |   function loadAsMap(xliff: string): {[id: string]: string} { | 
					
						
							| 
									
										
										
										
											2017-02-03 14:29:28 -08:00
										 |  |  |     const {i18nNodesByMsgId} = serializer.load(xliff, 'url'); | 
					
						
							| 
									
										
										
										
											2017-01-25 17:43:19 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |     const msgMap: {[id: string]: string} = {}; | 
					
						
							|  |  |  |     Object.keys(i18nNodesByMsgId) | 
					
						
							|  |  |  |         .forEach(id => msgMap[id] = serializeNodes(i18nNodesByMsgId[id]).join('')); | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |     return msgMap; | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('XLIFF serializer', () => { | 
					
						
							|  |  |  |     describe('write', () => { | 
					
						
							|  |  |  |       it('should write a valid xliff file', () => { expect(toXliff(HTML)).toEqual(WRITE_XLIFF); }); | 
					
						
							| 
									
										
										
										
											2017-02-16 17:03:18 +01:00
										 |  |  |       it('should write a valid xliff file with a source language', | 
					
						
							|  |  |  |          () => { expect(toXliff(HTML, 'fr')).toContain('file source-language="fr"'); }); | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('load', () => { | 
					
						
							|  |  |  |       it('should load XLIFF files', () => { | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |         expect(loadAsMap(LOAD_XLIFF)).toEqual({ | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  |           '983775b9a51ce14b036be72d4cfd65d68d64e231': 'etubirtta elbatalsnart', | 
					
						
							|  |  |  |           'ec1d033f2436133c14ab038286c4f5df4697484a': | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |               '<ph name="INTERPOLATION"/> footnemele elbatalsnart <ph name="START_BOLD_TEXT"/>sredlohecalp htiw<ph name="CLOSE_BOLD_TEXT"/>', | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  |           'e2ccf3d131b15f54aa1fcf1314b1ca77c14bfcc2': | 
					
						
							|  |  |  |               '{VAR_PLURAL, plural, =0 {[<ph name="START_PARAGRAPH"/>, TEST, <ph name="CLOSE_PARAGRAPH"/>]}}', | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  |           'db3e0a6a5a96481f60aec61d98c3eecddef5ac23': 'oof', | 
					
						
							| 
									
										
										
										
											2016-12-06 15:04:59 +01:00
										 |  |  |           'i': 'toto', | 
					
						
							|  |  |  |           'bar': 'tata', | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |           'd7fa2d59aaedcaa5309f13028c59af8c85b8c49d': | 
					
						
							|  |  |  |               '<ph name="START_TAG_DIV"/><ph name="CLOSE_TAG_DIV"/><ph name="TAG_IMG"/><ph name="LINE_BREAK"/>', | 
					
						
							| 
									
										
										
										
											2017-01-25 17:43:19 -08:00
										 |  |  |           'empty target': '', | 
					
						
							| 
									
										
										
										
											2017-03-13 11:40:44 +01:00
										 |  |  |           'baz': | 
					
						
							|  |  |  |               '{VAR_PLURAL, plural, =0 {[{VAR_SELECT, select, other {[<ph name="START_PARAGRAPH"/>, profondément imbriqué, <ph name="CLOSE_PARAGRAPH"/>]}},  ]}}', | 
					
						
							| 
									
										
										
										
											2017-07-12 16:27:53 +02:00
										 |  |  |           '52ffa620dcd76247a56d5331f34e73f340a43cdb': 'Test: <ph name="ICU"/>', | 
					
						
							|  |  |  |           '1503afd0ccc20ff01d5e2266a9157b7b342ba494': | 
					
						
							| 
									
										
										
										
											2017-05-22 20:20:45 +02:00
										 |  |  |               '{VAR_PLURAL, plural, =0 {[{VAR_SELECT, select, other {[<ph' + | 
					
						
							| 
									
										
										
										
											2017-07-12 16:27:53 +02:00
										 |  |  |               ' name="START_PARAGRAPH"/>, profondément imbriqué, <ph name="CLOSE_PARAGRAPH"/>]}},  ]}, =other {[beaucoup]}}', | 
					
						
							| 
									
										
										
										
											2017-05-22 20:20:45 +02:00
										 |  |  |           'fcfa109b0e152d4c217dbc02530be0bcb8123ad1': `multi
 | 
					
						
							|  |  |  | lignes`
 | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-03 14:29:28 -08:00
										 |  |  |       it('should return the target locale', | 
					
						
							|  |  |  |          () => { expect(serializer.load(LOAD_XLIFF, 'url').locale).toEqual('fr'); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-14 10:41:46 -08:00
										 |  |  |       describe('structure errors', () => { | 
					
						
							| 
									
										
										
										
											2016-11-14 11:22:58 -08:00
										 |  |  |         it('should throw when a trans-unit has no translation', () => { | 
					
						
							|  |  |  |           const XLIFF = `<?xml version="1.0" encoding="UTF-8" ?>
 | 
					
						
							|  |  |  | <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> | 
					
						
							|  |  |  |   <file source-language="en" datatype="plaintext" original="ng2.template"> | 
					
						
							|  |  |  |     <body> | 
					
						
							|  |  |  |       <trans-unit id="missingtarget"> | 
					
						
							|  |  |  |         <source/> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							|  |  |  |     </body> | 
					
						
							|  |  |  |   </file> | 
					
						
							|  |  |  | </xliff>`;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(() => { | 
					
						
							|  |  |  |             loadAsMap(XLIFF); | 
					
						
							|  |  |  |           }).toThrowError(/Message missingtarget misses a translation/); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-14 10:41:46 -08:00
										 |  |  |         it('should throw when a trans-unit has no id attribute', () => { | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |           const XLIFF = `<?xml version="1.0" encoding="UTF-8" ?>
 | 
					
						
							|  |  |  | <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> | 
					
						
							|  |  |  |   <file source-language="en" datatype="plaintext" original="ng2.template"> | 
					
						
							|  |  |  |     <body> | 
					
						
							|  |  |  |       <trans-unit datatype="html"> | 
					
						
							|  |  |  |         <source/> | 
					
						
							|  |  |  |         <target/> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							|  |  |  |     </body> | 
					
						
							|  |  |  |   </file> | 
					
						
							|  |  |  | </xliff>`;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(() => { | 
					
						
							|  |  |  |             loadAsMap(XLIFF); | 
					
						
							|  |  |  |           }).toThrowError(/<trans-unit> misses the "id" attribute/); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-14 10:41:46 -08:00
										 |  |  |         it('should throw on duplicate trans-unit id', () => { | 
					
						
							|  |  |  |           const XLIFF = `<?xml version="1.0" encoding="UTF-8" ?>
 | 
					
						
							|  |  |  | <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> | 
					
						
							|  |  |  |   <file source-language="en" datatype="plaintext" original="ng2.template"> | 
					
						
							|  |  |  |     <body> | 
					
						
							|  |  |  |       <trans-unit id="deadbeef"> | 
					
						
							|  |  |  |         <source/> | 
					
						
							|  |  |  |         <target/> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							|  |  |  |       <trans-unit id="deadbeef"> | 
					
						
							|  |  |  |         <source/> | 
					
						
							|  |  |  |         <target/> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							|  |  |  |     </body> | 
					
						
							|  |  |  |   </file> | 
					
						
							|  |  |  | </xliff>`;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(() => { | 
					
						
							|  |  |  |             loadAsMap(XLIFF); | 
					
						
							|  |  |  |           }).toThrowError(/Duplicated translations for msg deadbeef/); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('message errors', () => { | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |         it('should throw on unknown message tags', () => { | 
					
						
							|  |  |  |           const XLIFF = `<?xml version="1.0" encoding="UTF-8" ?>
 | 
					
						
							|  |  |  | <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> | 
					
						
							|  |  |  |   <file source-language="en" datatype="plaintext" original="ng2.template"> | 
					
						
							|  |  |  |     <body> | 
					
						
							|  |  |  |       <trans-unit id="deadbeef" datatype="html"> | 
					
						
							|  |  |  |         <source/> | 
					
						
							|  |  |  |         <target><b>msg should contain only ph tags</b></target> | 
					
						
							|  |  |  |       </trans-unit> | 
					
						
							|  |  |  |     </body> | 
					
						
							|  |  |  |   </file> | 
					
						
							|  |  |  | </xliff>`;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(() => { loadAsMap(XLIFF); }) | 
					
						
							|  |  |  |               .toThrowError( | 
					
						
							|  |  |  |                   new RegExp(escapeRegExp(`[ERROR ->]<b>msg should contain only ph tags</b>`))); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-14 10:41:46 -08:00
										 |  |  |         it('should throw when a placeholder misses an id attribute', () => { | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |           const XLIFF = `<?xml version="1.0" encoding="UTF-8" ?>
 | 
					
						
							|  |  |  | <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> | 
					
						
							|  |  |  |   <file source-language="en" datatype="plaintext" original="ng2.template"> | 
					
						
							|  |  |  |     <body> | 
					
						
							| 
									
										
										
										
											2016-11-14 10:41:46 -08:00
										 |  |  |       <trans-unit id="deadbeef" datatype="html"> | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |         <source/> | 
					
						
							| 
									
										
										
										
											2016-11-14 10:41:46 -08:00
										 |  |  |         <target><x/></target> | 
					
						
							| 
									
										
										
										
											2016-11-02 17:40:15 -07:00
										 |  |  |       </trans-unit> | 
					
						
							|  |  |  |     </body> | 
					
						
							|  |  |  |   </file> | 
					
						
							|  |  |  | </xliff>`;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(() => { | 
					
						
							|  |  |  |             loadAsMap(XLIFF); | 
					
						
							| 
									
										
										
										
											2016-11-14 10:41:46 -08:00
										 |  |  |           }).toThrowError(new RegExp(escapeRegExp(`<x> misses the "id" attribute`))); | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-11-14 10:41:46 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-12 20:14:52 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2017-02-16 17:03:18 +01:00
										 |  |  | } |