passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
181 lines (160 loc) • 4.72 kB
JavaScript
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) 2020 Passbolt SA (https://www.passbolt.com)
*
* Licensed under GNU Affero General Public License version 3 of the or any later version.
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) 2020 Passbolt SA (https://www.passbolt.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.passbolt.com Passbolt(tm)
* @since 2.11.0
*/
import {fireEvent, render, waitFor} from "@testing-library/react";
import AppContext from "../../../contexts/AppContext";
import React from "react";
import {BrowserRouter as Router} from 'react-router-dom';
import MockTranslationProvider from "../../../test/mock/components/Internationalisation/MockTranslationProvider";
import DisplayResourceFolderDetailsInformation from "./DisplayResourceFolderDetailsInformation";
/**
* The DisplayResourceFolderDetailsInformation component represented as a page
*/
export default class DisplayResourceFolderDetailsInformationPage {
/**
* Default constructor
* @param appContext An app context
* @param props Props to attach
*/
constructor(appContext, props) {
this._page = render(
<MockTranslationProvider>
<AppContext.Provider value={appContext}>
<Router>
<DisplayResourceFolderDetailsInformation {...props}/>
</Router>
</AppContext.Provider>
</MockTranslationProvider>
);
this.setupPageObjects();
}
/**
* Set up the objects of the page
*/
setupPageObjects() {
this._titleHeader = new TitleHeaderPageObject(this._page.container);
this._displayInformationList = new DisplayInformationPageObject(this._page.container);
}
/**
* Return the page object of the title header
* @returns {{select: select}}
*/
get title() {
return this._titleHeader;
}
/**
* Returns the page object of display comments
*/
get displayInformationList() {
return this._displayInformationList;
}
}
/**
* Page object for the TitleHeader element
*/
class TitleHeaderPageObject {
/**
* Default constructor
* @param container The container which includes the AddInformation Component
*/
constructor(container) {
this._container = container;
}
/**
* Returns the clickable area of the header
*/
get hyperlink() {
return this._container.querySelector(".accordion-header h4 a");
}
/** Click on the title */
async click() {
const leftClick = {button: 0};
fireEvent.click(this.hyperlink, leftClick);
await waitFor(() => {});
}
}
class DisplayInformationPageObject {
/**
* Default constructor
* @param container The container which includes the AddComment Component
*/
constructor(container) {
this._container = container;
}
/**
* Returns the list elements of information
*/
get list() {
return this._container.querySelector('ul');
}
/**
* Returns the username label elements of information
*/
get usernameLabel() {
return this._container.querySelector('.username .label').textContent;
}
/**
* Returns the username elements of information
*/
get username() {
return this._container.querySelector('.username .value');
}
/**
* Returns the modified elements of information
*/
modified(index) {
return this._container.querySelectorAll('.modified .value')[index - 1];
}
/**
* Returns the modified label elements of information
*/
modifiedLabel(index) {
return this._container.querySelectorAll('.modified .label')[index - 1].textContent;
}
/**
* Returns the modified by elements of information
*/
modifiedBy(index) {
return this._container.querySelectorAll('.modified-by .value')[index - 1];
}
/**
* Returns the modified by label elements of information
*/
modifiedByLabel(index) {
return this._container.querySelectorAll('.modified-by .label')[index - 1].textContent;
}
/**
* Returns the location elements of information
*/
get location() {
return this._container.querySelector('.location .value a');
}
/**
* Returns the location label elements of information
*/
get locationLabel() {
return this._container.querySelector('.location .label').textContent;
}
/**
* Returns true if the page object exists in the container
*/
exists() {
return this.list !== null;
}
/** Click on the component */
async click(component) {
const leftClick = {button: 0};
fireEvent.click(component, leftClick);
await waitFor(() => {});
}
}