2014-05-04 21:23:12 +02:00
|
|
|
<?php
|
|
|
|
class AbstractTest
|
|
|
|
{
|
|
|
|
public $assert;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->assert = new Assert();
|
|
|
|
}
|
2014-05-05 11:08:03 +02:00
|
|
|
|
2014-05-06 18:09:23 +02:00
|
|
|
public function setup()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function teardown()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-05 11:08:03 +02:00
|
|
|
protected function mockUser()
|
|
|
|
{
|
|
|
|
$user = UserModel::spawn();
|
|
|
|
$user->setAccessRank(new AccessRank(AccessRank::Registered));
|
|
|
|
$user->setName('dummy');
|
|
|
|
$user->passHash = UserModel::hashPassword('ble', $user->passSalt);
|
|
|
|
return UserModel::save($user);
|
|
|
|
}
|
|
|
|
|
2014-05-06 11:28:33 +02:00
|
|
|
protected function mockPost($owner)
|
2014-05-05 11:08:03 +02:00
|
|
|
{
|
|
|
|
$post = PostModel::spawn();
|
2014-05-06 11:28:33 +02:00
|
|
|
$post->setUploader($owner);
|
2014-05-05 11:08:03 +02:00
|
|
|
$post->setType(new PostType(PostType::Image));
|
|
|
|
return PostModel::save($post);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function login($user)
|
|
|
|
{
|
|
|
|
Auth::setCurrentUser($user);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function mockComment($owner)
|
|
|
|
{
|
2014-05-06 11:28:33 +02:00
|
|
|
$post = $this->mockPost($owner);
|
2014-05-05 11:08:03 +02:00
|
|
|
$comment = CommentModel::spawn();
|
|
|
|
$comment->setPost($post);
|
|
|
|
$comment->setCommenter($owner);
|
2014-05-06 00:54:15 +02:00
|
|
|
$comment->setText('test test');
|
2014-05-05 11:08:03 +02:00
|
|
|
return CommentModel::save($comment);
|
|
|
|
}
|
2014-05-06 13:07:24 +02:00
|
|
|
|
|
|
|
protected function grantAccess($privilege)
|
|
|
|
{
|
|
|
|
getConfig()->privileges->$privilege = 'anonymous';
|
|
|
|
Access::init();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function revokeAccess($privilege)
|
|
|
|
{
|
|
|
|
getConfig()->privileges->$privilege = 'nobody';
|
|
|
|
Access::init();
|
|
|
|
}
|
2014-05-04 21:23:12 +02:00
|
|
|
}
|