This repository has been archived by the owner on Dec 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb511e0
commit 1b81c7d
Showing
4 changed files
with
141 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?php | ||
/** | ||
* ownCloud | ||
* | ||
* @author Paurakh Sharma Humagain <paurakh@jankaritech.com> | ||
* @copyright Copyright (c) 2018 Paurakh Sharma Humagain paurakh@jankaritech.com | ||
* | ||
* This code 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 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/> | ||
* | ||
*/ | ||
|
||
namespace Page; | ||
|
||
use Behat\Mink\Session; | ||
|
||
/** | ||
* Disabled page. | ||
*/ | ||
class DisabledUserPage extends OwncloudPage { | ||
|
||
/** | ||
* @var string $path | ||
*/ | ||
protected $path = '/index.php/login'; | ||
protected $userDisabledXpath = ".//li[@class='error']"; | ||
|
||
/** | ||
* | ||
* @param Session $session | ||
* @param int $timeout_msec | ||
* | ||
* @return void | ||
* @throws \Exception | ||
*/ | ||
public function waitTillPageIsLoaded( | ||
Session $session, | ||
$timeout_msec = STANDARDUIWAITTIMEOUTMILLISEC | ||
) { | ||
$currentTime = \microtime(true); | ||
$end = $currentTime + ($timeout_msec / 1000); | ||
while ($currentTime <= $end) { | ||
if ($this->findAll("xpath", $this->userDisabledXpath)) { | ||
break; | ||
} | ||
\usleep(STANDARDSLEEPTIMEMICROSEC); | ||
$currentTime = \microtime(true); | ||
} | ||
|
||
if ($currentTime > $end) { | ||
throw new \Exception( | ||
__METHOD__ . " timeout waiting for page to load" | ||
); | ||
} | ||
|
||
$this->waitForOutstandingAjaxCalls($session); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
tests/acceptance/features/webUIManageUsersGroups/disableUsers.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@webUI @insulated @disablePreviews | ||
Feature: disable users | ||
As an admin | ||
I want to disable users | ||
So that I can remove access to unnecessary users | ||
|
||
Background: | ||
Given these users have been created but not initialized: | ||
|username|password|displayname|email | | ||
|user1 |1234 |User One |u1@oc.com.np| | ||
|user2 |1234 |User Two |u2@oc.com.np| | ||
And user admin has logged in using the webUI | ||
And the administrator has browsed to the users page | ||
|
||
Scenario: disable a user | ||
When the admin disables the user "user1" using the webUI | ||
And the disabled user "user1" tries to login using the password "1234" from the webUI | ||
Then the user should be redirected to a webUI page with the title "ownCloud" | ||
When the user has browsed to the login page | ||
And the user logs in with username "user2" and password "1234" using the webUI | ||
Then the user should be redirected to a webUI page with the title "Files - ownCloud" |