Files
Paolo 0bc0a09bf4 - Removed file system execute permission for all files (no directories)
- application/extensions file system permission now is 775
- application/logs file system permission now is 775
- Added extensions directory in application/: config, controllers, helpers, hooks, libraries, models, views and widgets
- Added view views/extensions/manage.php
- Added controller controllers/system/extensions/Manager.php
- Added library ExtensionsLib to manage extensions
- Added model models/system/Extensions_model.php
- Moved code related to print out info from MigrationLib to EPrintfLib
2017-11-13 10:45:49 +01:00

133 lines
3.0 KiB
PHP

<?php
namespace Sabre\HTTP;
require_once 'Sabre/HTTP/ResponseMock.php';
class BasicAuthTest extends \PHPUnit_Framework_TestCase {
/**
* @var Sabre\HTTP\ResponseMock
*/
private $response;
/**
* @var Sabre\HTTP\BasicAuth
*/
private $basicAuth;
function setUp() {
$this->response = new ResponseMock();
$this->basicAuth = new BasicAuth();
$this->basicAuth->setHTTPResponse($this->response);
}
function testGetUserPassApache() {
$server = array(
'PHP_AUTH_USER' => 'admin',
'PHP_AUTH_PW' => '1234',
);
$request = new Request($server);
$this->basicAuth->setHTTPRequest($request);
$userPass = $this->basicAuth->getUserPass();
$this->assertEquals(
array('admin','1234'),
$userPass,
'We did not get the username and password we expected'
);
}
function testGetUserPassIIS() {
$server = array(
'HTTP_AUTHORIZATION' => 'Basic ' . base64_encode('admin:1234'),
);
$request = new Request($server);
$this->basicAuth->setHTTPRequest($request);
$userPass = $this->basicAuth->getUserPass();
$this->assertEquals(
array('admin','1234'),
$userPass,
'We did not get the username and password we expected'
);
}
function testGetUserPassWithColon() {
$server = array(
'HTTP_AUTHORIZATION' => 'Basic ' . base64_encode('admin:1234:5678'),
);
$request = new Request($server);
$this->basicAuth->setHTTPRequest($request);
$userPass = $this->basicAuth->getUserPass();
$this->assertEquals(
array('admin','1234:5678'),
$userPass,
'We did not get the username and password we expected'
);
}
function testGetUserPassApacheEdgeCase() {
$server = array(
'REDIRECT_HTTP_AUTHORIZATION' => 'Basic ' . base64_encode('admin:1234'),
);
$request = new Request($server);
$this->basicAuth->setHTTPRequest($request);
$userPass = $this->basicAuth->getUserPass();
$this->assertEquals(
array('admin','1234'),
$userPass,
'We did not get the username and password we expected'
);
}
function testGetUserPassNothing() {
$this->assertEquals(
false,
$this->basicAuth->getUserPass()
);
}
function testRequireLogin() {
$this->basicAuth->requireLogin();
$this->assertEquals('SabreDAV',$this->basicAuth->getRealm());
$this->assertEquals(
'HTTP/1.1 401 Unauthorized',
$this->response->status,
'We expected a 401 status to be set'
);
$this->assertEquals(
'Basic realm="SabreDAV"',
$this->response->headers['WWW-Authenticate'],
'The WWW-Autenticate header was not set!'
);
}
}