Fix environment check basic auth tests

Was assuming that Member::currentMember() is set,
which isn't the case unless you log in beforehand and start a PHP session.

Given we want the checks to run on their own without user interaction,
they need to work in isolation through a single HTTP call containing
the basic auth info.
This commit is contained in:
Ingo Schommer 2015-06-11 11:24:05 +12:00
parent 98126dc448
commit 631b7ba502
1 changed files with 7 additions and 1 deletions

View File

@ -60,7 +60,13 @@ class EnvironmentChecker extends RequestHandler {
}
function canAccess($member = null, $permission = "ADMIN") {
if(!$member) $member = Member::currentUser();
if(!$member) {
$member = Member::currentUser();
}
if(!$member) {
$member = BasicAuth::requireLogin('Environment Checker', $permission, false);
}
// We allow access to this controller regardless of live-status or ADMIN permission only
// if on CLI. Access to this controller is always allowed in "dev-mode", or of the user is ADMIN.