| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 | 
							- "use strict";
 
- var assert = require("assert"),
 
- 	async = require("async"),
 
- 	Cursor = require("../../../../lib/Cursor"),
 
- 	DocumentSource = require("../../../../lib/pipeline/documentSources/DocumentSource"),
 
- 	CursorDocumentSource = require("../../../../lib/pipeline/documentSources/CursorDocumentSource"),
 
- 	SkipDocumentSource = require("../../../../lib/pipeline/documentSources/SkipDocumentSource");
 
- module.exports = {
 
- 	"SkipDocumentSource": {
 
- 		"constructor()": {
 
- 			"should not throw Error when constructing without args": function testConstructor(){
 
- 				assert.doesNotThrow(function(){
 
- 					new SkipDocumentSource();
 
- 				});
 
- 			}
 
- 		},
 
- 		"#getSourceName()": {
 
- 			"should return the correct source name; $skip": function testSourceName(){
 
- 				var sds = new SkipDocumentSource();
 
- 				assert.strictEqual(sds.getSourceName(), "$skip");
 
- 			}
 
- 		},
 
- 		"#coalesce()": {
 
- 			"should return false if nextSource is not $skip": function dontSkip(){
 
- 				var sds = new SkipDocumentSource();
 
- 				assert.equal(sds.coalesce({}), false);
 
- 			},
 
- 			"should return true if nextSource is $skip": function changeSkip(){
 
- 				var sds = new SkipDocumentSource();
 
- 				assert.equal(sds.coalesce(new SkipDocumentSource()), true);
 
- 			}
 
- 		},
 
- 		"#getNext()": {
 
- 			"should throw an error if no callback is given": function() {
 
- 				var sds = new SkipDocumentSource();
 
- 				assert.throws(sds.getNext.bind(sds));
 
- 			},
 
- 			"should return EOF if there are no more sources": function noSources(next){
 
- 				var sds = new SkipDocumentSource();
 
- 				sds.skip = 3;
 
- 				sds.count = 0;
 
- 				var expected = [
 
- 					{val:4},
 
- 					DocumentSource.EOF
 
- 				];
 
- 				var cwc = new CursorDocumentSource.CursorWithContext();
 
- 				var input = [
 
- 					{val:1},
 
- 					{val:2},
 
- 					{val:3},
 
- 					{val:4},
 
- 				];
 
- 				cwc._cursor = new Cursor( input );
 
- 				var cds = new CursorDocumentSource(cwc);
 
- 				sds.setSource(cds);
 
- 				async.series([
 
- 						sds.getNext.bind(sds),
 
- 						sds.getNext.bind(sds),
 
- 					],
 
- 					function(err,res) {
 
- 						assert.deepEqual(expected, res);
 
- 						next();
 
- 					}
 
- 				);
 
- 				sds.getNext(function(err, actual) {
 
- 					assert.equal(actual, DocumentSource.EOF);
 
- 				});
 
- 			},
 
- 			"should return documents if skip count is not hit and there are more documents": function hitSkip(next){
 
- 				var sds = SkipDocumentSource.createFromJson(1);
 
- 				var cwc = new CursorDocumentSource.CursorWithContext();
 
- 				var input = [{val:1},{val:2},{val:3}];
 
- 				cwc._cursor = new Cursor( input );
 
- 				var cds = new CursorDocumentSource(cwc);
 
- 				sds.setSource(cds);
 
- 				sds.getNext(function(err,actual) {
 
- 					assert.notEqual(actual, DocumentSource.EOF);
 
- 					assert.deepEqual(actual, {val:2});
 
- 					next();
 
- 				});
 
- 			},
 
- 			"should return the current document source": function currSource(){
 
- 				var sds = SkipDocumentSource.createFromJson(1);
 
- 				var cwc = new CursorDocumentSource.CursorWithContext();
 
- 				var input = [{val:1},{val:2},{val:3}];
 
- 				cwc._cursor = new Cursor( input );
 
- 				var cds = new CursorDocumentSource(cwc);
 
- 				sds.setSource(cds);
 
- 				sds.getNext(function(err, actual) {
 
- 					assert.deepEqual(actual, { val:2 });
 
- 				});
 
- 			},
 
- 			"should return false if we hit our limit": function noMoar(next){
 
- 				var sds = new SkipDocumentSource();
 
- 				sds.skip = 3;
 
- 				var expected = [
 
- 					{item:4},
 
- 					DocumentSource.EOF
 
- 				];
 
- 				var i = 1;
 
- 				sds.source = {
 
- 					getNext:function(cb){
 
- 						if (i>=5)
 
- 							return cb(null,DocumentSource.EOF);
 
- 						return cb(null, { item:i++ });
 
- 					}
 
- 				};
 
- 				async.series([
 
- 						sds.getNext.bind(sds),
 
- 						sds.getNext.bind(sds),
 
- 					],
 
- 					function(err,res) {
 
- 						assert.deepEqual(expected, res);
 
- 						next();
 
- 					}
 
- 				);
 
- 			}
 
- 		},
 
- 		"#serialize()": {
 
- 			"should create an object with a key $skip and the value equal to the skip": function sourceToJsonTest(){
 
- 				var sds = new SkipDocumentSource();
 
- 				sds.skip = 9;
 
- 				var t = sds.serialize(false);
 
- 				assert.deepEqual(t, { "$skip": 9 });
 
- 			}
 
- 		},
 
- 		"#createFromJson()": {
 
- 			"should return a new SkipDocumentSource object from an input number": function createTest(){
 
- 				var t = SkipDocumentSource.createFromJson(5);
 
- 				assert.strictEqual(t.constructor, SkipDocumentSource);
 
- 				assert.strictEqual(t.skip, 5);
 
- 			}
 
- 		}
 
- 	}
 
- };
 
- if (!module.parent)(new(require("mocha"))()).ui("exports").reporter("spec").addFile(__filename).run(process.exit);
 
 
  |