blob: d041fae6b580d454ea82a43873216f0998c1dfd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?php
require_once 'BlubberTestHelper.php';
class BlubberCommentsShowTest extends \Codeception\Test\Unit
{
use BlubberTestHelper;
/**
* @var \UnitTester
*/
protected $tester;
protected function _before()
{
\DBManager::getInstance()->setConnection('studip', $this->getModule('\\Helper\\StudipDb')->dbh);
}
protected function _after()
{
}
// tests
public function testShowComment()
{
// given
$credentials = $this->tester->getCredentialsForTestAutor();
$thread = $this->createPublicBlubberThreadForUser($credentials, 'Who knows Daskylos?');
// Workaround old-style Stud.IP-API using $GLOBALS['user']
$oldUser = $GLOBALS['user'] ?? null;
$GLOBALS['user'] = new \Seminar_User(\User::find($credentials['id']));
$comment = $this->createBlubberComment($credentials, $thread, 'Autolykos knows him.');
// Workaround old-style Stud.IP-API using $GLOBALS['user']
$GLOBALS['user'] = $oldUser;
$response = $this->fetchComment($credentials, $comment);
$this->tester->assertTrue($response->isSuccessfulDocument([200]));
$document = $response->document();
$this->tester->assertTrue($document->isSingleResourceDocument());
$resourceObject = $document->primaryResource();
$this->tester->assertSame($comment->content, $resourceObject->attribute('content'));
}
}
|