smartdata/test/test.ts

107 lines
3.4 KiB
TypeScript
Raw Normal View History

2016-09-11 14:22:53 +00:00
import 'typings-test'
2016-09-11 14:22:53 +00:00
import * as shelljs from 'shelljs'
import * as should from 'should'
2016-09-12 15:31:23 +00:00
import * as smartstring from 'smartstring'
2016-09-11 14:22:53 +00:00
// the tested module
import * as smartdata from '../dist/index'
2016-09-11 14:22:53 +00:00
let mongoChildProcess
2016-09-12 21:50:25 +00:00
let testDb: smartdata.Db
2016-09-12 20:11:17 +00:00
interface ITestObject1 {
value1: string
value2?: number
value3?: string
}
let testDbCollection: smartdata.DbCollection<ITestObject1>
2016-09-11 14:22:53 +00:00
describe('mongodb', function () {
it('should start mongodb', function (done) {
2016-09-12 16:14:01 +00:00
this.timeout(30000)
mongoChildProcess = shelljs.exec('mongod --dbpath=./test/data --port 27017', { async: true, silent: true })
let doneCalled = false
2016-09-12 16:14:01 +00:00
mongoChildProcess.stdout.on('data', function (data) {
2016-09-13 20:53:21 +00:00
console.log(smartstring.indent.indentWithPrefix(data, '*** MongoDB Process *** : '))
2016-09-12 16:14:01 +00:00
if (!doneCalled) {
if (/waiting for connections on port 27017/.test(data)) {
doneCalled = true
done()
}
}
})
2016-09-11 14:22:53 +00:00
})
})
2016-09-12 20:11:17 +00:00
describe('smartdata', function () {
it('should establish a connection to mongodb', function (done) {
2016-09-12 21:50:25 +00:00
testDb = new smartdata.Db('mongodb://localhost:27017/smartdata')
testDb.connect().then(() => { done() })
2016-09-11 14:22:53 +00:00
})
it('should create a collection', function () {
2016-09-12 21:50:25 +00:00
testDbCollection = new smartdata.DbCollection<ITestObject1>('something', testDb)
2016-09-11 14:22:53 +00:00
})
2016-09-12 19:36:26 +00:00
it('should insert a doc into the collection', function (done) {
2016-09-12 20:11:17 +00:00
testDbCollection.insertOne({ value1: 'test' }).then(() => { done() })
2016-09-12 16:14:01 +00:00
})
2016-09-12 19:36:26 +00:00
it('should find all docs of testDbCollection', function (done) {
2016-09-12 16:14:01 +00:00
testDbCollection.find({}).then((resultArray) => {
console.log(resultArray)
2016-09-12 20:11:17 +00:00
should(resultArray[0].value1).equal('test')
2016-09-12 16:14:01 +00:00
done()
})
2016-09-12 15:31:23 +00:00
})
2016-09-12 19:36:26 +00:00
it('should insert many docs into the collection', function (done) {
testDbCollection.insertMany([
2016-09-12 20:11:17 +00:00
{ value1: 'test2' },
{ value1: 'test', value2: 3, value3: 'hi' }
2016-09-12 19:36:26 +00:00
]).then(() => { done() })
})
it('should find a specified doc', function (done) {
2016-09-13 20:53:21 +00:00
testDbCollection.find({ 'value3': { '$exists': true } }).then((resultArray) => {
2016-09-12 19:36:26 +00:00
console.log(resultArray)
2016-09-12 20:11:17 +00:00
should(resultArray[0].value3).equal('hi')
2016-09-12 19:36:26 +00:00
done()
}).catch(console.log)
})
it('should close the db Connection', function () {
2016-09-12 21:50:25 +00:00
testDb.close()
2016-09-11 14:22:53 +00:00
})
2016-09-13 20:53:21 +00:00
it('should create an extended class', function () {
class TestCar extends smartdata.DbDoc<TestCar> {
color: string
constructor(optionsArg: {
color: string,
property2: number
}) {
super('testCar',testDb)
}
};
let testCarInstance = new TestCar({
color: 'red',
property2: 2
})
should(testCarInstance).be.instanceof(smartdata.DbDoc)
testCarInstance.save()
it('should get a collection for testCar',function() {
})
})
2016-09-11 14:22:53 +00:00
})
describe('mongodb', function () {
2016-09-12 16:14:01 +00:00
it('should kill mongodb', function (done) {
this.timeout(30000)
mongoChildProcess.stdout.on('data', function (data) {
if (/dbexit: rc: 0/.test(data)) {
done()
}
})
2016-09-11 14:48:08 +00:00
shelljs.exec('mongod --dbpath=./test/data --shutdown')
2016-09-11 14:44:36 +00:00
mongoChildProcess.kill('SIGTERM')
2016-09-11 14:22:53 +00:00
})
})