BookStack/tests/TestCase.php

81 lines
2.0 KiB
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace Tests;
2015-07-12 19:01:42 +00:00
use BookStack\Entities\Models\Entity;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
2015-07-12 19:01:42 +00:00
{
use CreatesApplication;
use DatabaseTransactions;
use SharedTestHelpers;
/**
* The base URL to use while testing the application.
2021-06-26 15:23:15 +00:00
*
* @var string
*/
protected $baseUrl = 'http://localhost';
/**
* Assert the session contains a specific entry.
2021-06-26 15:23:15 +00:00
*
* @param string $key
2021-06-26 15:23:15 +00:00
*
* @return $this
*/
protected function assertSessionHas(string $key)
{
$this->assertTrue(session()->has($key), "Session does not contain a [{$key}] entry");
2021-06-26 15:23:15 +00:00
return $this;
}
/**
* Override of the get method so we can get visibility of custom TestResponse methods.
2021-06-26 15:23:15 +00:00
*
* @param string $uri
* @param array $headers
*
* @return TestResponse
*/
public function get($uri, array $headers = [])
{
return parent::get($uri, $headers);
}
/**
* Create the test response instance from the given response.
*
2021-06-26 15:23:15 +00:00
* @param \Illuminate\Http\Response $response
*
* @return TestResponse
*/
protected function createTestResponse($response)
{
return TestResponse::fromBaseResponse($response);
}
/**
* Assert that an activity entry exists of the given key.
* Checks the activity belongs to the given entity if provided.
*/
protected function assertActivityExists(string $type, ?Entity $entity = null, string $detail = '')
{
$detailsToCheck = ['type' => $type];
if ($entity) {
$detailsToCheck['entity_type'] = $entity->getMorphClass();
$detailsToCheck['entity_id'] = $entity->id;
}
if ($detail) {
$detailsToCheck['detail'] = $detail;
}
$this->assertDatabaseHas('activities', $detailsToCheck);
}
2021-06-26 15:23:15 +00:00
}