/** * @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 {ExtractionResult, extractAstMessages} from '@angular/compiler/src/i18n/extractor'; import {beforeEach, ddescribe, describe, expect, iit, inject, it, xdescribe, xit} from '@angular/core/testing/testing_internal'; import {HtmlParser} from '../../src/ml_parser/html_parser'; import {serializeNodes} from '../html_parser/ast_serializer_spec'; export function main() { describe('MessageExtractor', () => { describe('elements', () => { it('should extract from elements', () => { expect(extract('
htmlnested
{count, plural, =0 {html}}{{interp}}`)) .toEqual([ [['{count, plural, =0 {html}}'], '', ''], [ [ 'text', 'htmlnested
', '{count, plural, =0 {html}}', '{{interp}}' ], '', '' ], ]); }); it('should ignore other comments', () => { expect(extract(`message1`)) .toEqual([ [['message1'], 'meaning1', 'desc1'], ]); }); it('should not create a message for empty blocks', () => { expect(extract(``)).toEqual([]); }); }); describe('ICU messages', () => { it('should extract ICU messages from translatable elements', () => { // single message when ICU is the only children expect(extract(''], '', ''], [['title="msg"'], 'm', 'd'], ]); }); it('should extract from attributes in translatable block', () => { expect(extract('
')) .toEqual([ [['title="msg"'], 'm', 'd'], [['
'], '', ''], ]); }); it('should extract from attributes in translatable ICU', () => { expect( extract( '{count, plural, =0 {
}}')) .toEqual([ [['title="msg"'], 'm', 'd'], [['{count, plural, =0 {
}}'], '', ''], ]); }); it('should extract from attributes in non translatable ICU', () => { expect(extract('{count, plural, =0 {
}}')) .toEqual([ [['title="msg"'], 'm', 'd'], ]); }); it('should not create a message for empty attributes', () => { expect(extract('')).toEqual([]); }); }); describe('implicit elements', () => { it('should extract from implicit elements', () => { expect(extract('bolditalic', ['b'])).toEqual([ [['bold'], '', ''], ]); }); }); describe('implicit attributes', () => { it('should extract implicit attributes', () => { expect(extract('bolditalic', [], {'b': ['title']})) .toEqual([ [['title="bb"'], '', ''], ]); }); }); describe('errors', () => { describe('elements', () => { it('should report nested translatable elements', () => { expect(extractErrors(`
`)).toEqual([ ['Could not mark an element as translatable inside a translatable section', ''], ['Unexpected section start', ''], ['Unexpected section end', '
'], ]); }); it('should report translatable elements in implicit elements', () => { expect(extractErrors(`
`, ['p'])).toEqual([ ['Could not mark an element as translatable inside a translatable section', ''], ['Unexpected section start', ''], ['Unexpected section end', '
'], ]); }); it('should report translatable elements in translatable blocks', () => { expect(extractErrors(``)).toEqual([ ['Could not mark an element as translatable inside a translatable section', ''], ['Unexpected section start', ''], ['Unexpected section end', '`)).toEqual([ ['Could not start a block inside a translatable section', '`)).toEqual([ ['Unclosed block', '
`)).toEqual([ ['Could not start a block inside a translatable section', '`, ['p'])).toEqual([ ['Could not start a block inside a translatable section', '`)).toEqual([ ['I18N blocks should not cross element boundaries', '`)).toEqual([ ['I18N blocks should not cross element boundaries', '`, ['b'])).toEqual([ ['Could not mark an element as translatable inside a translatable section', ''], ['Unexpected section start', ''], ['Unexpected section end', '