alfresco-content-app/e2e/suites/search/search-results-general.test.ts
Denys Vuika ddc6f36ab4
Prettier upgrade and e2e type checks (#1522)
* upgrade prettier

* noImplicitAny rule

* fix type

* update tsconfig

* upgrade to 150 print width
2020-07-14 10:03:23 +01:00

148 lines
5.7 KiB
TypeScript

/*!
* @license
* Alfresco Example Content Application
*
* Copyright (C) 2005 - 2020 Alfresco Software Limited
*
* This file is part of the Alfresco Example Content Application.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
import { LoginPage, SearchResultsPage, RepoClient, Utils } from '@alfresco/aca-testing-shared';
import { browser } from 'protractor';
describe('Search results general', () => {
const username = `user-${Utils.random()}`;
const file = `test-file-${Utils.random()}.txt`;
let fileId: string;
const folder = `test-folder-${Utils.random()}`;
let folderId: string;
const site = `test-site-${Utils.random()}`;
const apis = {
admin: new RepoClient(),
user: new RepoClient(username, username)
};
const loginPage = new LoginPage();
const page = new SearchResultsPage();
const { searchInput } = page.header;
const dataTable = page.dataTable;
beforeAll(async (done) => {
await apis.admin.people.createUser({ username });
fileId = (await apis.user.nodes.createFile(file)).entry.id;
folderId = (await apis.user.nodes.createFolder(folder)).entry.id;
await apis.user.sites.createSite(site);
await apis.user.search.waitForApi(username, { expect: 1 });
await apis.user.queries.waitForSites(site, { expect: 1 });
await loginPage.loginWith(username);
done();
});
afterAll(async (done) => {
await Promise.all([apis.user.nodes.deleteNodeById(fileId), apis.user.nodes.deleteNodeById(folderId), apis.user.sites.deleteSite(site)]);
done();
});
beforeEach(async (done) => {
await page.refresh();
done();
});
it('[C290005] Only files are returned when Files option is the only one checked', async () => {
await searchInput.clickSearchButton();
await searchInput.checkOnlyFiles();
await searchInput.searchFor('test');
await dataTable.waitForBody();
expect(await dataTable.isItemPresent(file)).toBe(true, `${file} not displayed`);
expect(await dataTable.isItemPresent(folder)).toBe(false, `${folder} is displayed`);
expect(await dataTable.isItemPresent(site)).toBe(false, `${site} is displayed`);
});
it('[C290006] Only folders are returned when Folders option is the only one checked', async () => {
await searchInput.clickSearchButton();
await searchInput.checkOnlyFolders();
await searchInput.searchFor('test');
await page.waitForResults();
expect(await dataTable.isItemPresent(file)).toBe(false, `${file} is displayed`);
expect(await dataTable.isItemPresent(folder)).toBe(true, `${folder} not displayed`);
expect(await dataTable.isItemPresent(site)).toBe(false, `${site} is displayed`);
});
it('[C290007] Files and folders are returned when both Files and Folders options are checked', async () => {
await searchInput.clickSearchButton();
await searchInput.checkFilesAndFolders();
await searchInput.searchFor('test');
await page.waitForResults();
expect(await dataTable.isItemPresent(file)).toBe(true, `${file} not displayed`);
expect(await dataTable.isItemPresent(folder)).toBe(true, `${folder} not displayed`);
expect(await dataTable.isItemPresent(site)).toBe(false, `${site} is displayed`);
});
it('[C290008] Only libraries are returned when Libraries option is checked', async () => {
await searchInput.clickSearchButton();
await searchInput.checkLibraries();
await searchInput.searchFor('test');
await page.waitForResults();
expect(await dataTable.isItemPresent(file)).toBe(false, `${file} is displayed`);
expect(await dataTable.isItemPresent(folder)).toBe(false, `${folder} is displayed`);
expect(await dataTable.isItemPresent(site)).toBe(true, `${site} not displayed`);
});
it('[C279162] Results are updated automatically when changing the search term', async () => {
await searchInput.clickSearchButton();
await searchInput.searchFor(file);
await page.waitForResults();
expect(await dataTable.isItemPresent(file)).toBe(true, `${file} is not displayed`);
expect(await dataTable.isItemPresent(folder)).toBe(false, `${folder} is displayed`);
await searchInput.clickSearchButton();
await searchInput.searchFor(folder);
expect(await dataTable.isItemPresent(file)).toBe(false, `${file} is displayed`);
expect(await dataTable.isItemPresent(folder)).toBe(true, `${folder} is not displayed`);
});
it('[C279178] Results are returned when accessing an URL containing a search query', async () => {
await searchInput.clickSearchButton();
await searchInput.checkLibraries();
await searchInput.searchFor(site);
await page.waitForResults();
expect(await dataTable.isItemPresent(site)).toBe(true, `${site} not displayed`);
const url = await browser.getCurrentUrl();
await page.clickPersonalFiles();
await browser.get(url);
await page.waitForResults();
expect(await dataTable.isItemPresent(site)).toBe(true, `${site} not displayed`);
});
});