mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Add e2e test in ADF main repo (#3534)
* move e2e to ADF main repo * lint e2e test * enable first set of tests * enable test * firs test js-api integrated * try change name protractor demo shell file * remove fdescribe * Update .travis.yml * exclude failing test and rewrite analytics component with JS-API * remove fdescribe * move first part of tests to js-api * refactor test alfresco-js-api * replace js-api step 3 * remove adf prefix * remove unused code * remove unused part 2 * add option in e2e test for single test and browser * exclude temp failing test * refactoring test step 1 * refactoring test step 2 * refactoring test step 3 * refactoring test step 4 * refactoring test step 5 * run against localhost and proxy options * fix command * improve configuration * improve configuration * use dev configuratio * fix defering * comment out not working remotely test * fix promise login page e2e * remove console log * change test * revert * improve utils * improve task list test util add also numbers in generation of the email * remove part of the multi selector * reinsert trashcan test * uncomment document list test * try increase delay in search sorting * improve document list selector * execute different util methods * Upload error screenshot * make oncomplete async * add z-finish screenshot workaround * option save * remove fit
This commit is contained in:
committed by
Eugenio Romano
parent
4ecea64e19
commit
3d86044594
57
e2e/pages/adf/process_services/widgets/AttachFile.js
Normal file
57
e2e/pages/adf/process_services/widgets/AttachFile.js
Normal file
@@ -0,0 +1,57 @@
|
||||
/*!
|
||||
* @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.
|
||||
*/
|
||||
|
||||
var FormFields = require('../formFields');
|
||||
var TestConfig = require('../../../../test.config');
|
||||
var path = require('path');
|
||||
var Util = require('../../../../util/util');
|
||||
|
||||
var AttachFile = function () {
|
||||
|
||||
var formFields = new FormFields();
|
||||
var uploadLocator = by.css("button[id='attachfile']");
|
||||
var localStorageButton = element(by.css("input[id='attachfile']"));
|
||||
var filesListLocator = by.css("div[id='adf-attach-widget-readonly-list']");
|
||||
|
||||
this.attachFile = function (fieldId, fileLocation) {
|
||||
var widget = formFields.getWidget(fieldId);
|
||||
var uploadButton = widget.element(uploadLocator);
|
||||
Util.waitUntilElementIsVisible(uploadButton);
|
||||
uploadButton.click();
|
||||
|
||||
Util.waitUntilElementIsVisible(localStorageButton);
|
||||
localStorageButton.sendKeys(path.resolve(path.join(TestConfig.main.rootPath, fileLocation)));
|
||||
return this;
|
||||
};
|
||||
|
||||
this.checkFileIsAttached = function (fieldId, name) {
|
||||
var widget = formFields.getWidget(fieldId);
|
||||
var fileAttached = widget.element(filesListLocator).element(by.cssContainingText("mat-list-item span ", name));
|
||||
Util.waitUntilElementIsVisible(fileAttached);
|
||||
return this;
|
||||
};
|
||||
|
||||
this.viewFile = function (name) {
|
||||
var fileView = element(filesListLocator).element(by.cssContainingText("mat-list-item span ", name));
|
||||
Util.waitUntilElementIsVisible(fileView);
|
||||
fileView.click();
|
||||
browser.actions().doubleClick(fileView).perform();
|
||||
return this;
|
||||
};
|
||||
};
|
||||
|
||||
module.exports = AttachFile;
|
33
e2e/pages/adf/process_services/widgets/DisplayText.js
Normal file
33
e2e/pages/adf/process_services/widgets/DisplayText.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
* @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.
|
||||
*/
|
||||
|
||||
var FormFields = require('../formFields');
|
||||
|
||||
var DisplayText = function () {
|
||||
|
||||
var formFields = new FormFields();
|
||||
|
||||
var labelLocator = by.css("div[class*='display-text-widget']");
|
||||
|
||||
this.getFieldLabel = function (fieldId) {
|
||||
return formFields.getFieldLabel(fieldId, labelLocator);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
module.exports = DisplayText;
|
||||
|
34
e2e/pages/adf/process_services/widgets/DisplayValue.js
Normal file
34
e2e/pages/adf/process_services/widgets/DisplayValue.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
* @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.
|
||||
*/
|
||||
|
||||
var FormFields = require('../formFields');
|
||||
|
||||
var DisplayValue = function () {
|
||||
|
||||
var formFields = new FormFields();
|
||||
|
||||
var labelLocator = by.css("span[class*='unknown-text']");
|
||||
|
||||
this.getFieldLabel = function (fieldId) {
|
||||
return formFields.getFieldLabel(fieldId, labelLocator);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
module.exports = DisplayValue;
|
||||
|
||||
|
32
e2e/pages/adf/process_services/widgets/Dropdown.js
Normal file
32
e2e/pages/adf/process_services/widgets/Dropdown.js
Normal file
@@ -0,0 +1,32 @@
|
||||
/*!
|
||||
* @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.
|
||||
*/
|
||||
|
||||
var FormFields = require('../formFields');
|
||||
|
||||
var Dropdown = function () {
|
||||
|
||||
var formFields = new FormFields();
|
||||
|
||||
var selectedOptionLocator = by.css("mat-select[id='dropdown'] span span");
|
||||
|
||||
this.getSelectedOptionText = function (fieldId) {
|
||||
return formFields.getFieldText(fieldId, selectedOptionLocator);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
module.exports = Dropdown;
|
37
e2e/pages/adf/process_services/widgets/DynamicTable.js
Normal file
37
e2e/pages/adf/process_services/widgets/DynamicTable.js
Normal file
@@ -0,0 +1,37 @@
|
||||
/*!
|
||||
* @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.
|
||||
*/
|
||||
|
||||
var FormFields = require('../formFields');
|
||||
|
||||
var DynamicTable = function () {
|
||||
|
||||
var formFields = new FormFields();
|
||||
|
||||
var labelLocator = by.css("dynamic-table-widget div div");
|
||||
var columnNameLocator = by.css("table[id*='dynamic-table'] th");
|
||||
|
||||
this.getFieldLabel = function (fieldId) {
|
||||
return formFields.getFieldLabel(fieldId, labelLocator);
|
||||
};
|
||||
|
||||
this.getColumnName = function (fieldId) {
|
||||
return formFields.getFieldText(fieldId, columnNameLocator);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
module.exports = DynamicTable;
|
32
e2e/pages/adf/process_services/widgets/Header.js
Normal file
32
e2e/pages/adf/process_services/widgets/Header.js
Normal file
@@ -0,0 +1,32 @@
|
||||
/*!
|
||||
* @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.
|
||||
*/
|
||||
|
||||
var FormFields = require('../formFields');
|
||||
|
||||
var Header = function () {
|
||||
|
||||
var formFields = new FormFields();
|
||||
|
||||
var labelLocator = by.css("span[id='container-header-label']");
|
||||
|
||||
this.getFieldLabel = function (fieldId) {
|
||||
return formFields.getFieldLabel(fieldId, labelLocator);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
module.exports = Header;
|
32
e2e/pages/adf/process_services/widgets/Hyperlink.js
Normal file
32
e2e/pages/adf/process_services/widgets/Hyperlink.js
Normal file
@@ -0,0 +1,32 @@
|
||||
/*!
|
||||
* @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.
|
||||
*/
|
||||
|
||||
var FormFields = require('../formFields');
|
||||
|
||||
var Hyperlink = function () {
|
||||
|
||||
var formFields = new FormFields();
|
||||
|
||||
var fieldLocator = by.css("div[class='adf-hyperlink-widget '] a");
|
||||
|
||||
this.getFieldText = function (fieldId) {
|
||||
return formFields.getFieldText(fieldId, fieldLocator);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
module.exports = Hyperlink;
|
33
e2e/pages/adf/process_services/widgets/MultilineText.js
Normal file
33
e2e/pages/adf/process_services/widgets/MultilineText.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
* @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.
|
||||
*/
|
||||
|
||||
var FormFields = require('../formFields');
|
||||
|
||||
var MultilineText = function () {
|
||||
|
||||
var formFields = new FormFields();
|
||||
|
||||
var valueLocator = by.css("textarea");
|
||||
|
||||
this.getFieldValue = function (fieldId) {
|
||||
return formFields.getFieldValue(fieldId, valueLocator);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
module.exports = MultilineText;
|
||||
|
34
e2e/pages/adf/process_services/widgets/RadioButtons.js
Normal file
34
e2e/pages/adf/process_services/widgets/RadioButtons.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
* @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.
|
||||
*/
|
||||
|
||||
var FormFields = require('../formFields');
|
||||
var Util = require('../../../../util/util');
|
||||
|
||||
var RadioButtons = function () {
|
||||
|
||||
var formFields = new FormFields();
|
||||
|
||||
this.getSpecificOptionLabel = function (fieldId, optionNumber) {
|
||||
var optionLocator = by.css("label[for*='radiobuttons-option_" + optionNumber + "'] div[class*='content']");
|
||||
var option = formFields.getWidget(fieldId).element(optionLocator);
|
||||
Util.waitUntilElementIsVisible(option);
|
||||
return option.getText();
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
module.exports = RadioButtons;
|
69
e2e/pages/adf/process_services/widgets/usingWidget.js
Normal file
69
e2e/pages/adf/process_services/widgets/usingWidget.js
Normal file
@@ -0,0 +1,69 @@
|
||||
/*!
|
||||
* @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.
|
||||
*/
|
||||
|
||||
var MultilineText = require('./MultilineText');
|
||||
var Header = require('./Header');
|
||||
var DisplayText = require('./DisplayText');
|
||||
var AttachFile = require('./AttachFile');
|
||||
var DisplayValue = require('./DisplayValue');
|
||||
var RadioButtons = require('./RadioButtons');
|
||||
var Hyperlink = require('./Hyperlink');
|
||||
var Dropdown = require('./Dropdown');
|
||||
var DynamicTable = require('./DynamicTable');
|
||||
|
||||
var UsingWidget = function () {
|
||||
|
||||
this.usingMultilineTextWidget = function () {
|
||||
return new MultilineText();
|
||||
};
|
||||
|
||||
this.usingHeaderWidget = function () {
|
||||
return new Header();
|
||||
};
|
||||
|
||||
this.usingDisplayTextWidget = function () {
|
||||
return new DisplayText();
|
||||
};
|
||||
|
||||
this.usingAttachFileWidget = function () {
|
||||
return new AttachFile();
|
||||
};
|
||||
|
||||
this.usingDisplayValueWidget = function () {
|
||||
return new DisplayValue();
|
||||
};
|
||||
|
||||
this.usingRadioWidget = function () {
|
||||
return new RadioButtons();
|
||||
};
|
||||
|
||||
this.usingHyperlink = function () {
|
||||
return new Hyperlink();
|
||||
};
|
||||
|
||||
this.usingDropdown = function () {
|
||||
return new Dropdown();
|
||||
};
|
||||
|
||||
this.usingDynamicTable = function () {
|
||||
return new DynamicTable();
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
module.exports = UsingWidget;
|
||||
|
Reference in New Issue
Block a user