aboutsummaryrefslogtreecommitdiff
path: root/tests/jsonapi/ForumEntriesDeleteTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/jsonapi/ForumEntriesDeleteTest.php')
-rw-r--r--tests/jsonapi/ForumEntriesDeleteTest.php61
1 files changed, 0 insertions, 61 deletions
diff --git a/tests/jsonapi/ForumEntriesDeleteTest.php b/tests/jsonapi/ForumEntriesDeleteTest.php
deleted file mode 100644
index e2f0a7e..0000000
--- a/tests/jsonapi/ForumEntriesDeleteTest.php
+++ /dev/null
@@ -1,61 +0,0 @@
-<?php
-
-require_once 'ForumTestHelper.php';
-
-use JsonApi\Models\ForumEntry;
-use JsonApi\Routes\Forum\ForumEntriesDelete;
-use JsonApi\Errors\RecordNotFoundException;
-
-class ForumEntriesDeleteTest extends \Codeception\Test\Unit
-{
- use ForumTestHelper;
-
- /**
- * @var \UnitTester
- */
- protected $tester;
-
- protected function _before()
- {
- \DBManager::getInstance()->setConnection('studip', $this->getModule('\\Helper\\StudipDb')->dbh);
- }
-
- protected function _after()
- {
- }
-
- // tests
-
- public function testShouldDeleteEntry()
- {
- $credentials = $this->tester->getCredentialsForTestDozent();
- $cat = $this->createCategory($credentials);
- $entry = $this->createEntry($credentials, $cat->id);
- $app = $this->tester->createApp($credentials, 'delete', '/forum-entries/{id}', ForumEntriesDelete::class);
-
- $requestBuilder = $this->tester->createRequestBuilder($credentials);
- $requestBuilder
- ->setUri('/forum-entries/'.$entry->id)
- ->delete();
-
- $response = $this->tester->sendMockRequest($app, $requestBuilder->getRequest());
-
- $this->tester->assertIsEmpty(ForumEntry::find($entry->id));
- }
-
- public function testShouldNotDeleteEntry()
- {
- $credentials = $this->tester->getCredentialsForTestDozent();
- $cat = $this->createCategory($credentials);
- $entry = $this->createEntry($credentials, $cat->id);
- $app = $this->tester->createApp($credentials, 'delete', '/forum-entries/{id}', ForumEntriesDelete::class);
-
- $requestBuilder = $this->tester->createRequestBuilder($credentials);
- $requestBuilder
- ->setUri('/forum-entries/badId')
- ->delete();
-
- $response = $this->tester->sendMockRequest($app, $requestBuilder->getRequest());
- $this->tester->assertSame(404, $response->getStatusCode());
- }
-}