Skip to content

Commit

Permalink
Read-only tenant mode tests (#792)
Browse files Browse the repository at this point in the history
* feat: introduces read-only tenant mode tests

Signed-off-by: Kajetan Nobel <[email protected]>

* feat: move loadSampleData to before

Signed-off-by: Kajetan Nobel <[email protected]>

* fix: add data to correct tenant, fix for version 2.9.0

Signed-off-by: Kajetan Nobel <[email protected]>

* feat: retest and improve switching tenant

Signed-off-by: Kajetan Nobel <[email protected]>

---------

Signed-off-by: Kajetan Nobel <[email protected]>
Signed-off-by: Kajetan Nobel <[email protected]>
  • Loading branch information
kajetan-nobel authored Dec 20, 2023
1 parent 652537e commit 941f2de
Show file tree
Hide file tree
Showing 3 changed files with 122 additions and 5 deletions.
95 changes: 95 additions & 0 deletions cypress/integration/plugins/security-dashboards-plugin/readonly.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/

import roleWithoutTestJson from '../../../fixtures/plugins/security-dashboards-plugin/roles/roleWithoutTest';
import { BASE_PATH } from '../../../utils/base_constants';
import { ADMIN_AUTH, CURRENT_TENANT } from '../../../utils/commands';
import { switchTenantTo } from './switch_tenant';

const TEST_CONFIG = {
role: {
name: 'test_readonly_role',
json: Object.assign({}, roleWithoutTestJson, {
tenant_permissions: [
{
tenant_patterns: ['test_readonly_tenant'],
allowed_actions: ['kibana_all_read'],
},
],
}),
},
tenant: {
name: 'test_readonly_tenant',
description: 'Testing read-only tenant mode',
},
user: {
username: 'test_readonly_user',
password: 'testUserPassword123',
},
};

if (Cypress.env('SECURITY_ENABLED')) {
describe('Read Only mode', () => {
before(() => {
cy.server();

cy.createTenant(TEST_CONFIG.tenant.name, {
description: TEST_CONFIG.tenant.description,
});

cy.createInternalUser(TEST_CONFIG.user.username, {
password: TEST_CONFIG.user.password,
});

cy.createRole(TEST_CONFIG.role.name, TEST_CONFIG.role.json);

cy.createRoleMapping(TEST_CONFIG.role.name, {
users: [ADMIN_AUTH.username, TEST_CONFIG.user.username],
});

/* Add sample data to testing tenant */
CURRENT_TENANT.newTenant = TEST_CONFIG.tenant.name;
cy.visit(BASE_PATH, {
onBeforeLoad(window) {
window.sessionStorage.setItem(
'opendistro::security::tenant::show_popup',
false
);
window.localStorage.setItem(
'opendistro::security::tenant::saved',
`"${TEST_CONFIG.tenant.name}"`
);
window.localStorage.setItem('home:newThemeModal:show', false);
},
});
cy.waitForLoader();
switchTenantTo(TEST_CONFIG.tenant.name);
cy.loadSampleData('logs');
});

it('should be able to modify the dashboard as admin', () => {
cy.visit(BASE_PATH);
cy.waitForLoader();

cy.visitDashboard('[Logs] Web Traffic');

cy.getElementByTestId('dashboardClone').should('exist');
cy.getElementByTestId('dashboardEditMode').should('exist');
});

it('should not be able to modify the dashboard when is performing as a custom readonly tenant', () => {
ADMIN_AUTH.newUser = TEST_CONFIG.user.username;
ADMIN_AUTH.newPassword = TEST_CONFIG.user.password;

cy.visit(BASE_PATH);
cy.waitForLoader();

cy.visitDashboard('[Logs] Web Traffic');

cy.getElementByTestId('dashboardClone').should('not.exist');
cy.getElementByTestId('dashboardEditMode').should('not.exist');
});
});
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,24 @@ export function switchTenantTo(newTenant) {
}).as('waitForAccountInfo');

cy.getElementByTestId('switch-tenants').click();
//should ensures the dialog window is fully loaded and the radios can be selected.
cy.get('[id="' + newTenant + '"][name="tenantSwitchRadios"]').should(
'be.enabled'
);
cy.get('.euiRadio__label[for="' + newTenant + '"]').click();

if (['global', 'private'].includes(newTenant)) {
cy.get('[id="' + newTenant + '"][name="tenantSwitchRadios"]').should(
'be.enabled'
);
cy.get('.euiRadio__label[for="' + newTenant + '"]').click();
} else {
cy.get('[id="custom"][name="tenantSwitchRadios"]').should('be.enabled');

cy.getElementByTestId('tenant-switch-modal')
.find('[data-test-subj="comboBoxInput"]')
.click();

// typo in data-test-subj
cy.getElementByTestId('comboBoxOptionsList ')
.find(`[title="${newTenant}"]`)
.click();
}

cy.intercept({
method: 'POST',
Expand Down
9 changes: 9 additions & 0 deletions cypress/utils/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -516,3 +516,12 @@ Cypress.Commands.add(
});
}
);

// type: logs, ecommerce, flights
Cypress.Commands.add('loadSampleData', (type) => {
cy.request({
method: 'POST',
headers: { 'osd-xsrf': 'opensearch-dashboards' },
url: `${BASE_PATH}/api/sample_data/${type}`,
});
});

0 comments on commit 941f2de

Please sign in to comment.