mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
a991379a74
Some tests are not fully rewritten in Go, a typescript wrapper is called instead until we remove the remaining TS tests and dependencies. Also, dockerize every components (mainly Authelia backend, frontend and kind) so that the project does not interfere with user host anymore (open ports for instance). The only remaining intrusive change is the one done during bootstrap to add entries in /etc/hosts. It will soon be avoided using authelia.com domain that I own.
29 lines
1.3 KiB
TypeScript
29 lines
1.3 KiB
TypeScript
import AutheliaSuite from "../../helpers/context/AutheliaSuite";
|
|
import BadPassword from "./scenarii/BadPassword";
|
|
import RegisterTotp from './scenarii/RegisterTotp';
|
|
import ResetPassword from './scenarii/ResetPassword';
|
|
import TOTPValidation from './scenarii/TOTPValidation';
|
|
import BackendProtection from './scenarii/BackendProtection';
|
|
import VerifyEndpoint from './scenarii/VerifyEndpoint';
|
|
import AlreadyLoggedIn from './scenarii/AlreadyLoggedIn';
|
|
import { exec } from '../../helpers/utils/exec';
|
|
import BypassPolicy from "./scenarii/BypassPolicy";
|
|
import NoDuoPushOption from "./scenarii/NoDuoPushOption";
|
|
|
|
AutheliaSuite("/tmp/authelia/suites/Basic/", function() {
|
|
this.timeout(10000);
|
|
|
|
beforeEach(async function() {
|
|
await exec(`cp ${__dirname}/../../../suites/Basic/users.yml /tmp/authelia/suites/Basic/users.yml`);
|
|
});
|
|
|
|
describe('Bypass policy', BypassPolicy)
|
|
describe('Backend protection', BackendProtection);
|
|
describe('Verify API endpoint', VerifyEndpoint);
|
|
describe('Bad password', BadPassword);
|
|
describe('Reset password', ResetPassword);
|
|
describe('TOTP Registration', RegisterTotp);
|
|
describe('TOTP Validation', TOTPValidation);
|
|
describe('Already logged in', AlreadyLoggedIn);
|
|
describe('No Duo Push method available', NoDuoPushOption);
|
|
}); |