2017-03-30 15:37:30 +03:00
|
|
|
import { expect } from 'chai';
|
|
|
|
|
2019-09-16 17:40:37 +03:00
|
|
|
import { MarkerParser } from '../../src/parsers/marker.parser';
|
2017-03-30 15:37:30 +03:00
|
|
|
|
2019-09-16 17:40:37 +03:00
|
|
|
describe('MarkerParser', () => {
|
2017-03-30 15:37:30 +03:00
|
|
|
|
|
|
|
const componentFilename: string = 'test.component.ts';
|
|
|
|
|
2019-09-16 17:40:37 +03:00
|
|
|
let parser: MarkerParser;
|
2017-03-30 15:37:30 +03:00
|
|
|
|
|
|
|
beforeEach(() => {
|
2019-09-16 17:40:37 +03:00
|
|
|
parser = new MarkerParser();
|
2017-03-30 15:37:30 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it('should extract strings using marker function', () => {
|
|
|
|
const contents = `
|
2019-07-17 14:00:29 +03:00
|
|
|
import { marker } from '@biesbjerg/ngx-translate-extract-marker';
|
|
|
|
marker('Hello world');
|
|
|
|
marker(['I', 'am', 'extracted']);
|
2017-03-30 15:37:30 +03:00
|
|
|
otherFunction('But I am not');
|
2019-07-17 14:00:29 +03:00
|
|
|
marker(message || 'binary expression');
|
|
|
|
marker(message ? message : 'conditional operator');
|
|
|
|
marker('FOO.bar');
|
2017-03-30 15:37:30 +03:00
|
|
|
`;
|
|
|
|
const keys = parser.extract(contents, componentFilename).keys();
|
2019-06-13 12:44:30 +03:00
|
|
|
expect(keys).to.deep.equal(['Hello world', 'I', 'am', 'extracted', 'binary expression', 'conditional operator', 'FOO.bar']);
|
2017-03-30 15:37:30 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|