docker/test/test.ts

36 lines
1.1 KiB
TypeScript
Raw Normal View History

2016-06-15 23:56:53 +00:00
import "typings-test";
import "should"
import {Dockersock} from "../dist/index"
describe("dockersock",function(){
describe(".Dockersock()",function(){
let testDockersock:Dockersock;
it("should create a new Dockersock instance",function(){
testDockersock = new Dockersock();
testDockersock.should.be.instanceof(Dockersock);
});
2016-06-16 02:18:10 +00:00
it("should list containers",function(done){
testDockersock.listContainers()
.then((dataArg)=>{
console.log(dataArg);
done();
});
});
it("should list detailed containers",function(done){
this.timeout(5000);
testDockersock.listContainersDetailed()
.then((dataArg)=>{
console.log(dataArg);
done();
});
});
2016-06-16 06:47:21 +00:00
it("should pull an image from imagetag",function(done){
2016-06-16 18:25:18 +00:00
this.timeout(30000);
testDockersock.pullImage("hosttoday%2Fht-docker-dbase")
2016-06-16 06:47:21 +00:00
.then((dataArg)=>{
done();
},done);
})
2016-06-15 23:56:53 +00:00
});
});