mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Removing dead fixtures, dead properties and dead models.
This commit is contained in:
parent
2f917674d1
commit
ffb6c29e79
1 changed files with 3 additions and 132 deletions
|
@ -20,7 +20,6 @@ App::import('Core', 'Controller');
|
|||
App::import('Component', array('Auth', 'Acl'));
|
||||
App::import('Component', 'auth/form_authenticate');
|
||||
App::import('Model', 'DbAcl');
|
||||
App::import('Core', 'Xml');
|
||||
|
||||
/**
|
||||
* TestAuthComponent class
|
||||
|
@ -38,14 +37,6 @@ class TestAuthComponent extends AuthComponent {
|
|||
*/
|
||||
public $testStop = false;
|
||||
|
||||
/**
|
||||
* Sets default login state
|
||||
*
|
||||
* @var bool true
|
||||
* @access protected
|
||||
*/
|
||||
protected $_loggedIn = true;
|
||||
|
||||
/**
|
||||
* stop method
|
||||
*
|
||||
|
@ -120,92 +111,6 @@ class AuthUser extends CakeTestModel {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* AuthUserCustomField class
|
||||
*
|
||||
* @package cake.tests.cases.libs.controller.components
|
||||
*/
|
||||
class AuthUserCustomField extends AuthUser {
|
||||
|
||||
/**
|
||||
* name property
|
||||
*
|
||||
* @var string 'AuthUser'
|
||||
* @access public
|
||||
*/
|
||||
public $name = 'AuthUserCustomField';
|
||||
}
|
||||
|
||||
/**
|
||||
* UuidUser class
|
||||
*
|
||||
* @package cake
|
||||
* @package cake.tests.cases.libs.controller.components
|
||||
*/
|
||||
class UuidUser extends CakeTestModel {
|
||||
|
||||
/**
|
||||
* name property
|
||||
*
|
||||
* @var string 'AuthUser'
|
||||
* @access public
|
||||
*/
|
||||
public $name = 'UuidUser';
|
||||
|
||||
/**
|
||||
* useDbConfig property
|
||||
*
|
||||
* @var string 'test'
|
||||
* @access public
|
||||
*/
|
||||
public $useDbConfig = 'test';
|
||||
|
||||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var string 'uuid'
|
||||
* @access public
|
||||
*/
|
||||
public $useTable = 'uuids';
|
||||
|
||||
/**
|
||||
* parentNode method
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
function parentNode() {
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* bindNode method
|
||||
*
|
||||
* @param mixed $object
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
function bindNode($object) {
|
||||
return 'Roles/Admin';
|
||||
}
|
||||
|
||||
/**
|
||||
* isAuthorized method
|
||||
*
|
||||
* @param mixed $user
|
||||
* @param mixed $controller
|
||||
* @param mixed $action
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
function isAuthorized($user, $controller = null, $action = null) {
|
||||
if (!empty($user)) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* AuthTestController class
|
||||
*
|
||||
|
@ -295,7 +200,7 @@ class AuthTestController extends Controller {
|
|||
* @return void
|
||||
*/
|
||||
function logout() {
|
||||
// $this->redirect($this->Auth->logout());
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -461,7 +366,7 @@ class AuthTest extends CakeTestCase {
|
|||
* @var array
|
||||
* @access public
|
||||
*/
|
||||
public $fixtures = array('core.uuid', 'core.auth_user', 'core.auth_user_custom_field', 'core.aro', 'core.aco', 'core.aros_aco', 'core.aco_action');
|
||||
public $fixtures = array('core.auth_user');
|
||||
|
||||
/**
|
||||
* initialized property
|
||||
|
@ -485,9 +390,6 @@ class AuthTest extends CakeTestCase {
|
|||
Configure::write('Security.salt', 'YJfIxfs2guVoUubWDYhG93b0qyJfIxfs2guwvniR2G0FgaC9mi');
|
||||
Configure::write('Security.cipherSeed', 770011223369876);
|
||||
|
||||
Configure::write('Acl.database', 'test');
|
||||
Configure::write('Acl.classname', 'DbAcl');
|
||||
|
||||
$request = new CakeRequest(null, false);
|
||||
|
||||
$this->Controller = new AuthTestController($request);
|
||||
|
@ -497,9 +399,6 @@ class AuthTest extends CakeTestCase {
|
|||
);
|
||||
$this->Controller->beforeFilter();
|
||||
|
||||
$view = new View($this->Controller);
|
||||
ClassRegistry::addObject('view', $view);
|
||||
|
||||
$this->Controller->Session->delete('Auth');
|
||||
$this->Controller->Session->delete('Message.auth');
|
||||
|
||||
|
@ -645,35 +544,6 @@ class AuthTest extends CakeTestCase {
|
|||
$this->assertFalse($result);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* testAuthorizeModel method
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
function testAuthorizeModel() {
|
||||
$this->markTestSkipped('This is not implemented');
|
||||
|
||||
$this->AuthUser = new AuthUser();
|
||||
$user = $this->AuthUser->find();
|
||||
$this->Controller->Session->write('Auth', $user);
|
||||
|
||||
$this->Controller->request['controller'] = 'auth_test';
|
||||
$this->Controller->request['action'] = 'add';
|
||||
$this->Controller->Auth->userModel = 'AuthUser';
|
||||
$this->Controller->Auth->initialize($this->Controller);
|
||||
$this->Controller->Auth->authorize = array('model'=>'AuthUser');
|
||||
$result = $this->Controller->Auth->startup($this->Controller);
|
||||
$this->assertTrue($result);
|
||||
|
||||
$this->Controller->Session->delete('Auth');
|
||||
$this->Controller->Auth->startup($this->Controller);
|
||||
$this->assertTrue($this->Controller->Session->check('Message.auth'));
|
||||
$result = $this->Controller->Auth->isAuthorized();
|
||||
$this->assertFalse($result);
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException CakeException
|
||||
* @return void
|
||||
|
@ -1177,6 +1047,7 @@ class AuthTest extends CakeTestCase {
|
|||
$this->Controller->components = array(
|
||||
'Auth' => array(
|
||||
'loginAction' => array('controller' => 'people', 'action' => 'login'),
|
||||
'logoutRedirect' => array('controller' => 'people', 'action' => 'login'),
|
||||
),
|
||||
'Session'
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue