41 lines
1.6 KiB
TypeScript
41 lines
1.6 KiB
TypeScript
|
import { expect } from 'chai';
|
||
|
|
||
|
import { PostProcessorInterface } from '../../src/post-processors/post-processor.interface';
|
||
|
import { StringAsDefaultValuePostProcessor } from '../../src/post-processors/string-as-default-value.post-processor';
|
||
|
import { TranslationCollection } from '../../src/utils/translation.collection';
|
||
|
|
||
|
describe('StringAsDefaultValuePostProcessor', () => {
|
||
|
let processor: PostProcessorInterface;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
processor = new StringAsDefaultValuePostProcessor({ defaultValue: 'default' });
|
||
|
});
|
||
|
|
||
|
it('should use string as default value', () => {
|
||
|
const draft = new TranslationCollection({ 'String A': '' });
|
||
|
const extracted = new TranslationCollection({ 'String A': '' });
|
||
|
const existing = new TranslationCollection();
|
||
|
expect(processor.process(draft, extracted, existing).values).to.deep.equal({
|
||
|
'String A': 'default'
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should keep existing value even if it is an empty string', () => {
|
||
|
const draft = new TranslationCollection({ 'String A': '' });
|
||
|
const extracted = new TranslationCollection({ 'String A': '' });
|
||
|
const existing = new TranslationCollection({ 'String A': '' });
|
||
|
expect(processor.process(draft, extracted, existing).values).to.deep.equal({
|
||
|
'String A': ''
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should keep existing value', () => {
|
||
|
const draft = new TranslationCollection({ 'String A': 'Streng A' });
|
||
|
const extracted = new TranslationCollection({ 'String A': 'Streng A' });
|
||
|
const existing = new TranslationCollection({ 'String A': 'Streng A' });
|
||
|
expect(processor.process(draft, extracted, existing).values).to.deep.equal({
|
||
|
'String A': 'Streng A'
|
||
|
});
|
||
|
});
|
||
|
});
|