2016-12-08 15:53:13 +03:00
import { expect } from 'chai' ;
2016-12-08 16:28:59 +03:00
import { DirectiveParser } from '../../src/parsers/directive.parser' ;
2016-12-08 15:53:13 +03:00
describe ( 'DirectiveParser' , ( ) = > {
const templateFilename : string = 'test.template.html' ;
const componentFilename : string = 'test.component.ts' ;
2019-06-18 16:54:58 +03:00
let parser : DirectiveParser ;
2016-12-08 15:53:13 +03:00
beforeEach ( ( ) = > {
2019-06-18 16:54:58 +03:00
parser = new DirectiveParser ( ) ;
2016-12-08 15:53:13 +03:00
} ) ;
2019-06-18 16:54:58 +03:00
it ( 'should not choke when no html is present in template' , ( ) = > {
const contents = 'Hello World' ;
2016-12-09 07:18:04 +03:00
const keys = parser . extract ( contents , templateFilename ) . keys ( ) ;
2019-06-18 16:54:58 +03:00
expect ( keys ) . to . deep . equal ( [ ] ) ;
2016-12-08 15:53:13 +03:00
} ) ;
2019-06-18 16:54:58 +03:00
it ( 'should use contents as key when there is no translate attribute value provided' , ( ) = > {
const contents = '<div translate>Hello World</div>' ;
2016-12-09 07:18:04 +03:00
const keys = parser . extract ( contents , templateFilename ) . keys ( ) ;
2019-06-18 16:54:58 +03:00
expect ( keys ) . to . deep . equal ( [ 'Hello World' ] ) ;
2016-12-08 15:53:13 +03:00
} ) ;
2019-06-18 16:54:58 +03:00
it ( 'should use translate attribute value as key when provided' , ( ) = > {
const contents = '<div translate="MY_KEY">Hello World<div>' ;
2016-12-09 07:18:04 +03:00
const keys = parser . extract ( contents , templateFilename ) . keys ( ) ;
2019-06-18 16:54:58 +03:00
expect ( keys ) . to . deep . equal ( [ 'MY_KEY' ] ) ;
2016-12-08 15:53:13 +03:00
} ) ;
2019-06-18 16:54:58 +03:00
it ( 'should not process children when translate attribute is present' , ( ) = > {
const contents = ` <div translate>Hello <strong translate>World</strong></div> ` ;
2016-12-09 07:18:04 +03:00
const keys = parser . extract ( contents , templateFilename ) . keys ( ) ;
2019-06-18 16:54:58 +03:00
expect ( keys ) . to . deep . equal ( [ 'Hello <strong translate>World</strong>' ] ) ;
2016-12-08 15:53:13 +03:00
} ) ;
it ( 'should extract and parse inline template' , ( ) = > {
const contents = `
@Component ( {
selector : 'test' ,
template : '<p translate>Hello World</p>'
} )
export class TestComponent { }
` ;
2016-12-09 07:18:04 +03:00
const keys = parser . extract ( contents , componentFilename ) . keys ( ) ;
expect ( keys ) . to . deep . equal ( [ 'Hello World' ] ) ;
2016-12-08 15:53:13 +03:00
} ) ;
2019-06-18 16:54:58 +03:00
it ( 'should extract contents when no translate attribute value is provided' , ( ) = > {
const contents = '<div translate>Hello World</div>' ;
2016-12-09 07:18:04 +03:00
const keys = parser . extract ( contents , templateFilename ) . keys ( ) ;
expect ( keys ) . to . deep . equal ( [ 'Hello World' ] ) ;
2016-12-08 17:43:38 +03:00
} ) ;
2019-06-18 16:54:58 +03:00
it ( 'should extract translate attribute value if provided' , ( ) = > {
const contents = '<div translate="KEY">Hello World<div>' ;
2016-12-09 07:18:04 +03:00
const keys = parser . extract ( contents , templateFilename ) . keys ( ) ;
expect ( keys ) . to . deep . equal ( [ 'KEY' ] ) ;
2016-12-08 18:09:06 +03:00
} ) ;
2016-12-10 06:14:13 +03:00
it ( 'should not extract translate pipe in html tag' , ( ) = > {
2019-06-13 13:17:04 +03:00
const contents = ` <p>{{ 'Audiobooks for personal development' | translate }}</p> ` ;
2016-12-10 06:14:13 +03:00
const collection = parser . extract ( contents , templateFilename ) ;
expect ( collection . values ) . to . deep . equal ( { } ) ;
} ) ;
2017-11-07 17:13:01 +03:00
it ( 'should extract contents from within custom tags' , ( ) = > {
const contents = ` <custom-table><tbody><tr><td translate>Hello World</td></tr></tbody></custom-table> ` ;
const keys = parser . extract ( contents , templateFilename ) . keys ( ) ;
expect ( keys ) . to . deep . equal ( [ 'Hello World' ] ) ;
} ) ;
2019-06-13 13:32:18 +03:00
it ( 'should not cause error when no html is present in template' , ( ) = > {
const contents = `
import { Component } from '@angular/core' ;
@Component ( {
template : '{{ variable }}'
} )
export class MyComponent {
variable : string
}
` ;
const keys = parser . extract ( contents , componentFilename ) . keys ( ) ;
expect ( keys ) . to . deep . equal ( [ ] ) ;
} ) ;
2020-03-22 12:23:45 +03:00
it ( 'should extract contents without line breaks' , ( ) = > {
const contents = `
< p translate >
Please leave a message for your client letting them know why you
rejected the field and what they need to do to fix it .
< / p >
` ;
const keys = parser . extract ( contents , templateFilename ) . keys ( ) ;
expect ( keys ) . to . deep . equal ( [ 'Please leave a message for your client letting them know why you rejected the field and what they need to do to fix it.' ] ) ;
} ) ;
it ( 'should extract contents without indent spaces' , ( ) = > {
const contents = `
< div * ngIf = "!isLoading && studentsToGrid && studentsToGrid.length == 0" class = "no-students" mt - rtl translate > There
are currently no students in this class . The good news is , adding students is really easy ! Just use the options
at the top .
< / div >
` ;
const keys = parser . extract ( contents , templateFilename ) . keys ( ) ;
expect ( keys ) . to . deep . equal ( [ 'There are currently no students in this class. The good news is, adding students is really easy! Just use the options at the top.' ] ) ;
} ) ;
2016-12-08 15:53:13 +03:00
} ) ;