--- /dev/null
+<?php
+
+class PageContentTest extends TestCase
+{
+
+ public function test_page_includes()
+ {
+ $page = \BookStack\Page::first();
+ $secondPage = \BookStack\Page::all()->get(2);
+
+ $secondPage->html = "<p id='section1'>Hello, This is a test</p><p id='section2'>This is a second block of content</p>";
+ $secondPage->save();
+
+ $this->asAdmin()->visit($page->getUrl())
+ ->dontSee('Hello, This is a test');
+
+ $originalHtml = $page->html;
+ $page->html .= "{{@{$secondPage->id}}}";
+ $page->save();
+
+ $this->asAdmin()->visit($page->getUrl())
+ ->see('Hello, This is a test')
+ ->see('This is a second block of content');
+
+ $page->html = $originalHtml . " Well {{@{$secondPage->id}#section2}}";
+ $page->save();
+
+ $this->asAdmin()->visit($page->getUrl())
+ ->dontSee('Hello, This is a test')
+ ->see('Well This is a second block of content');
+ }
+
+}
use BookStack\Page;
use BookStack\Services\PermissionService;
-class TagTests extends \TestCase
+class TagTest extends \TestCase
{
protected $defaultTagCount = 20;
$attrs = $attrs->merge(factory(Tag::class, 5)->make(['name' => 'color']));
$page = $this->getPageWithTags($attrs);
- $this->asAdmin()->get('/ajax/tags/suggest?search=co')->seeJsonEquals(['color', 'country']);
- $this->asEditor()->get('/ajax/tags/suggest?search=co')->seeJsonEquals(['color', 'country']);
+ $this->asAdmin()->get('/ajax/tags/suggest/names?search=co')->seeJsonEquals(['color', 'country']);
+ $this->asEditor()->get('/ajax/tags/suggest/names?search=co')->seeJsonEquals(['color', 'country']);
// Set restricted permission the page
$page->restricted = true;
$page->save();
$permissionService->buildJointPermissionsForEntity($page);
- $this->asAdmin()->get('/ajax/tags/suggest?search=co')->seeJsonEquals(['color', 'country']);
- $this->asEditor()->get('/ajax/tags/suggest?search=co')->seeJsonEquals([]);
- }
-
- public function test_entity_tag_updating()
- {
- $page = $this->getPageWithTags();
-
- $testJsonData = [
- ['name' => 'color', 'value' => 'red'],
- ['name' => 'color', 'value' => ' blue '],
- ['name' => 'city', 'value' => 'London '],
- ['name' => 'country', 'value' => ' England'],
- ];
- $testResponseJsonData = [
- ['name' => 'color', 'value' => 'red'],
- ['name' => 'color', 'value' => 'blue'],
- ['name' => 'city', 'value' => 'London'],
- ['name' => 'country', 'value' => 'England'],
- ];
-
- // Do update request
- $this->asAdmin()->json("POST", "/ajax/tags/update/page/" . $page->id, ['tags' => $testJsonData]);
- $updateData = json_decode($this->response->getContent());
- // Check data is correct
- $testDataCorrect = true;
- foreach ($updateData->tags as $data) {
- $testItem = ['name' => $data->name, 'value' => $data->value];
- if (!in_array($testItem, $testResponseJsonData)) $testDataCorrect = false;
- }
- $testMessage = "Expected data was not found in the response.\nExpected Data: %s\nRecieved Data: %s";
- $this->assertTrue($testDataCorrect, sprintf($testMessage, json_encode($testResponseJsonData), json_encode($updateData)));
- $this->assertTrue(isset($updateData->message), "No message returned in tag update response");
-
- // Do get request
- $this->asAdmin()->get("/ajax/tags/get/page/" . $page->id);
- $getResponseData = json_decode($this->response->getContent());
- // Check counts
- $this->assertTrue(count($getResponseData) === count($testJsonData), "The received tag count is incorrect");
- // Check data is correct
- $testDataCorrect = true;
- foreach ($getResponseData as $data) {
- $testItem = ['name' => $data->name, 'value' => $data->value];
- if (!in_array($testItem, $testResponseJsonData)) $testDataCorrect = false;
- }
- $testMessage = "Expected data was not found in the response.\nExpected Data: %s\nRecieved Data: %s";
- $this->assertTrue($testDataCorrect, sprintf($testMessage, json_encode($testResponseJsonData), json_encode($getResponseData)));
+ $this->asAdmin()->get('/ajax/tags/suggest/names?search=co')->seeJsonEquals(['color', 'country']);
+ $this->asEditor()->get('/ajax/tags/suggest/names?search=co')->seeJsonEquals([]);
}
}