. * */ 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-form")-> describedAs("Login button in Login page"); } /** * @return Locator */ public static function wrongPasswordMessage() { return Locator::forThe()->xpath("//*[@class = 'warning wrongPasswordMsg' and normalize-space() = 'Wrong username or password.']")-> describedAs("Wrong password message in Login page"); } /** * @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'); } /** * @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()); } /** * @Then I see that the disabled user message is shown */ public function iSeeThatTheDisabledUserMessageIsShown() { PHPUnit_Framework_Assert::assertTrue( $this->actor->find(self::userDisabledMessage(), 10)->isVisible()); } /** * @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(); $this->iLogInWithUserAndPassword("user0", "123456acb"); $this->filesAppContext->iSeeThatTheCurrentPageIsTheFilesApp(); } /** * @Given I am logged in as :userName */ public function iAmLoggedInAs($userName) { $this->featureContext->iVisitTheHomePage(); $this->iLogInWithUserAndPassword($userName, "123456acb"); $this->filesAppContext->iSeeThatTheCurrentPageIsTheFilesApp(); } /** * @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(); } }