2019-01-30 21:44:03 +00:00
|
|
|
import AutheliaSuite from "../../helpers/context/AutheliaSuite";
|
2019-11-16 10:38:21 +00:00
|
|
|
import MariaConnectionRecovery from "./scenarii/MariaConnectionRecovery";
|
2019-01-30 21:44:03 +00:00
|
|
|
import EnforceInternalRedirectionsOnly from "./scenarii/EnforceInternalRedirectionsOnly";
|
2019-02-09 22:20:37 +00:00
|
|
|
import AccessControl from "./scenarii/AccessControl";
|
2019-02-12 22:23:43 +00:00
|
|
|
import CustomHeadersForwarded from "./scenarii/CustomHeadersForwarded";
|
2019-02-12 22:57:09 +00:00
|
|
|
import BasicAuthentication from "./scenarii/BasicAuthentication";
|
2019-02-13 22:04:57 +00:00
|
|
|
import AutheliaRestart from "./scenarii/AutheliaRestart";
|
|
|
|
import AuthenticationRegulation from "./scenarii/AuthenticationRegulation";
|
2019-01-30 21:44:03 +00:00
|
|
|
|
2019-11-02 14:32:58 +00:00
|
|
|
AutheliaSuite(__dirname, function () {
|
2019-01-30 21:44:03 +00:00
|
|
|
this.timeout(10000);
|
|
|
|
|
2019-02-12 22:23:43 +00:00
|
|
|
describe('Custom headers forwarded to backend', CustomHeadersForwarded);
|
2019-02-09 22:20:37 +00:00
|
|
|
describe('Access control', AccessControl);
|
2019-11-16 10:38:21 +00:00
|
|
|
describe('Mariadb broken connection recovery', MariaConnectionRecovery);
|
2019-01-30 21:44:03 +00:00
|
|
|
describe('Enforce internal redirections only', EnforceInternalRedirectionsOnly);
|
2019-02-12 22:57:09 +00:00
|
|
|
describe('Basic authentication', BasicAuthentication);
|
2019-02-13 22:04:57 +00:00
|
|
|
describe('Authelia restart', AutheliaRestart);
|
|
|
|
describe('Authentication regulation', AuthenticationRegulation);
|
2019-01-30 21:44:03 +00:00
|
|
|
});
|