- (feat) add 'key as default value' post processor (closes #109) - (chore) move clean functionality to a post processor - (chore) move sort functionality to a post processor - (refactor) get rid of leading underscore on protected properties/methods
		
			
				
	
	
		
			95 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { expect } from 'chai';
 | |
| 
 | |
| import { TranslationCollection } from '../../src/utils/translation.collection';
 | |
| 
 | |
| describe('StringCollection', () => {
 | |
| 
 | |
| 	let collection: TranslationCollection;
 | |
| 
 | |
| 	beforeEach(() => {
 | |
| 		collection = new TranslationCollection();
 | |
| 	});
 | |
| 
 | |
| 	it('should initialize with key/value pairs', () => {
 | |
| 		collection = new TranslationCollection({ key1: 'val1', key2: 'val2' });
 | |
| 		expect(collection.values).to.deep.equal({ key1: 'val1', key2: 'val2' });
 | |
| 	});
 | |
| 
 | |
| 	it('should add key with value', () => {
 | |
| 		const newCollection = collection.add('theKey', 'theVal');
 | |
| 		expect(newCollection.get('theKey')).to.equal('theVal');
 | |
| 	});
 | |
| 
 | |
| 	it('should add key with default value', () => {
 | |
| 		collection = collection.add('theKey');
 | |
| 		expect(collection.get('theKey')).to.equal('');
 | |
| 	});
 | |
| 
 | |
| 	it('should not mutate collection when adding key', () => {
 | |
| 		collection.add('theKey', 'theVal');
 | |
| 		expect(collection.has('theKey')).to.equal(false);
 | |
| 	});
 | |
| 
 | |
| 	it('should add array of keys with default value', () => {
 | |
| 		collection = collection.addKeys(['key1', 'key2']);
 | |
| 		expect(collection.values).to.deep.equal({ key1: '', key2: '' });
 | |
| 	});
 | |
| 
 | |
| 	it('should return true when collection has key', () => {
 | |
| 		collection = collection.add('key');
 | |
| 		expect(collection.has('key')).to.equal(true);
 | |
| 	});
 | |
| 
 | |
| 	it('should return false when collection does not have key', () => {
 | |
| 		expect(collection.has('key')).to.equal(false);
 | |
| 	});
 | |
| 
 | |
| 	it('should remove key', () => {
 | |
| 		collection = new TranslationCollection({ removeThisKey: '' });
 | |
| 		collection = collection.remove('removeThisKey');
 | |
| 		expect(collection.has('removeThisKey')).to.equal(false);
 | |
| 	});
 | |
| 
 | |
| 	it('should not mutate collection when removing key', () => {
 | |
| 		collection = new TranslationCollection({ removeThisKey: '' });
 | |
| 		collection.remove('removeThisKey');
 | |
| 		expect(collection.has('removeThisKey')).to.equal(true);
 | |
| 	});
 | |
| 
 | |
| 	it('should return number of keys', () => {
 | |
| 		collection = collection.addKeys(['key1', 'key2', 'key3']);
 | |
| 		expect(collection.count()).to.equal(3);
 | |
| 	});
 | |
| 
 | |
| 	it('should merge with other collection', () => {
 | |
| 		collection = collection.add('oldKey', 'oldVal');
 | |
| 		const newCollection = new TranslationCollection({ newKey: 'newVal' });
 | |
| 		expect(collection.union(newCollection).values).to.deep.equal({ oldKey: 'oldVal', newKey: 'newVal' });
 | |
| 	});
 | |
| 
 | |
| 	it('should intersect with passed collection', () => {
 | |
| 		collection = collection.addKeys(['red', 'green', 'blue']);
 | |
| 		const newCollection = new TranslationCollection( { red: '', blue: '' });
 | |
| 		expect(collection.intersect(newCollection).values).to.deep.equal({ red: '', blue: '' });
 | |
| 	});
 | |
| 
 | |
| 	it('should intersect with passed collection and keep original values', () => {
 | |
| 		collection = new TranslationCollection({ red: 'rød', green: 'grøn', blue: 'blå' });
 | |
| 		const newCollection = new TranslationCollection({ red: 'no value', blue: 'also no value' });
 | |
| 		expect(collection.intersect(newCollection).values).to.deep.equal({ red: 'rød', blue: 'blå' });
 | |
| 	});
 | |
| 
 | |
| 	it('should sort keys alphabetically', () => {
 | |
| 		collection = new TranslationCollection({ red: 'rød', green: 'grøn', blue: 'blå' });
 | |
| 		collection = collection.sort();
 | |
| 		expect(collection.keys()).deep.equal(['blue', 'green', 'red']);
 | |
| 	});
 | |
| 
 | |
| 	it('should map values', () => {
 | |
| 		collection = new TranslationCollection({ red: 'rød', green: 'grøn', blue: 'blå' });
 | |
| 		collection = collection.map((key, val) => 'mapped value');
 | |
| 		expect(collection.values).to.deep.equal({ red: 'mapped value', green: 'mapped value', blue: 'mapped value' });
 | |
| 	});
 | |
| 
 | |
| });
 |