Added API tests for short URL deletion with domain

This commit is contained in:
Alejandro Celaya 2020-02-02 10:28:10 +01:00
parent aa80c2bb82
commit 881002634a

View file

@ -42,4 +42,29 @@ class DeleteShortUrlActionTest extends ApiTestCase
$this->assertEquals($expectedDetail, $payload['detail']); $this->assertEquals($expectedDetail, $payload['detail']);
$this->assertEquals('Cannot delete short URL', $payload['title']); $this->assertEquals('Cannot delete short URL', $payload['title']);
} }
/** @test */
public function properShortUrlIsDeletedWhenDomainIsProvided(): void
{
$fetchWithDomainBefore = $this->getJsonResponsePayload(
$this->callApiWithKey(self::METHOD_GET, '/short-urls/ghi789?domain=example.com'),
);
$fetchWithoutDomainBefore = $this->getJsonResponsePayload(
$this->callApiWithKey(self::METHOD_GET, '/short-urls/ghi789'),
);
$deleteResp = $this->callApiWithKey(self::METHOD_DELETE, '/short-urls/ghi789?domain=example.com');
$fetchWithDomainAfter = $this->getJsonResponsePayload(
$this->callApiWithKey(self::METHOD_GET, '/short-urls/ghi789?domain=example.com'),
);
$fetchWithoutDomainAfter = $this->getJsonResponsePayload(
$this->callApiWithKey(self::METHOD_GET, '/short-urls/ghi789'),
);
$this->assertEquals('example.com', $fetchWithDomainBefore['domain']);
$this->assertEquals(null, $fetchWithoutDomainBefore['domain']);
$this->assertEquals(self::STATUS_NO_CONTENT, $deleteResp->getStatusCode());
// Falls back to the one without domain, since the other one has been deleted
$this->assertEquals(null, $fetchWithDomainAfter['domain']);
$this->assertEquals(null, $fetchWithoutDomainAfter['domain']);
}
} }