mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 13:57:32 +00:00
08ae39ae19
* new console * move npm ci to angular build * rel path for assets * local grpc copy * login policy, rm clear views, features rel path * lock Co-authored-by: Livio Amstutz <livio.a@gmail.com>
35 lines
1.5 KiB
TypeScript
35 lines
1.5 KiB
TypeScript
import { login, User } from "../../support/login/users";
|
|
|
|
describe("password complexity", ()=> {
|
|
|
|
const orgPath = `${Cypress.env('consoleUrl')}/org`
|
|
const testProjectName = 'e2eproject'
|
|
|
|
;[User.OrgOwner].forEach(user => {
|
|
|
|
describe(`as user "${user}"`, () => {
|
|
|
|
beforeEach(()=> {
|
|
login(user)
|
|
cy.visit(orgPath)
|
|
// TODO: Why force?
|
|
cy.contains('[data-e2e=policy-card]', 'Password Complexity').contains('button', 'Modify').click({force: true}) // TODO: select data-e2e
|
|
})
|
|
|
|
// TODO: fix saving password complexity policy bug
|
|
|
|
it(`should restrict passwords that don't have the minimal length`)
|
|
it(`should require passwords to contain a number if option is switched on`)
|
|
it(`should not require passwords to contain a number if option is switched off`)
|
|
it(`should require passwords to contain a symbol if option is switched on`)
|
|
it(`should not require passwords to contain a symbol if option is switched off`)
|
|
it(`should require passwords to contain a lowercase letter if option is switched on`)
|
|
it(`should not require passwords to contain a lowercase letter if option is switched off`)
|
|
it(`should require passwords to contain an uppercase letter if option is switched on`)
|
|
it(`should not require passwords to contain an uppercase letter if option is switched off`)
|
|
})
|
|
})
|
|
})
|
|
|
|
|