Skip to content

Commit

Permalink
Merge pull request PrestaShop#37372 from Progi1984/90x_putModuleTechn…
Browse files Browse the repository at this point in the history
…icalNameInstall

Functional Tests : API : PUT /module/{technicalName}/install
  • Loading branch information
Progi1984 authored Nov 14, 2024
2 parents dd932a6 + 23b2505 commit e7fb8e3
Showing 1 changed file with 270 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,270 @@
// Import utils
import testContext from '@utils/testContext';

// Import commonTests
import {deleteAPIClientTest} from '@commonTests/BO/advancedParameters/authServer';
import {uninstallModule} from '@commonTests/BO/modules/moduleManager';

import {expect} from 'chai';
import {
type APIRequestContext,
boApiClientsPage,
boApiClientsCreatePage,
boDashboardPage,
boModuleManagerPage,
boLoginPage,
type BrowserContext,
dataModules,
FakerAPIClient,
type Page,
utilsAPI,
utilsPlaywright,
} from '@prestashop-core/ui-testing';

const baseContext: string = 'functional_API_endpoints_module_putModuleTechnicalNameInstall';

describe('API : PUT /module/{technicalName}/install', async () => {
let apiContext: APIRequestContext;
let browserContext: BrowserContext;
let page: Page;
let clientSecret: string;
let accessToken: string;
let jsonResponse: any;

const clientScope: string = 'module_write';
const clientData: FakerAPIClient = new FakerAPIClient({
enabled: true,
scopes: [
clientScope,
],
});

before(async function () {
browserContext = await utilsPlaywright.createBrowserContext(this.browser);
page = await utilsPlaywright.newTab(browserContext);

apiContext = await utilsPlaywright.createAPIContext(global.API.URL);
});

after(async () => {
await utilsPlaywright.closeBrowserContext(browserContext);
});

describe('BackOffice : Fetch the access token', async () => {
it('should login in BO', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'loginBO', baseContext);

await boLoginPage.goTo(page, global.BO.URL);
await boLoginPage.successLogin(page, global.BO.EMAIL, global.BO.PASSWD);

const pageTitle = await boDashboardPage.getPageTitle(page);
expect(pageTitle).to.contains(boDashboardPage.pageTitle);
});

it('should go to \'Advanced Parameters > API Client\' page', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'goToAdminAPIPage', baseContext);

await boDashboardPage.goToSubMenu(
page,
boDashboardPage.advancedParametersLink,
boDashboardPage.adminAPILink,
);

const pageTitle = await boApiClientsPage.getPageTitle(page);
expect(pageTitle).to.eq(boApiClientsPage.pageTitle);
});

it('should check that no records found', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'checkThatNoRecordFound', baseContext);

const noRecordsFoundText = await boApiClientsPage.getTextForEmptyTable(page);
expect(noRecordsFoundText).to.contains('warning No records found');
});

it('should go to add New API Client page', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'goToNewAPIClientPage', baseContext);

await boApiClientsPage.goToNewAPIClientPage(page);

const pageTitle = await boApiClientsCreatePage.getPageTitle(page);
expect(pageTitle).to.eq(boApiClientsCreatePage.pageTitleCreate);
});

it('should create API Client', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'createAPIClient', baseContext);

const textResult = await boApiClientsCreatePage.addAPIClient(page, clientData);
expect(textResult).to.contains(boApiClientsCreatePage.successfulCreationMessage);

const textMessage = await boApiClientsCreatePage.getAlertInfoBlockParagraphContent(page);
expect(textMessage).to.contains(boApiClientsCreatePage.apiClientGeneratedMessage);
});

it('should copy client secret', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'copyClientSecret', baseContext);

await boApiClientsCreatePage.copyClientSecret(page);

clientSecret = await boApiClientsCreatePage.getClipboardText(page);
expect(clientSecret.length).to.be.gt(0);
});

it('should request the endpoint /access_token', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'requestOauth2Token', baseContext);

const apiResponse = await apiContext.post('access_token', {
form: {
client_id: clientData.clientId,
client_secret: clientSecret,
grant_type: 'client_credentials',
scope: clientScope,
},
});
expect(apiResponse.status()).to.eq(200);
expect(utilsAPI.hasResponseHeader(apiResponse, 'Content-Type')).to.eq(true);
expect(utilsAPI.getResponseHeader(apiResponse, 'Content-Type')).to.contains('application/json');

const jsonResponse = await apiResponse.json();
expect(jsonResponse).to.have.property('access_token');
expect(jsonResponse.token_type).to.be.a('string');

accessToken = jsonResponse.access_token;
});
});

describe('BackOffice : Check the module is not present', async () => {
it('should go to \'Modules > Module Manager\' page', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'goToModulesPage', baseContext);

await boDashboardPage.goToSubMenu(page, boDashboardPage.modulesParentLink, boDashboardPage.moduleManagerLink);
await boModuleManagerPage.closeSfToolBar(page);

const pageTitle = await boModuleManagerPage.getPageTitle(page);
expect(pageTitle).to.contains(boModuleManagerPage.pageTitle);
});

it('should filter list by name', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'searchModule', baseContext);

const isModuleVisible = await boModuleManagerPage.searchModule(page, dataModules.keycloak);
expect(isModuleVisible).to.be.equal(false);
});
});

describe('API : PUT /module/{technicalName}/install', async () => {
// Upload the module before installing
it('should request the endpoint /module/upload-source', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'requestEndpointUploadSource', baseContext);

const apiResponse = await apiContext.post('module/upload-source', {
headers: {
Authorization: `Bearer ${accessToken}`,
},
data: {
source: dataModules.keycloak.releaseZip(dataModules.keycloak.versionCurrent),
},
});
expect(apiResponse.status()).to.eq(201);
expect(utilsAPI.hasResponseHeader(apiResponse, 'Content-Type')).to.eq(true);
expect(utilsAPI.getResponseHeader(apiResponse, 'Content-Type')).to.contains('application/json');
});

it('should request the endpoint /module/{technicalName}/install', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'requestEndpoint', baseContext);

const apiResponse = await apiContext.put(`module/${dataModules.keycloak.tag}/install`, {
headers: {
Authorization: `Bearer ${accessToken}`,
},
data: {},
});
expect(apiResponse.status()).to.eq(200);
expect(utilsAPI.hasResponseHeader(apiResponse, 'Content-Type')).to.eq(true);
expect(utilsAPI.getResponseHeader(apiResponse, 'Content-Type')).to.contains('application/json');

jsonResponse = await apiResponse.json();
});

it('should check the JSON Response keys', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'checkResponseKeys', baseContext);
expect(jsonResponse).to.have.all.keys(
'moduleId',
'technicalName',
'moduleVersion',
'installedVersion',
'enabled',
'installed',
);
});

it('should check the JSON Response : `moduleId`', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'checkResponseModuleId', baseContext);

expect(jsonResponse).to.have.property('moduleId');
expect(jsonResponse.moduleId).to.be.a('number');
expect(jsonResponse.moduleId).to.be.gt(0);
});

it('should check the JSON Response : `technicalName`', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'checkResponseTechnicalName', baseContext);

expect(jsonResponse).to.have.property('technicalName');
expect(jsonResponse.technicalName).to.be.a('string');
expect(jsonResponse.technicalName).to.be.equal(dataModules.keycloak.tag);
});

it('should check the JSON Response : `moduleVersion`', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'checkResponseModuleVersion', baseContext);

expect(jsonResponse).to.have.property('moduleVersion');
expect(jsonResponse.moduleVersion).to.be.a('string');
expect(dataModules.keycloak.versionCurrent).to.contains(jsonResponse.moduleVersion);
});

it('should check the JSON Response : `installedVersion`', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'checkResponseInstalledVersion', baseContext);

expect(jsonResponse).to.have.property('installedVersion');
expect(jsonResponse.moduleVersion).to.be.a('string');
expect(dataModules.keycloak.versionCurrent).to.contains(jsonResponse.installedVersion);
});

it('should check the JSON Response : `enabled`', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'checkResponseEnabled', baseContext);

expect(jsonResponse).to.have.property('enabled');
expect(jsonResponse.enabled).to.be.a('boolean');
expect(jsonResponse.enabled).to.be.equal(true);
});

it('should check the JSON Response : `installed`', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'checkResponseInstalled', baseContext);

expect(jsonResponse).to.have.property('installed');
expect(jsonResponse.installed).to.be.a('boolean');
expect(jsonResponse.installed).to.be.equal(true);
});
});

describe('BackOffice : Check the module is installed', async () => {
it('should filter list by name', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'searchModuleInstalled', baseContext);

const isModuleVisible = await boModuleManagerPage.searchModule(page, dataModules.keycloak);
expect(isModuleVisible).to.be.equal(true);

const moduleInfo = await boModuleManagerPage.getModuleInformationNth(page, 1);
expect(moduleInfo.moduleId).to.equal(jsonResponse.moduleId);
expect(moduleInfo.technicalName).to.equal(jsonResponse.technicalName);
expect(moduleInfo.version).to.equal(jsonResponse.moduleVersion);
expect(moduleInfo.enabled).to.equal(jsonResponse.enabled);
expect(moduleInfo.installed).to.equal(jsonResponse.installed);
});
});

// Pre-condition: Uninstall the module
uninstallModule(dataModules.keycloak, `${baseContext}_postTest_0`);

// Pre-condition: Create an API Client
deleteAPIClientTest(`${baseContext}_postTest_1`);
});

0 comments on commit e7fb8e3

Please sign in to comment.