docker/test/test.ts

36 lines
1.2 KiB
TypeScript
Raw Normal View History

2017-03-26 11:02:20 +00:00
import "typings-global";
import { expect, tap } from 'tapbundle'
import * as observableToPromise from 'observable-to-promise'
2017-04-02 10:05:29 +00:00
import { Dockersock } from "../dist/index";
let testDockersock: Dockersock;
tap.test("should create a new Dockersock instance", async () => {
testDockersock = new Dockersock();
return expect(testDockersock).to.be.instanceof(Dockersock);
}).catch(tap.threw);
2017-04-02 10:05:29 +00:00
tap.test("should list containers", async () => {
await testDockersock.listContainers()
.then(async (dataArg) => {
console.log(dataArg);
2016-06-16 02:18:10 +00:00
});
}).catch(tap.threw);
2017-04-02 10:05:29 +00:00
tap.test("should list detailed containers", async () => {
await testDockersock.listContainersDetailed()
.then(async (dataArg) => {
console.log(dataArg);
});
}).catch(tap.threw);
2017-04-02 10:05:29 +00:00
tap.test("should pull an image from imagetag", async () => {
await testDockersock.pullImage("hosttoday/ht-docker-node:npmci")
}).catch(tap.threw);
2017-04-02 10:05:29 +00:00
/*tap.test("should return a change Objservable", async () => {
let myObservable = testDockersock.getChangeObservable();
2017-04-02 10:05:29 +00:00
testDockersock.endRequests();
let testPromise = observableToPromise(myObservable)
return await expect(testPromise).to.eventually.be.fulfilled
}).catch(tap.threw);*/