]> BookStack Code Mirror - bookstack/commitdiff
Fixed image tests after amends to url system
authorDan Brown <redacted>
Sun, 30 Oct 2016 12:58:01 +0000 (12:58 +0000)
committerDan Brown <redacted>
Sun, 30 Oct 2016 12:58:01 +0000 (12:58 +0000)
tests/ImageTest.php

index 806a36acc11fcb507987ba4e9ab2fc6935afa2fd..23373419f21792413a97706aee439787c13dc6aa 100644 (file)
@@ -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()