authelia/test/suites/minimal/scenarii/BadPassword.ts

30 lines
1.1 KiB
TypeScript
Raw Normal View History

import FillLoginPageWithUserAndPasswordAndClick from '../../../helpers/FillLoginPageAndClick';
import {AUTHENTICATION_FAILED} from '../../../../shared/UserMessages';
import VisitPageAndWaitUrlIs from '../../../helpers/behaviors/VisitPageAndWaitUrlIs';
import VerifyNotificationDisplayed from '../../../helpers/assertions/VerifyNotificationDisplayed';
2019-02-13 22:31:12 +00:00
import { StartDriver, StopDriver } from '../../../helpers/context/WithDriver';
export default function() {
/**
* When user provides bad password,
* Then he gets a notification message.
*/
describe('failed login as john in first factor', function() {
2019-02-13 22:31:12 +00:00
this.timeout(10000);
before(async function() {
this.driver = await StartDriver();
await VisitPageAndWaitUrlIs(this.driver, "https://login.example.com:8080/")
await FillLoginPageWithUserAndPasswordAndClick(this.driver, 'john', 'bad_password');
});
2019-02-13 22:31:12 +00:00
after(async function() {
await StopDriver(this.driver);
})
it('should get a notification message', async function () {
await VerifyNotificationDisplayed(this.driver, AUTHENTICATION_FAILED);
});
});
}