szurubooru/tests/JobTests/EditPostSourceJobTest.php

135 lines
2.7 KiB
PHP
Raw Normal View History

2014-05-06 11:28:33 +02:00
<?php
class EditPostSourceJobTest extends AbstractTest
{
public function testSaving()
{
$this->prepare();
$this->grantAccess('editPostSource.own');
$post = $this->assert->doesNotThrow(function()
{
return $this->runApi('a');
});
$this->assert->areEqual('a', $post->source);
$this->assert->doesNotThrow(function() use ($post)
{
PostModel::findById($post->getId());
});
}
public function testAlmostTooLongText()
{
$this->prepare();
$this->grantAccess('editPostSource.own');
$this->assert->doesNotThrow(function()
{
$this->runApi(str_repeat('a', getConfig()->posts->maxSourceLength));
});
}
public function testTooLongText()
{
$this->prepare();
$this->grantAccess('editPostSource.own');
$this->assert->throws(function()
{
$this->runApi(str_repeat('a', getConfig()->posts->maxSourceLength + 1));
}, 'Source must have at most');
}
public function testNoAuth()
{
$this->prepare();
$this->grantAccess('editPostSource');
Auth::setCurrentUser(null);
$this->assert->doesNotThrow(function()
{
$this->runApi('alohaaaaaaa');
});
}
public function testOwnAccessDenial()
{
$this->prepare();
$this->assert->throws(function()
{
$this->runApi('alohaaaaaaa');
}, 'Insufficient privileges');
}
public function testOtherAccessGrant()
{
$this->prepare();
$this->grantAccess('editPostSource.all');
$post = $this->mockPost(Auth::getCurrentUser());
//login as someone else
$this->login($this->mockUser());
$this->assert->doesNotThrow(function() use ($post)
{
Api::run(
new EditPostSourceJob(),
[
EditPostSourceJob::POST_ID => $post->getId(),
EditPostSourceJob::SOURCE => 'alohaa',
]);
});
}
public function testOtherAccessDenial()
{
$this->prepare();
$this->grantAccess('editPostSource.own');
$post = $this->mockPost(Auth::getCurrentUser());
//login as someone else
$this->login($this->mockUser());
$this->assert->throws(function() use ($post)
{
Api::run(
new EditPostSourceJob(),
[
EditPostSourceJob::POST_ID => $post->getId(),
EditPostSourceJob::SOURCE => 'alohaa',
]);
}, 'Insufficient privileges');
}
public function testWrongPostId()
{
$this->prepare();
$this->assert->throws(function()
{
Api::run(
new EditPostSourceJob(),
[
EditPostSourceJob::POST_ID => 100,
EditPostSourceJob::SOURCE => 'alohaa',
]);
}, 'Invalid post ID');
}
protected function runApi($text)
{
$post = $this->mockPost(Auth::getCurrentUser());
return Api::run(
new EditPostSourceJob(),
[
EditPostSourceJob::POST_ID => $post->getId(),
EditPostSourceJob::SOURCE => $text
]);
}
protected function prepare()
{
$this->login($this->mockUser());
}
}