authelia/test/suites/high-availability/scenarii/MongoConnectionRecovery.ts

24 lines
896 B
TypeScript
Raw Normal View History

import LoginAndRegisterTotp from "../../../helpers/LoginAndRegisterTotp";
import FullLogin from "../../../helpers/FullLogin";
import child_process from 'child_process';
2019-02-09 22:20:37 +00:00
import WithDriver from "../../../helpers/context/WithDriver";
import Logout from "../../../helpers/Logout";
import { composeFiles } from '../environment';
import DockerCompose from "../../../helpers/context/DockerCompose";
export default function() {
2019-02-09 22:20:37 +00:00
after(async function() {
await Logout(this.driver);
})
WithDriver();
it("should be able to login after mongo restarts", async function() {
this.timeout(30000);
2019-02-22 09:27:54 +00:00
const secret = await LoginAndRegisterTotp(this.driver, "john", "password", true);
const dockerCompose = new DockerCompose(composeFiles);
await dockerCompose.restart('mongo');
await FullLogin(this.driver, "john", secret, "https://admin.example.com:8080/secret.html");
});
}