mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9dab40c2ce
In order to simplify the deployment of Authelia for testing, LDAP is now optional made optional thanks to users database stored in a file. One can update the file manually even while Authelia is running. With this feature the minimal configuration requires only two components: Authelia and nginx. The users database is obviously made for development environments only as it prevents Authelia to be scaled to more than one instance. Note: Configuration has been updated. Key `ldap` has been nested in `authentication_backend`.
44 lines
1.9 KiB
TypeScript
44 lines
1.9 KiB
TypeScript
require("chromedriver");
|
|
import Bluebird = require("bluebird");
|
|
import ChildProcess = require("child_process");
|
|
import SeleniumWebdriver = require("selenium-webdriver");
|
|
|
|
import WithDriver from '../helpers/with-driver';
|
|
import VisitPage from '../helpers/visit-page';
|
|
import ClickOnLink from '../helpers/click-on-link';
|
|
import ClickOnButton from '../helpers/click-on-button';
|
|
import WaitRedirect from '../helpers/wait-redirected';
|
|
import FillField from "../helpers/fill-field";
|
|
import {GetLinkFromFile} from "../helpers/get-identity-link";
|
|
import FillLoginPageAndClick from "../helpers/fill-login-page-and-click";
|
|
|
|
const execAsync = Bluebird.promisify(ChildProcess.exec);
|
|
|
|
describe('Reset password', function() {
|
|
this.timeout(10000);
|
|
WithDriver();
|
|
|
|
after(() => {
|
|
return execAsync("cp users_database.yml users_database.test.yml");
|
|
})
|
|
|
|
describe('click on reset password', function() {
|
|
it("should reset password for john", function() {
|
|
return VisitPage(this.driver, "https://login.example.com:8080/")
|
|
.then(() => ClickOnLink(this.driver, "Forgot password\?"))
|
|
.then(() => WaitRedirect(this.driver, "https://login.example.com:8080/password-reset/request"))
|
|
.then(() => FillField(this.driver, "username", "john"))
|
|
.then(() => ClickOnButton(this.driver, "Reset Password"))
|
|
.then(() => this.driver.sleep(1000)) // Simulate the time to read it from mailbox.
|
|
.then(() => GetLinkFromFile())
|
|
.then((link) => VisitPage(this.driver, link))
|
|
.then(() => FillField(this.driver, "password1", "newpass"))
|
|
.then(() => FillField(this.driver, "password2", "newpass"))
|
|
.then(() => ClickOnButton(this.driver, "Reset Password"))
|
|
.then(() => WaitRedirect(this.driver, "https://login.example.com:8080/"))
|
|
.then(() => FillLoginPageAndClick(this.driver, "john", "newpass"))
|
|
.then(() => WaitRedirect(this.driver, "https://login.example.com:8080/secondfactor"))
|
|
});
|
|
});
|
|
});
|