2021-01-21 12:09:50 +00:00
|
|
|
import LoginPage from "../support/pages/LoginPage.js";
|
|
|
|
import Masthead from "../support/pages/admin_console/Masthead.js";
|
|
|
|
import ListingPage from "../support/pages/admin_console/ListingPage.js";
|
|
|
|
import SidebarPage from "../support/pages/admin_console/SidebarPage.js";
|
|
|
|
import CreateClientScopePage from "../support/pages/admin_console/manage/client_scopes/CreateClientScopePage.js";
|
|
|
|
|
2021-01-27 12:47:57 +00:00
|
|
|
let itemId = "client_scope_crud";
|
|
|
|
const loginPage = new LoginPage();
|
|
|
|
const masthead = new Masthead();
|
|
|
|
const sidebarPage = new SidebarPage();
|
|
|
|
const listingPage = new ListingPage();
|
|
|
|
const createClientScopePage = new CreateClientScopePage();
|
|
|
|
|
2021-01-21 12:09:50 +00:00
|
|
|
describe("Client Scopes test", function () {
|
|
|
|
|
|
|
|
describe("Client Scope creation", function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
cy.visit("");
|
|
|
|
loginPage.logIn();
|
|
|
|
sidebarPage.goToClientScopes();
|
2021-01-25 17:17:59 +00:00
|
|
|
});
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-01-25 17:17:59 +00:00
|
|
|
it("should fail creating client scope", function () {
|
2021-01-21 12:09:50 +00:00
|
|
|
listingPage.goToCreateItem();
|
|
|
|
|
|
|
|
createClientScopePage.save().checkClientNameRequiredMessage();
|
|
|
|
|
|
|
|
createClientScopePage
|
|
|
|
.fillClientScopeData("address")
|
|
|
|
.save()
|
|
|
|
.checkClientNameRequiredMessage(false);
|
|
|
|
|
|
|
|
// The error should inform about duplicated name/id
|
|
|
|
masthead.checkNotificationMessage(
|
|
|
|
"Could not create client scope: 'Error: Request failed with status code 409'"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2021-01-25 17:17:59 +00:00
|
|
|
it('Client scope CRUD test',async function () {
|
|
|
|
itemId += "_" + (Math.random() + 1).toString(36).substring(7);
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-01-25 17:17:59 +00:00
|
|
|
// Create
|
|
|
|
listingPage
|
|
|
|
.itemExist(itemId, false)
|
|
|
|
.goToCreateItem();
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-01-25 17:17:59 +00:00
|
|
|
createClientScopePage
|
|
|
|
.fillClientScopeData(itemId)
|
|
|
|
.save();
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-01-27 12:47:57 +00:00
|
|
|
masthead.checkNotificationMessage("Client scope created");
|
2021-01-21 12:09:50 +00:00
|
|
|
|
|
|
|
sidebarPage.goToClientScopes();
|
|
|
|
|
2021-01-25 17:17:59 +00:00
|
|
|
// Delete
|
|
|
|
listingPage
|
|
|
|
.itemExist(itemId)
|
|
|
|
.deleteItem(itemId); // There should be a confirmation pop-up
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-01-27 12:47:57 +00:00
|
|
|
masthead.checkNotificationMessage("The client scope has been deleted");
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-01-25 17:17:59 +00:00
|
|
|
listingPage // It is not refreshing after delete
|
|
|
|
.itemExist(itemId, false);
|
2021-01-21 12:09:50 +00:00
|
|
|
});
|
|
|
|
});
|
2021-01-25 17:17:59 +00:00
|
|
|
})
|