improved docker image testing

This commit is contained in:
Philipp Kunz 2016-06-07 12:12:19 +02:00
parent b7394ff730
commit 455247eb18
3 changed files with 18 additions and 19 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,2 @@
#!/bin/sh
npm -v
node -v

View File

@ -170,15 +170,15 @@ export class Dockerfile {
bashBare("docker pull " + this.buildTag);
};
test(){
let testFile = plugins.path.join(paths.NpmciTestDir,"test_" + this.version + ".sh");
let testExists = plugins.smartfile.checks.fileExistsSync(testFile);
if(testExists){
console.log("docker run -v " +
paths.NpmciTestDir + ":/test " +
"--name " + this.containerName + " " + this.buildTag + " /test/" + "test_" + this.version + ".sh");
bashBare("docker run -v " +
paths.NpmciTestDir + ":/test " +
"--name " + this.containerName + " " + this.buildTag + " /test/" + "test_" + this.version + ".sh");
let testFile:string = plugins.path.join(paths.NpmciTestDir,"test_" + this.version + ".sh");
let testFileExists:boolean = plugins.smartfile.checks.fileExistsSync(testFile);
if(testFileExists){
bashBare("docker run --name npmci_test_container " + this.buildTag + " mkdir /npmci_test");
bashBare("docker cp " + testFile + " npmci_test_container:/npmci_test/test.sh");
bashBare("docker commit npmci_test_container npmci_test_image");
bashBare("docker run npmci_test_image sh /npmci_test/test.sh");
bashBare("docker rm npmci_test_container");
bashBare("docker rmi --force npmci_test_image");
} else {
plugins.beautylog.warn("skipping tests for " + this.cleanTag + " because no testfile was found!");
}