2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-02 13:26:33 -04:00
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2016-03-05 13:09:21 -05:00
|
|
|
use Symfony\Component\DomCrawler\Crawler;
|
2015-09-02 13:26:33 -04:00
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
class TestCase extends Illuminate\Foundation\Testing\TestCase
|
|
|
|
{
|
2015-09-02 13:26:33 -04:00
|
|
|
|
|
|
|
use DatabaseTransactions;
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
|
|
|
* The base URL to use while testing the application.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $baseUrl = 'http://localhost';
|
2016-05-07 09:29:43 -04:00
|
|
|
|
|
|
|
// Local user instances
|
2015-09-02 13:26:33 -04:00
|
|
|
private $admin;
|
2016-05-07 09:29:43 -04:00
|
|
|
private $editor;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates the application.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Foundation\Application
|
|
|
|
*/
|
|
|
|
public function createApplication()
|
|
|
|
{
|
|
|
|
$app = require __DIR__.'/../bootstrap/app.php';
|
|
|
|
|
|
|
|
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
|
|
|
|
|
|
|
|
return $app;
|
|
|
|
}
|
2015-09-02 13:26:33 -04:00
|
|
|
|
2016-05-07 09:29:43 -04:00
|
|
|
/**
|
|
|
|
* Set the current user context to be an admin.
|
|
|
|
* @return $this
|
|
|
|
*/
|
2015-09-02 13:26:33 -04:00
|
|
|
public function asAdmin()
|
|
|
|
{
|
|
|
|
if($this->admin === null) {
|
2016-02-27 14:24:42 -05:00
|
|
|
$adminRole = \BookStack\Role::getRole('admin');
|
|
|
|
$this->admin = $adminRole->users->first();
|
2015-09-02 13:26:33 -04:00
|
|
|
}
|
|
|
|
return $this->actingAs($this->admin);
|
|
|
|
}
|
2015-09-22 16:07:50 -04:00
|
|
|
|
2016-05-07 09:29:43 -04:00
|
|
|
/**
|
|
|
|
* Set the current editor context to be an editor.
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function asEditor()
|
|
|
|
{
|
|
|
|
if($this->editor === null) {
|
|
|
|
$this->editor = $this->getEditor();
|
|
|
|
}
|
|
|
|
return $this->actingAs($this->editor);
|
|
|
|
}
|
|
|
|
|
2015-09-22 16:07:50 -04:00
|
|
|
/**
|
|
|
|
* Quickly sets an array of settings.
|
|
|
|
* @param $settingsArray
|
|
|
|
*/
|
|
|
|
protected function setSettings($settingsArray)
|
|
|
|
{
|
|
|
|
$settings = app('BookStack\Services\SettingService');
|
|
|
|
foreach ($settingsArray as $key => $value) {
|
|
|
|
$settings->put($key, $value);
|
|
|
|
}
|
|
|
|
}
|
2015-12-02 15:22:41 -05:00
|
|
|
|
2015-12-15 14:27:36 -05:00
|
|
|
/**
|
|
|
|
* Create a group of entities that belong to a specific user.
|
|
|
|
* @param $creatorUser
|
|
|
|
* @param $updaterUser
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function createEntityChainBelongingToUser($creatorUser, $updaterUser = false)
|
|
|
|
{
|
|
|
|
if ($updaterUser === false) $updaterUser = $creatorUser;
|
|
|
|
$book = factory(BookStack\Book::class)->create(['created_by' => $creatorUser->id, 'updated_by' => $updaterUser->id]);
|
|
|
|
$chapter = factory(BookStack\Chapter::class)->create(['created_by' => $creatorUser->id, 'updated_by' => $updaterUser->id]);
|
|
|
|
$page = factory(BookStack\Page::class)->create(['created_by' => $creatorUser->id, 'updated_by' => $updaterUser->id, 'book_id' => $book->id]);
|
|
|
|
$book->chapters()->saveMany([$chapter]);
|
|
|
|
$chapter->pages()->saveMany([$page]);
|
2016-05-01 16:20:50 -04:00
|
|
|
$restrictionService = $this->app[\BookStack\Services\PermissionService::class];
|
|
|
|
$restrictionService->buildJointPermissionsForEntity($book);
|
2015-12-15 14:27:36 -05:00
|
|
|
return [
|
|
|
|
'book' => $book,
|
|
|
|
'chapter' => $chapter,
|
|
|
|
'page' => $page
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Quick way to create a new user
|
|
|
|
* @param array $attributes
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-05-07 09:29:43 -04:00
|
|
|
protected function getEditor($attributes = [])
|
2015-12-15 14:27:36 -05:00
|
|
|
{
|
|
|
|
$user = factory(\BookStack\User::class)->create($attributes);
|
2016-03-02 17:35:01 -05:00
|
|
|
$role = \BookStack\Role::getRole('editor');
|
|
|
|
$user->attachRole($role);;
|
2015-12-15 14:27:36 -05:00
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
|
2016-03-05 07:09:09 -05:00
|
|
|
/**
|
|
|
|
* Quick way to create a new user without any permissions
|
|
|
|
* @param array $attributes
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
protected function getNewBlankUser($attributes = [])
|
|
|
|
{
|
|
|
|
$user = factory(\BookStack\User::class)->create($attributes);
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
|
2015-12-02 15:22:41 -05:00
|
|
|
/**
|
|
|
|
* Assert that a given string is seen inside an element.
|
|
|
|
*
|
|
|
|
* @param bool|string|null $element
|
|
|
|
* @param integer $position
|
|
|
|
* @param string $text
|
|
|
|
* @param bool $negate
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
protected function seeInNthElement($element, $position, $text, $negate = false)
|
|
|
|
{
|
|
|
|
$method = $negate ? 'assertNotRegExp' : 'assertRegExp';
|
|
|
|
|
|
|
|
$rawPattern = preg_quote($text, '/');
|
|
|
|
|
|
|
|
$escapedPattern = preg_quote(e($text), '/');
|
|
|
|
|
|
|
|
$content = $this->crawler->filter($element)->eq($position)->html();
|
|
|
|
|
|
|
|
$pattern = $rawPattern == $escapedPattern
|
|
|
|
? $rawPattern : "({$rawPattern}|{$escapedPattern})";
|
|
|
|
|
|
|
|
$this->$method("/$pattern/i", $content);
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
2016-02-18 14:32:07 -05:00
|
|
|
|
2016-03-05 13:09:21 -05:00
|
|
|
/**
|
|
|
|
* Assert that the current page matches a given URI.
|
|
|
|
*
|
|
|
|
* @param string $uri
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
protected function seePageUrlIs($uri)
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
$uri, $this->currentUri, "Did not land on expected page [{$uri}].\n"
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Do a forced visit that does not error out on exception.
|
|
|
|
* @param string $uri
|
|
|
|
* @param array $parameters
|
|
|
|
* @param array $cookies
|
|
|
|
* @param array $files
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
protected function forceVisit($uri, $parameters = [], $cookies = [], $files = [])
|
|
|
|
{
|
|
|
|
$method = 'GET';
|
|
|
|
$uri = $this->prepareUrlForRequest($uri);
|
|
|
|
$this->call($method, $uri, $parameters, $cookies, $files);
|
|
|
|
$this->clearInputs()->followRedirects();
|
|
|
|
$this->currentUri = $this->app->make('request')->fullUrl();
|
|
|
|
$this->crawler = new Crawler($this->response->getContent(), $uri);
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2016-02-18 14:32:07 -05:00
|
|
|
/**
|
|
|
|
* Click the text within the selected element.
|
|
|
|
* @param $parentElement
|
|
|
|
* @param $linkText
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
protected function clickInElement($parentElement, $linkText)
|
|
|
|
{
|
|
|
|
$elem = $this->crawler->filter($parentElement);
|
|
|
|
$link = $elem->selectLink($linkText);
|
|
|
|
$this->visit($link->link()->getUri());
|
|
|
|
return $this;
|
|
|
|
}
|
2016-03-29 15:13:23 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the page contains the given element.
|
|
|
|
* @param string $selector
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function pageHasElement($selector)
|
|
|
|
{
|
|
|
|
$elements = $this->crawler->filter($selector);
|
|
|
|
$this->assertTrue(count($elements) > 0, "The page does not contain an element matching " . $selector);
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the page contains the given element.
|
|
|
|
* @param string $selector
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function pageNotHasElement($selector)
|
|
|
|
{
|
|
|
|
$elements = $this->crawler->filter($selector);
|
|
|
|
$this->assertFalse(count($elements) > 0, "The page contains " . count($elements) . " elements matching " . $selector);
|
|
|
|
return $this;
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|