mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* upgrade to HttpClient * upgrade to Renderer2 * upgrade Document reference * remove useless test with deprecated ReflectiveInjector * upgrade to latest typescript * upgrade libs * upgrade package scripts * remove rxjs blacklists and duplicate rules * add rxjs compat to help with migration * fix breaking changes * fix breaking changes in material * fix breaking changes (material 6) * upgrade rxjs, ngx-translate and flex layout * update unit tests * restore providers * upgrade deprecated Observable.error * rebase fix first configuration problems * fix style issues commented * fix core build * fix lib template errors * move lib test execution in angular.json * ignore * karma conf files * fix import statement test * single run option * update packages reporter * restore report * increase timeout * improve karma conf test configuration * fix test issues about lint * fix test analytics * fix process service test * content service fix test * fix logout directive test * fix core test * fix build * update node-sass to latest * update angular cli dependencies * improve build script create directorites and move files only if previous command succeded * upgrade individual libs to 6.0 * remove old webpack files * revert sass change * fix type issues fix style issues * fix tslint demo shell issue * fix peerdependencies * fix test e2e BC * package upate * fix style import issue * extract-text-webpack-plugin beta * fix test dist build command * remove alpha js-api * fix tslint issue add banner tslint rule * upload service fix * change BC script * fix test dist script * increase demo shell timeout test * verbose copy * path absolute * fix script bc * fix copy part * fix path warning fix monaco editor * remove duplicate header * remove unused import * fix align and check ago tests * add missing import * fix notification button selector * [ANGULAR6] fixed core tests * fix CS test * fix cs test step 2 * increase travis_wait for dist * fix attachment PS * fix checklist test * use pdf min
300 lines
12 KiB
TypeScript
300 lines
12 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { browser } from 'protractor';
|
|
|
|
import LoginPage = require('../pages/adf/loginPage');
|
|
import SearchDialog = require('../pages/adf/dialog/searchDialog');
|
|
import ContentServicesPage = require('../pages/adf/contentServicesPage');
|
|
import SearchResultPage = require('../pages/adf/searchResultsPage');
|
|
import filePreviewPage = require('../pages/adf/filePreviewPage');
|
|
|
|
import AcsUserModel = require('../models/ACS/acsUserModel');
|
|
import FolderModel = require('../models/ACS/folderModel');
|
|
import FileModel = require('../models/ACS/fileModel');
|
|
|
|
import TestConfig = require('../test.config');
|
|
import Util = require('../util/util');
|
|
import resources = require('../util/resources');
|
|
|
|
import AlfrescoApi = require('alfresco-js-api-node');
|
|
import { UploadActions } from '../actions/ACS/upload.actions';
|
|
|
|
describe('Search component - Search Page', () => {
|
|
let search = {
|
|
active: {
|
|
firstFile: null,
|
|
secondFile: null,
|
|
base: Util.generateRandomString(3),
|
|
extension: '.txt'
|
|
},
|
|
no_permission: {
|
|
noPermFile: 'Meetings',
|
|
noPermFolder: 'Meeting Notes'
|
|
}
|
|
};
|
|
|
|
let loginPage = new LoginPage();
|
|
let contentServicesPage = new ContentServicesPage();
|
|
let searchDialog = new SearchDialog();
|
|
let searchResultPage = new SearchResultPage();
|
|
|
|
let acsUser = new AcsUserModel();
|
|
let emptyFolderModel = new FolderModel({ 'name': Util.generateRandomString() });
|
|
let firstFileModel;
|
|
let newFolderModel = new FolderModel({ 'name': 'newFolder' });
|
|
let fileNames = [], adminFileNames = [], nrOfFiles = 15, adminNrOfFiles = 5;
|
|
|
|
beforeAll(async (done) => {
|
|
fileNames = Util.generateSeqeunceFiles(1, nrOfFiles, search.active.base, search.active.extension);
|
|
adminFileNames = Util.generateSeqeunceFiles(nrOfFiles + 1, nrOfFiles + adminNrOfFiles, search.active.base, search.active.extension);
|
|
search.active.firstFile = fileNames[0];
|
|
search.active.secondFile = fileNames[1];
|
|
fileNames.splice(0, 1);
|
|
|
|
firstFileModel = new FileModel({
|
|
'name': search.active.firstFile,
|
|
'location': resources.Files.ADF_DOCUMENTS.TXT.file_location
|
|
});
|
|
|
|
let uploadActions = new UploadActions();
|
|
|
|
this.alfrescoJsApi = new AlfrescoApi({
|
|
provider: 'ECM',
|
|
hostEcm: TestConfig.adf.url
|
|
});
|
|
|
|
await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword);
|
|
|
|
await this.alfrescoJsApi.core.peopleApi.addPerson(acsUser);
|
|
|
|
await this.alfrescoJsApi.login(acsUser.id, acsUser.password);
|
|
|
|
await uploadActions.uploadFolder(this.alfrescoJsApi, emptyFolderModel.name, '-my-');
|
|
let newFolderModelUploaded = await uploadActions.uploadFolder(this.alfrescoJsApi, newFolderModel.name, '-my-');
|
|
|
|
await uploadActions.createEmptyFiles(this.alfrescoJsApi, fileNames, newFolderModelUploaded.entry.id);
|
|
|
|
await uploadActions.uploadFile(this.alfrescoJsApi, firstFileModel.location, firstFileModel.name, '-my-');
|
|
|
|
await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword);
|
|
|
|
await uploadActions.createEmptyFiles(this.alfrescoJsApi, adminFileNames, newFolderModelUploaded.entry.id);
|
|
|
|
loginPage.loginToContentServicesUsingUserModel(acsUser);
|
|
|
|
contentServicesPage.goToDocumentList();
|
|
|
|
done();
|
|
});
|
|
|
|
it('[C260264] \'No results found searching for\' message is displayed on Search Page', () => {
|
|
let notExistentFileName = Util.generateRandomString();
|
|
contentServicesPage.goToDocumentList();
|
|
searchDialog.checkSearchBarIsNotVisible().checkSearchIconIsVisible().clickOnSearchIcon()
|
|
.enterTextAndPressEnter(notExistentFileName);
|
|
searchResultPage.checkNoResultMessageIsDisplayed();
|
|
});
|
|
|
|
it('[C260265] File previewer is displayed', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
|
|
searchDialog
|
|
.checkSearchBarIsNotVisible()
|
|
.checkSearchIconIsVisible()
|
|
.clickOnSearchIcon()
|
|
.enterTextAndPressEnter(firstFileModel.name);
|
|
|
|
searchResultPage.checkContentIsDisplayed(firstFileModel.name);
|
|
searchResultPage.navigateToFolder(firstFileModel.name);
|
|
|
|
browser.driver.sleep(200);
|
|
|
|
filePreviewPage.closePreviewWithButton();
|
|
});
|
|
|
|
it('[C272810] Only the searched file is displayed', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
|
|
searchDialog
|
|
.checkSearchBarIsNotVisible()
|
|
.checkSearchIconIsVisible()
|
|
.clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.active.firstFile);
|
|
|
|
searchResultPage.checkContentIsDisplayed(search.active.firstFile);
|
|
expect(searchResultPage.numberOfResultsDisplayed()).toBe(1);
|
|
});
|
|
|
|
it('[C260267] Folder content is displayed', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
|
|
searchDialog.checkSearchBarIsNotVisible()
|
|
.checkSearchIconIsVisible()
|
|
.clickOnSearchIcon()
|
|
.enterTextAndPressEnter(emptyFolderModel.name);
|
|
|
|
searchResultPage.checkNoResultMessageIsNotDisplayed();
|
|
searchResultPage.checkContentIsDisplayed(emptyFolderModel.name);
|
|
searchResultPage.navigateToFolder(emptyFolderModel.name);
|
|
contentServicesPage.currentFolderName().then((result) => {
|
|
expect(result).toEqual(emptyFolderModel.name);
|
|
});
|
|
});
|
|
|
|
it('[C260261] Delete a file from the Search Results Page', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
|
|
searchDialog
|
|
.checkSearchBarIsNotVisible()
|
|
.checkSearchIconIsVisible()
|
|
.clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.active.firstFile);
|
|
|
|
searchResultPage.checkContentIsDisplayed(search.active.firstFile);
|
|
|
|
searchResultPage.deleteContent(search.active.firstFile);
|
|
|
|
searchResultPage.checkNoResultMessageIsDisplayed();
|
|
searchResultPage.checkContentIsNotDisplayed(search.active.firstFile);
|
|
|
|
contentServicesPage.goToDocumentList();
|
|
searchDialog.checkSearchBarIsNotVisible().checkSearchIconIsVisible().clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.active.firstFile);
|
|
searchResultPage.checkNoResultMessageIsDisplayed();
|
|
});
|
|
|
|
it('[C272809] Delete a folder from the Search Results Page', () => {
|
|
searchDialog.checkSearchBarIsNotVisible()
|
|
.checkSearchIconIsVisible()
|
|
.clickOnSearchIcon()
|
|
.enterTextAndPressEnter(emptyFolderModel.name);
|
|
|
|
searchResultPage.checkContentIsDisplayed(emptyFolderModel.name);
|
|
searchResultPage.checkNoResultMessageIsNotDisplayed();
|
|
searchResultPage.checkContentIsDisplayed(emptyFolderModel.name);
|
|
searchResultPage.deleteContent(emptyFolderModel.name);
|
|
searchResultPage.checkNoResultMessageIsDisplayed();
|
|
|
|
searchDialog.checkSearchBarIsNotVisible().checkSearchIconIsVisible().clickOnSearchIcon()
|
|
.enterTextAndPressEnter(emptyFolderModel.name);
|
|
searchResultPage.checkNoResultMessageIsDisplayed();
|
|
});
|
|
|
|
xit('[C272803] Sort content ascending by name.', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
|
|
searchDialog
|
|
.checkSearchBarIsNotVisible()
|
|
.checkSearchIconIsVisible()
|
|
.clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.active.base);
|
|
searchResultPage.checkContentIsDisplayed(search.active.secondFile);
|
|
searchResultPage.sortAndCheckListIsOrderedByName(true).then((result) => {
|
|
expect(result).toEqual(true);
|
|
});
|
|
});
|
|
|
|
xit('[C272804] Sort content descending by name.', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
|
|
searchDialog.checkSearchBarIsNotVisible()
|
|
.checkSearchIconIsVisible()
|
|
.clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.active.base);
|
|
|
|
searchResultPage.checkContentIsDisplayed(search.active.secondFile);
|
|
searchResultPage.sortAndCheckListIsOrderedByName(false).then((result) => {
|
|
expect(result).toEqual(true);
|
|
});
|
|
});
|
|
|
|
xit('[C272805] Sort content ascending by author.', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
searchDialog.checkSearchBarIsNotVisible().checkSearchIconIsVisible().clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.active.base);
|
|
searchResultPage.checkContentIsDisplayed(search.active.secondFile);
|
|
searchResultPage.sortAndCheckListIsOrderedByAuthor(true).then((result) => {
|
|
expect(result).toEqual(true);
|
|
});
|
|
});
|
|
|
|
xit('[C272806] Sort content descending by author.', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
searchDialog.checkSearchBarIsNotVisible().checkSearchIconIsVisible().clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.active.base);
|
|
searchResultPage.checkContentIsDisplayed(search.active.secondFile);
|
|
searchResultPage.sortAndCheckListIsOrderedByAuthor(false).then((result) => {
|
|
expect(result).toEqual(true);
|
|
});
|
|
});
|
|
|
|
xit('[C272807] Sort content ascending by created date.', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
searchDialog.checkSearchBarIsNotVisible().checkSearchIconIsVisible().clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.active.base);
|
|
searchResultPage.checkContentIsDisplayed(search.active.secondFile);
|
|
searchResultPage.sortAndCheckListIsOrderedByCreated(true).then((result) => {
|
|
expect(result).toEqual(true);
|
|
});
|
|
});
|
|
|
|
xit('[C260260] Sort content descending by created date.', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
searchDialog.checkSearchBarIsNotVisible().checkSearchIconIsVisible().clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.active.base);
|
|
searchResultPage.checkContentIsDisplayed(search.active.secondFile);
|
|
searchResultPage.sortAndCheckListIsOrderedByCreated(false).then((result) => {
|
|
expect(result).toEqual(true);
|
|
});
|
|
});
|
|
|
|
xit('[C260262] Try to delete a file without rights from the Search Results Page', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
searchDialog.checkSearchBarIsNotVisible().checkSearchIconIsVisible().clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.no_permission.noPermFile);
|
|
searchResultPage.checkContentIsDisplayed(search.no_permission.noPermFile);
|
|
searchResultPage.deleteContent(search.no_permission.noPermFile);
|
|
searchResultPage.checkContentIsDisplayed(search.no_permission.noPermFile);
|
|
searchDialog.checkSearchBarIsNotVisible().checkSearchIconIsVisible().clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.no_permission.noPermFile);
|
|
searchResultPage.checkNoResultMessageIsNotDisplayed();
|
|
searchResultPage.checkContentIsDisplayed(search.no_permission.noPermFile);
|
|
});
|
|
|
|
it('[C272808] Try to delete a folder without rights from the Search Results Page', () => {
|
|
contentServicesPage.goToDocumentList();
|
|
searchDialog.checkSearchBarIsNotVisible();
|
|
searchDialog.checkSearchIconIsVisible();
|
|
searchDialog.clickOnSearchIcon();
|
|
searchDialog.enterTextAndPressEnter(search.no_permission.noPermFolder);
|
|
|
|
searchResultPage.checkContentIsDisplayed(search.no_permission.noPermFolder);
|
|
searchResultPage.deleteContent(search.no_permission.noPermFolder);
|
|
searchResultPage.checkContentIsDisplayed(search.no_permission.noPermFolder);
|
|
searchResultPage.closeActionButton();
|
|
|
|
searchDialog.checkSearchBarIsNotVisible()
|
|
.checkSearchIconIsVisible()
|
|
.clickOnSearchIcon()
|
|
.enterTextAndPressEnter(search.no_permission.noPermFolder);
|
|
|
|
searchResultPage.checkNoResultMessageIsNotDisplayed();
|
|
searchResultPage.checkContentIsDisplayed(search.no_permission.noPermFolder);
|
|
});
|
|
});
|