X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/465d405926c7e22173fe650bf2d417d4633d7990..refs/pull/2902/head:/tests/Entity/PageContentTest.php
diff --git a/tests/Entity/PageContentTest.php b/tests/Entity/PageContentTest.php
index 99547fd17..5aee97887 100644
--- a/tests/Entity/PageContentTest.php
+++ b/tests/Entity/PageContentTest.php
@@ -1,16 +1,22 @@
-id)->first();
+ $page = Page::query()->first();
+ $secondPage = Page::query()->where('id', '!=', $page->id)->first();
$secondPage->html = "
Hello, This is a test
This is a second block of content
";
$secondPage->save();
@@ -38,8 +44,8 @@ class PageContentTest extends TestCase
public function test_saving_page_with_includes()
{
- $page = Page::first();
- $secondPage = Page::where('id', '!=', $page->id)->first();
+ $page = Page::query()->first();
+ $secondPage = Page::query()->where('id', '!=', $page->id)->first();
$this->asEditor();
$includeTag = '{{@' . $secondPage->id . '}}';
@@ -56,8 +62,8 @@ class PageContentTest extends TestCase
public function test_page_includes_do_not_break_tables()
{
- $page = Page::first();
- $secondPage = Page::where('id', '!=', $page->id)->first();
+ $page = Page::query()->first();
+ $secondPage = Page::query()->where('id', '!=', $page->id)->first();
$content = '';
$secondPage->html = $content;
@@ -93,7 +99,7 @@ class PageContentTest extends TestCase
public function test_page_content_scripts_removed_by_default()
{
$this->asEditor();
- $page = Page::first();
+ $page = Page::query()->first();
$script = 'abc123abc123';
$page->html = "escape {$script}";
$page->save();
@@ -116,7 +122,7 @@ class PageContentTest extends TestCase
];
$this->asEditor();
- $page = Page::first();
+ $page = Page::query()->first();
foreach ($checks as $check) {
$page->html = $check;
@@ -127,7 +133,6 @@ class PageContentTest extends TestCase
$pageView->assertElementNotContains('.page-content', '');
}
-
}
public function test_iframe_js_and_base64_urls_are_removed()
@@ -137,11 +142,11 @@ class PageContentTest extends TestCase
'',
'',
'',
- ''
+ '',
];
$this->asEditor();
- $page = Page::first();
+ $page = Page::query()->first();
foreach ($checks as $check) {
$page->html = $check;
@@ -156,13 +161,80 @@ class PageContentTest extends TestCase
$pageView->assertElementNotContains('.page-content', 'data:');
$pageView->assertElementNotContains('.page-content', 'base64');
}
+ }
+ public function test_javascript_uri_links_are_removed()
+ {
+ $checks = [
+ '');
+ $pageView->assertElementNotContains('.page-content', 'href=javascript:');
+ }
+ }
+
+ public function test_form_actions_with_javascript_are_removed()
+ {
+ $checks = [
+ '',
+ '',
+ '',
+ ];
+
+ $this->asEditor();
+ $page = Page::query()->first();
+
+ foreach ($checks as $check) {
+ $page->html = $check;
+ $page->save();
+
+ $pageView = $this->get($page->getUrl());
+ $pageView->assertStatus(200);
+ $pageView->assertElementNotContains('.page-content', '