mirror of
https://github.com/nextcloud/server.git
synced 2026-05-19 16:39:59 -04:00
The file list is used in other places besides the Files app (for example, the File sharing app); in those cases the locators for the file list elements are the same, but not for the ancestor of the file list. To make possible to reuse the file list locators in those cases too now they receive the ancestor to use. Note that the locators for the file actions menu were not using an ancestor locator because it is expected that there is only one file actions menu at a time in the whole page; that may change in the future, but for the time being it is a valid assumption and thus the ancestor was not added to those locators in this commit. Although the locators were generalized the steps themselves still use the "FilesAppContext::currentSectionMainView" locator as ancestor; the steps will be generalized in a following commit. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
193 lines
5.7 KiB
PHP
193 lines
5.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
* @copyright Copyright (c) 2018, Daniel Calviño Sánchez (danxuliu@gmail.com)
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program 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 Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
use Behat\Behat\Context\Context;
|
|
|
|
class FileListContext implements Context, ActorAwareInterface {
|
|
|
|
use ActorAware;
|
|
|
|
/**
|
|
* @var Locator
|
|
*/
|
|
private $fileListAncestor;
|
|
|
|
/**
|
|
* @BeforeScenario
|
|
*/
|
|
public function initializeFileListAncestor() {
|
|
$this->fileListAncestor = FilesAppContext::currentSectionMainView();
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function rowForFile($fileListAncestor, $fileName) {
|
|
return Locator::forThe()->xpath("//*[@id = 'fileList']//span[contains(concat(' ', normalize-space(@class), ' '), ' nametext ') and normalize-space() = '$fileName']/ancestor::tr")->
|
|
descendantOf($fileListAncestor)->
|
|
describedAs("Row for file $fileName in file list");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function favoriteActionForFile($fileListAncestor, $fileName) {
|
|
return Locator::forThe()->css(".action-favorite")->
|
|
descendantOf(self::rowForFile($fileListAncestor, $fileName))->
|
|
describedAs("Favorite action for file $fileName in file list");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function favoritedStateIconForFile($fileListAncestor, $fileName) {
|
|
return Locator::forThe()->css(".icon-starred")->
|
|
descendantOf(self::favoriteActionForFile($fileListAncestor, $fileName))->
|
|
describedAs("Favorited state icon for file $fileName in file list");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function mainLinkForFile($fileListAncestor, $fileName) {
|
|
return Locator::forThe()->css(".name")->
|
|
descendantOf(self::rowForFile($fileListAncestor, $fileName))->
|
|
describedAs("Main link for file $fileName in file list");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function renameInputForFile($fileListAncestor, $fileName) {
|
|
return Locator::forThe()->css("input.filename")->
|
|
descendantOf(self::rowForFile($fileListAncestor, $fileName))->
|
|
describedAs("Rename input for file $fileName in file list");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function shareActionForFile($fileListAncestor, $fileName) {
|
|
return Locator::forThe()->css(".action-share")->
|
|
descendantOf(self::rowForFile($fileListAncestor, $fileName))->
|
|
describedAs("Share action for file $fileName in file list");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function fileActionsMenuButtonForFile($fileListAncestor, $fileName) {
|
|
return Locator::forThe()->css(".action-menu")->
|
|
descendantOf(self::rowForFile($fileListAncestor, $fileName))->
|
|
describedAs("File actions menu button for file $fileName in file list");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function fileActionsMenu() {
|
|
return Locator::forThe()->css(".fileActionsMenu")->
|
|
describedAs("File actions menu in file list");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
private static function fileActionsMenuItemFor($itemText) {
|
|
return Locator::forThe()->xpath("//a[normalize-space() = '$itemText']")->
|
|
descendantOf(self::fileActionsMenu())->
|
|
describedAs($itemText . " item in file actions menu in file list");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function detailsMenuItem() {
|
|
return self::fileActionsMenuItemFor("Details");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function renameMenuItem() {
|
|
return self::fileActionsMenuItemFor("Rename");
|
|
}
|
|
|
|
/**
|
|
* @return Locator
|
|
*/
|
|
public static function viewFileInFolderMenuItem() {
|
|
return self::fileActionsMenuItemFor("View in folder");
|
|
}
|
|
|
|
/**
|
|
* @Given I open the details view for :fileName
|
|
*/
|
|
public function iOpenTheDetailsViewFor($fileName) {
|
|
$this->actor->find(self::fileActionsMenuButtonForFile($this->fileListAncestor, $fileName), 10)->click();
|
|
|
|
$this->actor->find(self::detailsMenuItem(), 2)->click();
|
|
}
|
|
|
|
/**
|
|
* @Given I rename :fileName1 to :fileName2
|
|
*/
|
|
public function iRenameTo($fileName1, $fileName2) {
|
|
$this->actor->find(self::fileActionsMenuButtonForFile($this->fileListAncestor, $fileName1), 10)->click();
|
|
|
|
$this->actor->find(self::renameMenuItem(), 2)->click();
|
|
|
|
$this->actor->find(self::renameInputForFile($this->fileListAncestor, $fileName1), 10)->setValue($fileName2 . "\r");
|
|
}
|
|
|
|
/**
|
|
* @Given I mark :fileName as favorite
|
|
*/
|
|
public function iMarkAsFavorite($fileName) {
|
|
$this->actor->find(self::favoriteActionForFile($this->fileListAncestor, $fileName), 10)->click();
|
|
}
|
|
|
|
/**
|
|
* @When I view :fileName in folder
|
|
*/
|
|
public function iViewInFolder($fileName) {
|
|
$this->actor->find(self::fileActionsMenuButtonForFile($this->fileListAncestor, $fileName), 10)->click();
|
|
|
|
$this->actor->find(self::viewFileInFolderMenuItem(), 2)->click();
|
|
}
|
|
|
|
/**
|
|
* @Then I see that the file list contains a file named :fileName
|
|
*/
|
|
public function iSeeThatTheFileListContainsAFileNamed($fileName) {
|
|
PHPUnit_Framework_Assert::assertNotNull($this->actor->find(self::rowForFile($this->fileListAncestor, $fileName), 10));
|
|
}
|
|
|
|
/**
|
|
* @Then I see that :fileName is marked as favorite
|
|
*/
|
|
public function iSeeThatIsMarkedAsFavorite($fileName) {
|
|
PHPUnit_Framework_Assert::assertNotNull($this->actor->find(self::favoritedStateIconForFile($this->fileListAncestor, $fileName), 10));
|
|
}
|
|
|
|
}
|