mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 14:48:20 +08:00
Fixed image tests after amends to url system
This commit is contained in:
parent
0f2eaccb39
commit
2af0021c2b
|
@ -57,10 +57,12 @@ class ImageTest extends TestCase
|
|||
$relPath = $this->uploadImage($imageName, $page->id);
|
||||
$this->assertResponseOk();
|
||||
|
||||
$this->assertTrue(file_exists(public_path($relPath)), 'Uploaded image exists');
|
||||
$this->assertTrue(file_exists(public_path($relPath)), 'Uploaded image not found at path: '. public_path($relPath));
|
||||
|
||||
$this->deleteImage($relPath);
|
||||
|
||||
$this->seeInDatabase('images', [
|
||||
'url' => $relPath,
|
||||
'url' => url($relPath),
|
||||
'type' => 'gallery',
|
||||
'uploaded_to' => $page->id,
|
||||
'path' => $relPath,
|
||||
|
@ -68,8 +70,7 @@ class ImageTest extends TestCase
|
|||
'updated_by' => $admin->id,
|
||||
'name' => $imageName
|
||||
]);
|
||||
|
||||
$this->deleteImage($relPath);
|
||||
|
||||
}
|
||||
|
||||
public function test_image_delete()
|
||||
|
|
Loading…
Reference in New Issue
Block a user