mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-18 07:52:08 +02:00
Initial commit: Security packages
This commit is contained in:
commit
bb469e4763
1399 changed files with 278378 additions and 0 deletions
|
|
@ -0,0 +1,76 @@
|
|||
odoo.define('auth_totp_mail.tours', function(require) {
|
||||
"use strict";
|
||||
|
||||
const tour = require('web_tour.tour');
|
||||
|
||||
function openAccountSettingsTab() {
|
||||
return [{
|
||||
content: 'Go to settings',
|
||||
trigger: '[data-menu-xmlid="base.menu_administration"]'
|
||||
}, {
|
||||
content: 'Wait for page',
|
||||
trigger: '.o_menu_brand:contains("Settings")',
|
||||
run: () => {}
|
||||
}, {
|
||||
content: "Open Users menu",
|
||||
trigger: '[data-menu-xmlid="base.menu_users"]'
|
||||
}, {
|
||||
content: "Open Users view",
|
||||
trigger: '[data-menu-xmlid="base.menu_action_res_users"]',
|
||||
run: function (helpers) {
|
||||
// funny story: the users view we're trying to reach, sometimes we're
|
||||
// already there, but if we re-click the next step executes before the
|
||||
// action has the time to re-load, the one after that doesn't, and our
|
||||
// selection get discarded by the action reloading, so here try to
|
||||
// see if we're already on the users action through the breadcrumb and
|
||||
// just close the menu if so
|
||||
const $crumb = $('.breadcrumb');
|
||||
if ($crumb.text().indexOf('Users') === -1) {
|
||||
// on general settings page, click menu
|
||||
helpers.click();
|
||||
} else {
|
||||
// else close menu
|
||||
helpers.click($('[data-menu-xmlid="base.menu_users"]'));
|
||||
}
|
||||
}
|
||||
}];
|
||||
}
|
||||
|
||||
tour.register('totp_admin_self_invite', {
|
||||
test: true,
|
||||
url: '/web'
|
||||
}, [tour.stepUtils.showAppsMenuItem(), ...openAccountSettingsTab(), {
|
||||
content: "open the user's form",
|
||||
trigger: "td.o_data_cell:contains(admin)",
|
||||
}, {
|
||||
content: "go to Account security Tab",
|
||||
trigger: "a.nav-link:contains(Account Security)",
|
||||
}, {
|
||||
content: "check that user cannot invite themselves to use 2FA.",
|
||||
trigger: "body",
|
||||
run: function () {
|
||||
const inviteBtn = $('button:contains(Invite to use 2FA)')[0];
|
||||
if (!inviteBtn) {
|
||||
$('body').addClass('CannotInviteYourself');
|
||||
}
|
||||
}
|
||||
}, {
|
||||
content: "check that user cannot invite themself.",
|
||||
trigger: "body.CannotInviteYourself"
|
||||
}]);
|
||||
|
||||
tour.register('totp_admin_invite', {
|
||||
test: true,
|
||||
url: '/web'
|
||||
}, [tour.stepUtils.showAppsMenuItem(), ...openAccountSettingsTab(), {
|
||||
content: "open the user's form",
|
||||
trigger: "td.o_data_cell:contains(demo)",
|
||||
}, {
|
||||
content: "go to Account security Tab",
|
||||
trigger: "a.nav-link:contains(Account Security)",
|
||||
}, {
|
||||
content: "check that demo user can be invited to use 2FA.",
|
||||
trigger: "button:contains(Invite to use 2FA)",
|
||||
}]);
|
||||
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue