2018-10-22 07:35:06 +00:00
|
|
|
require("chromedriver");
|
|
|
|
import Bluebird = require("bluebird");
|
|
|
|
import Configuration = require("../configuration");
|
|
|
|
import Environment = require("../environment");
|
|
|
|
|
|
|
|
import ChildProcess = require('child_process');
|
|
|
|
const execAsync = Bluebird.promisify(ChildProcess.exec);
|
|
|
|
|
|
|
|
const includes = [
|
|
|
|
"docker-compose.test.yml",
|
|
|
|
"example/compose/docker-compose.base.yml",
|
|
|
|
"example/compose/nginx/minimal/docker-compose.yml",
|
2018-11-15 21:29:02 +00:00
|
|
|
"example/compose/smtp/docker-compose.yml",
|
2018-10-22 07:35:06 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
before(function() {
|
|
|
|
this.timeout(20000);
|
|
|
|
this.environment = new Environment.Environment(includes);
|
|
|
|
this.configuration = new Configuration.Configuration();
|
|
|
|
|
|
|
|
return this.configuration.setup(
|
|
|
|
"config.minimal.yml",
|
|
|
|
"config.test.yml",
|
|
|
|
conf => {
|
|
|
|
conf.session.inactivity = 2000;
|
|
|
|
})
|
|
|
|
.then(() => execAsync("cp users_database.yml users_database.test.yml"))
|
|
|
|
.then(() => this.environment.setup(2000));
|
|
|
|
});
|
|
|
|
|
|
|
|
after(function() {
|
|
|
|
this.timeout(30000);
|
|
|
|
return this.configuration.cleanup()
|
|
|
|
.then(() => execAsync("rm users_database.test.yml"))
|
|
|
|
.then(() => this.environment.cleanup());
|
|
|
|
});
|