mirror of
https://github.com/friendica/friendica
synced 2024-11-10 00:23:00 +00:00
Fixing tests?
This commit is contained in:
parent
56824598ff
commit
a5b1843b36
1 changed files with 5 additions and 4 deletions
|
@ -6,6 +6,7 @@
|
||||||
namespace Friendica\Test\legacy;
|
namespace Friendica\Test\legacy;
|
||||||
|
|
||||||
use Friendica\App;
|
use Friendica\App;
|
||||||
|
use Friendica\App\Router;
|
||||||
use Friendica\Core\Config\Capability\IManageConfigValues;
|
use Friendica\Core\Config\Capability\IManageConfigValues;
|
||||||
use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
|
use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
|
||||||
use Friendica\Core\Protocol;
|
use Friendica\Core\Protocol;
|
||||||
|
@ -1006,7 +1007,7 @@ class ApiTest extends FixtureTest
|
||||||
public function testApiMediaUpload()
|
public function testApiMediaUpload()
|
||||||
{
|
{
|
||||||
$this->expectException(\Friendica\Network\HTTPException\BadRequestException::class);
|
$this->expectException(\Friendica\Network\HTTPException\BadRequestException::class);
|
||||||
(new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), $_SERVER))->run();
|
(new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]))->run();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1019,7 +1020,7 @@ class ApiTest extends FixtureTest
|
||||||
$this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
|
$this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
|
||||||
BasicAuth::setCurrentUserID();
|
BasicAuth::setCurrentUserID();
|
||||||
$_SESSION['authenticated'] = false;
|
$_SESSION['authenticated'] = false;
|
||||||
(new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), $_SERVER))->run();
|
(new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]))->run();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1036,7 +1037,7 @@ class ApiTest extends FixtureTest
|
||||||
'tmp_name' => 'tmp_name'
|
'tmp_name' => 'tmp_name'
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
(new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), $_SERVER))->run();
|
(new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]))->run();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1058,7 +1059,7 @@ class ApiTest extends FixtureTest
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
||||||
$response = (new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), $_SERVER))->run();
|
$response = (new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]))->run();
|
||||||
$media = json_decode($response->getBody(), true);
|
$media = json_decode($response->getBody(), true);
|
||||||
|
|
||||||
self::assertEquals('image/png', $media['image']['image_type']);
|
self::assertEquals('image/png', $media['image']['image_type']);
|
||||||
|
|
Loading…
Reference in a new issue