2017-04-04 18:20:19 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2017, 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;
|
|
|
|
use Behat\Behat\Hook\Scope\BeforeScenarioScope;
|
|
|
|
|
|
|
|
class LoginPageContext implements Context, ActorAwareInterface {
|
|
|
|
|
|
|
|
use ActorAware;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var FeatureContext
|
|
|
|
*/
|
|
|
|
private $featureContext;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var FilesAppContext
|
|
|
|
*/
|
|
|
|
private $filesAppContext;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Locator
|
|
|
|
*/
|
|
|
|
public static function userNameField() {
|
|
|
|
return Locator::forThe()->field("user")->
|
|
|
|
describedAs("User name field in Login page");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Locator
|
|
|
|
*/
|
|
|
|
public static function passwordField() {
|
|
|
|
return Locator::forThe()->field("password")->
|
|
|
|
describedAs("Password field in Login page");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Locator
|
|
|
|
*/
|
|
|
|
public static function loginButton() {
|
|
|
|
return Locator::forThe()->id("submit")->
|
|
|
|
describedAs("Login button in Login page");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Locator
|
|
|
|
*/
|
|
|
|
public static function wrongPasswordMessage() {
|
2019-03-11 13:54:38 +03:00
|
|
|
return Locator::forThe()->xpath("//*[@class = 'warning wrongPasswordMsg' and normalize-space() = 'Wrong username or password.']")->
|
2017-04-04 18:20:19 +03:00
|
|
|
describedAs("Wrong password message in Login page");
|
|
|
|
}
|
|
|
|
|
2018-07-21 14:05:34 +03:00
|
|
|
/**
|
|
|
|
* @return Locator
|
|
|
|
*/
|
|
|
|
public static function userDisabledMessage() {
|
|
|
|
return Locator::forThe()->xpath("//*[@class = 'warning userDisabledMsg' and normalize-space() = 'User disabled']")->
|
|
|
|
describedAs('User disabled message on login page');
|
|
|
|
}
|
|
|
|
|
2017-04-04 18:20:19 +03:00
|
|
|
/**
|
|
|
|
* @When I log in with user :user and password :password
|
|
|
|
*/
|
|
|
|
public function iLogInWithUserAndPassword($user, $password) {
|
|
|
|
$this->actor->find(self::userNameField(), 10)->setValue($user);
|
|
|
|
$this->actor->find(self::passwordField())->setValue($password);
|
|
|
|
$this->actor->find(self::loginButton())->click();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then I see that the current page is the Login page
|
|
|
|
*/
|
|
|
|
public function iSeeThatTheCurrentPageIsTheLoginPage() {
|
|
|
|
PHPUnit_Framework_Assert::assertStringStartsWith(
|
|
|
|
$this->actor->locatePath("/login"),
|
|
|
|
$this->actor->getSession()->getCurrentUrl());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then I see that a wrong password message is shown
|
|
|
|
*/
|
|
|
|
public function iSeeThatAWrongPasswordMessageIsShown() {
|
|
|
|
PHPUnit_Framework_Assert::assertTrue(
|
|
|
|
$this->actor->find(self::wrongPasswordMessage(), 10)->isVisible());
|
|
|
|
}
|
|
|
|
|
2018-07-21 14:05:34 +03:00
|
|
|
/**
|
|
|
|
* @Then I see that the disabled user message is shown
|
|
|
|
*/
|
|
|
|
public function iSeeThatTheDisabledUserMessageIsShown() {
|
|
|
|
PHPUnit_Framework_Assert::assertTrue(
|
|
|
|
$this->actor->find(self::userDisabledMessage(), 10)->isVisible());
|
|
|
|
}
|
|
|
|
|
2017-04-04 18:20:19 +03:00
|
|
|
/**
|
|
|
|
* @BeforeScenario
|
|
|
|
*/
|
|
|
|
public function getOtherRequiredSiblingContexts(BeforeScenarioScope $scope) {
|
|
|
|
$environment = $scope->getEnvironment();
|
|
|
|
|
|
|
|
$this->featureContext = $environment->getContext("FeatureContext");
|
|
|
|
$this->filesAppContext = $environment->getContext("FilesAppContext");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Given I am logged in
|
|
|
|
*/
|
|
|
|
public function iAmLoggedIn() {
|
|
|
|
$this->featureContext->iVisitTheHomePage();
|
2017-04-21 15:47:44 +03:00
|
|
|
$this->iLogInWithUserAndPassword("user0", "123456acb");
|
2017-04-04 18:20:19 +03:00
|
|
|
$this->filesAppContext->iSeeThatTheCurrentPageIsTheFilesApp();
|
|
|
|
}
|
|
|
|
|
2018-11-23 14:29:30 +03:00
|
|
|
/**
|
|
|
|
* @Given I am logged in as :userName
|
|
|
|
*/
|
|
|
|
public function iAmLoggedInAs($userName) {
|
|
|
|
$this->featureContext->iVisitTheHomePage();
|
|
|
|
$this->iLogInWithUserAndPassword($userName, "123456acb");
|
|
|
|
$this->filesAppContext->iSeeThatTheCurrentPageIsTheFilesApp();
|
|
|
|
}
|
|
|
|
|
2017-04-04 18:20:19 +03:00
|
|
|
/**
|
|
|
|
* @Given I am logged in as the admin
|
|
|
|
*/
|
|
|
|
public function iAmLoggedInAsTheAdmin() {
|
|
|
|
$this->featureContext->iVisitTheHomePage();
|
|
|
|
$this->iLogInWithUserAndPassword("admin", "admin");
|
|
|
|
$this->filesAppContext->iSeeThatTheCurrentPageIsTheFilesApp();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Given I can not log in with user :user and password :password
|
|
|
|
*/
|
|
|
|
public function iCanNotLogInWithUserAndPassword($user, $password) {
|
|
|
|
$this->featureContext->iVisitTheHomePage();
|
|
|
|
$this->iLogInWithUserAndPassword($user, $password);
|
|
|
|
$this->iSeeThatTheCurrentPageIsTheLoginPage();
|
|
|
|
$this->iSeeThatAWrongPasswordMessageIsShown();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|