| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 | 
							- "use strict";
 
- var assert = require("assert"),
 
- 	AddToSetAccumulator = require("../../../../lib/pipeline/accumulators/AddToSetAccumulator");
 
- var createAccumulator = function createAccumulator() {
 
- 	return new AddToSetAccumulator();
 
- };
 
- //TODO: refactor these test cases using Expression.parseOperand() or something because these could be a whole lot cleaner...
 
- module.exports = {
 
- 	"AddToSetAccumulator": {
 
- 		"constructor()": {
 
- 			"should error if called with args": function testArgsGivenToCtor() {
 
- 				assert.throws(function() {
 
- 					new AddToSetAccumulator('arg');
 
- 				});
 
- 			},
 
- 			"should construct object with set property": function testCtorAssignsSet() {
 
- 				var acc = new AddToSetAccumulator();
 
- 				assert.notEqual(acc.set, null);
 
- 				assert.notEqual(acc.set, undefined);
 
- 			}
 
- 		},
 
- 		"#getFactory()": {
 
- 			"should return the constructor for this class": function factoryIsConstructor(){
 
- 				assert.strictEqual(new AddToSetAccumulator().getFactory(), AddToSetAccumulator);
 
- 			}
 
- 		},
 
- 		"#processInternal()" : {
 
- 			"should add input to set": function testAddsToSet() {
 
- 				var acc = createAccumulator();
 
- 				acc.processInternal(5);
 
- 				var value = acc.getValue();
 
- 				assert.deepEqual(JSON.stringify(value), JSON.stringify([5]));
 
- 			}
 
- 		},
 
- 		"#getValue()": {
 
- 			"should return empty array": function testEmptySet() {
 
- 				var acc = new createAccumulator();
 
- 				var value = acc.getValue();
 
- 				assert.equal((value instanceof Array), true);
 
- 				assert.equal(value.length, 0);
 
- 			},
 
- 			"should return array with one element that equals 5": function test5InSet() {
 
- 				var acc = createAccumulator();
 
- 				acc.processInternal(5);
 
- 				acc.processInternal(5);
 
- 				var value = acc.getValue();
 
- 				assert.deepEqual(JSON.stringify(value), JSON.stringify([5]));
 
- 			},
 
- 			"should produce value that is an array of multiple elements": function testMultipleItems() {
 
- 				var acc = createAccumulator();
 
- 				acc.processInternal(5);
 
- 				acc.processInternal({key: "value"});
 
- 				var value = acc.getValue();
 
- 				assert.deepEqual(JSON.stringify(value), JSON.stringify([5, {key: "value"}]));
 
- 			},
 
- 			"should return array with one element that is an object containing a key/value pair": function testKeyValue() {
 
- 				var acc = createAccumulator();
 
- 				acc.processInternal({key: "value"});
 
- 				var value = acc.getValue();
 
- 				assert.deepEqual(JSON.stringify(value), JSON.stringify([{key: "value"}]));
 
- 			},
 
- 			"should coalesce different instances of equivalent objects": function testGetValue_() {
 
- 				var acc = createAccumulator();
 
- 				acc.processInternal({key: "value"});
 
- 				acc.processInternal({key: "value"});
 
- 				var value = acc.getValue();
 
- 				assert.deepEqual(JSON.stringify(value), JSON.stringify([{key: "value"}]));
 
- 			}
 
- 		}
 
- 	}
 
- };
 
- if (!module.parent)(new(require("mocha"))()).ui("exports").reporter("spec").addFile(__filename).run(process.exit);
 
 
  |