Replace DI::app() with DI::appHelper() in Module\Api\Friendica namespace tests
parent
1d441ab657
commit
b2a383a9cb
|
@ -19,7 +19,7 @@ class SearchTest extends ApiTestCase
|
||||||
{
|
{
|
||||||
$directMessage = new DirectMessage(new NullLogger(), DI::dba(), DI::twitterUser());
|
$directMessage = new DirectMessage(new NullLogger(), DI::dba(), DI::twitterUser());
|
||||||
|
|
||||||
$response = (new Search($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
$response = (new Search($directMessage, DI::dba(), DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock);
|
->run($this->httpExceptionMock);
|
||||||
|
|
||||||
$json = $this->toJson($response);
|
$json = $this->toJson($response);
|
||||||
|
@ -37,7 +37,7 @@ class SearchTest extends ApiTestCase
|
||||||
|
|
||||||
$directMessage = new DirectMessage(new NullLogger(), DI::dba(), DI::twitterUser());
|
$directMessage = new DirectMessage(new NullLogger(), DI::dba(), DI::twitterUser());
|
||||||
|
|
||||||
$response = (new Search($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
$response = (new Search($directMessage, DI::dba(), DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock, [
|
->run($this->httpExceptionMock, [
|
||||||
'searchstring' => 'item_body'
|
'searchstring' => 'item_body'
|
||||||
]);
|
]);
|
||||||
|
@ -58,7 +58,7 @@ class SearchTest extends ApiTestCase
|
||||||
{
|
{
|
||||||
$directMessage = new DirectMessage(new NullLogger(), DI::dba(), DI::twitterUser());
|
$directMessage = new DirectMessage(new NullLogger(), DI::dba(), DI::twitterUser());
|
||||||
|
|
||||||
$response = (new Search($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
$response = (new Search($directMessage, DI::dba(), DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock, [
|
->run($this->httpExceptionMock, [
|
||||||
'searchstring' => 'test'
|
'searchstring' => 'test'
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -52,7 +52,7 @@ class NotificationTest extends ApiTestCase
|
||||||
</notes>
|
</notes>
|
||||||
XML;
|
XML;
|
||||||
|
|
||||||
$response = (new Notification(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'xml']))
|
$response = (new Notification(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'xml']))
|
||||||
->run($this->httpExceptionMock);
|
->run($this->httpExceptionMock);
|
||||||
|
|
||||||
self::assertXmlStringEqualsXmlString($assertXml, (string)$response->getBody());
|
self::assertXmlStringEqualsXmlString($assertXml, (string)$response->getBody());
|
||||||
|
@ -64,7 +64,7 @@ XML;
|
||||||
|
|
||||||
public function testWithJsonResult()
|
public function testWithJsonResult()
|
||||||
{
|
{
|
||||||
$response = (new Notification(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json']))
|
$response = (new Notification(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json']))
|
||||||
->run($this->httpExceptionMock);
|
->run($this->httpExceptionMock);
|
||||||
|
|
||||||
$json = $this->toJson($response);
|
$json = $this->toJson($response);
|
||||||
|
|
|
@ -25,7 +25,7 @@ class DeleteTest extends ApiTestCase
|
||||||
public function testEmpty()
|
public function testEmpty()
|
||||||
{
|
{
|
||||||
$this->expectException(BadRequestException::class);
|
$this->expectException(BadRequestException::class);
|
||||||
(new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))->run($this->httpExceptionMock);
|
(new Delete(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))->run($this->httpExceptionMock);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testWithoutAuthenticatedUser()
|
public function testWithoutAuthenticatedUser()
|
||||||
|
@ -36,14 +36,14 @@ class DeleteTest extends ApiTestCase
|
||||||
public function testWrong()
|
public function testWrong()
|
||||||
{
|
{
|
||||||
$this->expectException(BadRequestException::class);
|
$this->expectException(BadRequestException::class);
|
||||||
(new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))->run($this->httpExceptionMock, ['photo_id' => 1]);
|
(new Delete(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))->run($this->httpExceptionMock, ['photo_id' => 1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testValidWithPost()
|
public function testValidWithPost()
|
||||||
{
|
{
|
||||||
$this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba());
|
$this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba());
|
||||||
|
|
||||||
$response = (new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
$response = (new Delete(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock, [
|
->run($this->httpExceptionMock, [
|
||||||
'photo_id' => '709057080661a283a6aa598501504178'
|
'photo_id' => '709057080661a283a6aa598501504178'
|
||||||
]);
|
]);
|
||||||
|
@ -58,7 +58,7 @@ class DeleteTest extends ApiTestCase
|
||||||
{
|
{
|
||||||
$this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba());
|
$this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba());
|
||||||
|
|
||||||
$response = (new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
$response = (new Delete(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock, [
|
->run($this->httpExceptionMock, [
|
||||||
'photo_id' => '709057080661a283a6aa598501504178'
|
'photo_id' => '709057080661a283a6aa598501504178'
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -25,7 +25,7 @@ class DeleteTest extends ApiTestCase
|
||||||
public function testEmpty()
|
public function testEmpty()
|
||||||
{
|
{
|
||||||
$this->expectException(BadRequestException::class);
|
$this->expectException(BadRequestException::class);
|
||||||
(new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
(new Delete(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock);
|
->run($this->httpExceptionMock);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ class DeleteTest extends ApiTestCase
|
||||||
public function testWrong()
|
public function testWrong()
|
||||||
{
|
{
|
||||||
$this->expectException(BadRequestException::class);
|
$this->expectException(BadRequestException::class);
|
||||||
(new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
(new Delete(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock, [
|
->run($this->httpExceptionMock, [
|
||||||
'album' => 'album_name'
|
'album' => 'album_name'
|
||||||
]);
|
]);
|
||||||
|
@ -43,7 +43,7 @@ class DeleteTest extends ApiTestCase
|
||||||
{
|
{
|
||||||
$this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba());
|
$this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba());
|
||||||
|
|
||||||
$response = (new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
$response = (new Delete(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock, [
|
->run($this->httpExceptionMock, [
|
||||||
'album' => 'test_album']
|
'album' => 'test_album']
|
||||||
);
|
);
|
||||||
|
|
|
@ -25,14 +25,14 @@ class UpdateTest extends ApiTestCase
|
||||||
public function testEmpty()
|
public function testEmpty()
|
||||||
{
|
{
|
||||||
$this->expectException(BadRequestException::class);
|
$this->expectException(BadRequestException::class);
|
||||||
(new Update(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
(new Update(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock);
|
->run($this->httpExceptionMock);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testTooFewArgs()
|
public function testTooFewArgs()
|
||||||
{
|
{
|
||||||
$this->expectException(BadRequestException::class);
|
$this->expectException(BadRequestException::class);
|
||||||
(new Update(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
(new Update(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock, [
|
->run($this->httpExceptionMock, [
|
||||||
'album' => 'album_name'
|
'album' => 'album_name'
|
||||||
]);
|
]);
|
||||||
|
@ -41,7 +41,7 @@ class UpdateTest extends ApiTestCase
|
||||||
public function testWrongUpdate()
|
public function testWrongUpdate()
|
||||||
{
|
{
|
||||||
$this->expectException(BadRequestException::class);
|
$this->expectException(BadRequestException::class);
|
||||||
(new Update(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
(new Update(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock, [
|
->run($this->httpExceptionMock, [
|
||||||
'album' => 'album_name',
|
'album' => 'album_name',
|
||||||
'album_new' => 'album_name'
|
'album_new' => 'album_name'
|
||||||
|
@ -57,7 +57,7 @@ class UpdateTest extends ApiTestCase
|
||||||
{
|
{
|
||||||
$this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba());
|
$this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba());
|
||||||
|
|
||||||
$response = (new Update(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
$response = (new Update(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
||||||
->run($this->httpExceptionMock, [
|
->run($this->httpExceptionMock, [
|
||||||
'album' => 'test_album',
|
'album' => 'test_album',
|
||||||
'album_new' => 'test_album_2'
|
'album_new' => 'test_album_2'
|
||||||
|
|
Loading…
Reference in New Issue