2009-02-12 10:38:43 +01:00
|
|
|
<?php
|
2015-08-30 07:02:55 +02:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
namespace SilverStripe\ORM\Tests;
|
2016-06-15 06:03:16 +02:00
|
|
|
|
2017-05-17 07:40:13 +02:00
|
|
|
use SilverStripe\Control\Director;
|
|
|
|
use SilverStripe\Core\Injector\Injector;
|
2016-06-15 06:03:16 +02:00
|
|
|
use SilverStripe\ORM\FieldType\DBHTMLText;
|
|
|
|
use SilverStripe\ORM\FieldType\DBField;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Core\Convert;
|
|
|
|
use SilverStripe\Core\Config\Config;
|
|
|
|
use SilverStripe\Dev\SapphireTest;
|
2016-10-14 03:30:05 +02:00
|
|
|
use SilverStripe\ORM\Tests\DBHTMLTextTest\TestShortcode;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\View\Parsers\ShortcodeParser;
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
class DBHTMLTextTest extends SapphireTest
|
|
|
|
{
|
|
|
|
|
2017-07-18 15:19:16 +02:00
|
|
|
private $previousLocaleSetting = null;
|
|
|
|
|
2021-10-27 04:39:47 +02:00
|
|
|
protected function setUp(): void
|
2016-12-16 05:34:21 +01:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2017-07-18 15:19:16 +02:00
|
|
|
// clear the previous locale setting
|
|
|
|
$this->previousLocaleSetting = null;
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
// Set test handler
|
|
|
|
ShortcodeParser::get('htmltest')
|
2020-04-20 19:58:09 +02:00
|
|
|
->register('test_shortcode', [TestShortcode::class, 'handle_shortcode']);
|
2016-12-16 05:34:21 +01:00
|
|
|
ShortcodeParser::set_active('htmltest');
|
|
|
|
}
|
|
|
|
|
2021-10-27 04:39:47 +02:00
|
|
|
protected function tearDown(): void
|
2016-12-16 05:34:21 +01:00
|
|
|
{
|
2017-07-18 15:19:16 +02:00
|
|
|
|
|
|
|
// If a test sets the locale, reset it on teardown
|
|
|
|
if ($this->previousLocaleSetting) {
|
|
|
|
setlocale(LC_CTYPE, $this->previousLocaleSetting);
|
|
|
|
}
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
ShortcodeParser::set_active('default');
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test {@link Text->LimitCharacters()}
|
2016-06-17 08:49:23 +02:00
|
|
|
*/
|
2016-12-16 05:34:21 +01:00
|
|
|
public function providerLimitCharacters()
|
|
|
|
{
|
|
|
|
// HTML characters are stripped safely
|
|
|
|
return [
|
2020-09-10 07:08:13 +02:00
|
|
|
['The little brown fox jumped over the lazy cow.', 'The little brown fox…'],
|
2016-12-16 05:34:21 +01:00
|
|
|
['<p>Short & Sweet</p>', 'Short & Sweet'],
|
2020-09-10 07:08:13 +02:00
|
|
|
['This text contains & in it', 'This text contains &…'],
|
2016-12-16 05:34:21 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test {@link DBHTMLText->LimitCharacters()}
|
|
|
|
*
|
|
|
|
* @dataProvider providerLimitCharacters
|
|
|
|
* @param string $originalValue
|
|
|
|
* @param string $expectedValue
|
2016-06-17 08:49:23 +02:00
|
|
|
*/
|
2016-12-16 05:34:21 +01:00
|
|
|
public function testLimitCharacters($originalValue, $expectedValue)
|
|
|
|
{
|
|
|
|
$textObj = DBField::create_field('HTMLFragment', $originalValue);
|
|
|
|
$result = $textObj->obj('LimitCharacters')->forTemplate();
|
|
|
|
$this->assertEquals($expectedValue, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function providerLimitCharactersToClosestWord()
|
|
|
|
{
|
|
|
|
// HTML is converted safely to plain text
|
|
|
|
return [
|
|
|
|
// Standard words limited, ellipsis added if truncated
|
2020-09-10 07:08:13 +02:00
|
|
|
['<p>Lorem ipsum dolor sit amet</p>', 24, 'Lorem ipsum dolor sit…'],
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Complete words less than the character limit don't get truncated, ellipsis not added
|
|
|
|
['<p>Lorem ipsum</p>', 24, 'Lorem ipsum'],
|
|
|
|
['<p>Lorem</p>', 24, 'Lorem'],
|
|
|
|
['', 24, ''], // No words produces nothing!
|
|
|
|
|
|
|
|
// Special characters are encoded safely
|
|
|
|
['Nice & Easy', 24, 'Nice & Easy'],
|
|
|
|
|
|
|
|
// HTML is safely converted to plain text
|
2020-09-10 07:08:13 +02:00
|
|
|
['<p>Lorem ipsum dolor sit amet</p>', 24, 'Lorem ipsum dolor sit…'],
|
|
|
|
['<p><span>Lorem ipsum dolor sit amet</span></p>', 24, 'Lorem ipsum dolor sit…'],
|
2016-12-16 05:34:21 +01:00
|
|
|
['<p>Lorem ipsum</p>', 24, 'Lorem ipsum'],
|
2020-09-10 07:08:13 +02:00
|
|
|
['Lorem & ipsum dolor sit amet', 24, 'Lorem & ipsum dolor sit…']
|
2016-12-16 05:34:21 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test {@link DBHTMLText->LimitCharactersToClosestWord()}
|
|
|
|
*
|
|
|
|
* @dataProvider providerLimitCharactersToClosestWord
|
|
|
|
*
|
|
|
|
* @param string $originalValue Raw string input
|
|
|
|
* @param int $limit
|
|
|
|
* @param string $expectedValue Expected template value
|
|
|
|
*/
|
|
|
|
public function testLimitCharactersToClosestWord($originalValue, $limit, $expectedValue)
|
|
|
|
{
|
|
|
|
$textObj = DBField::create_field('HTMLFragment', $originalValue);
|
|
|
|
$result = $textObj->obj('LimitCharactersToClosestWord', [$limit])->forTemplate();
|
|
|
|
$this->assertEquals($expectedValue, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerSummary()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
'<p>Should strip <b>tags, but leave</b> text</p>',
|
|
|
|
50,
|
|
|
|
'Should strip tags, but leave text',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// Line breaks are preserved
|
|
|
|
'<p>Unclosed tags <br>should not phase it</p>',
|
|
|
|
50,
|
|
|
|
"Unclosed tags <br />\nshould not phase it",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// Paragraphs converted to linebreak
|
|
|
|
'<p>Second paragraph</p><p>should not cause errors or appear in output</p>',
|
|
|
|
50,
|
|
|
|
"Second paragraph<br />\n<br />\nshould not cause errors or appear in output",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'<img src="hello" /><p>Second paragraph</p><p>should not cause errors or appear in output</p>',
|
|
|
|
50,
|
|
|
|
"Second paragraph<br />\n<br />\nshould not cause errors or appear in output",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
' <img src="hello" /><p>Second paragraph</p><p>should not cause errors or appear in output</p>',
|
|
|
|
50,
|
|
|
|
"Second paragraph<br />\n<br />\nshould not cause errors or appear in output",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'<p><img src="remove me">example <img src="include me">text words hello<img src="hello"></p>',
|
|
|
|
50,
|
|
|
|
'example text words hello',
|
|
|
|
],
|
|
|
|
|
|
|
|
// Shorter limits
|
|
|
|
[
|
|
|
|
'<p>A long paragraph should be cut off if limit is set</p>',
|
|
|
|
5,
|
2020-09-10 07:08:13 +02:00
|
|
|
'A long paragraph should be…',
|
2016-12-16 05:34:21 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'<p>No matter <i>how many <b>tags</b></i> are in it</p>',
|
|
|
|
5,
|
2020-09-10 07:08:13 +02:00
|
|
|
'No matter how many tags…',
|
2016-12-16 05:34:21 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'<p>A sentence is. nicer than hard limits</p>',
|
|
|
|
5,
|
|
|
|
'A sentence is.',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerSummary
|
|
|
|
* @param string $originalValue
|
|
|
|
* @param int $limit
|
|
|
|
* @param string $expectedValue
|
|
|
|
*/
|
|
|
|
public function testSummary($originalValue, $limit, $expectedValue)
|
|
|
|
{
|
|
|
|
$textObj = DBField::create_field('HTMLFragment', $originalValue);
|
|
|
|
$result = $textObj->obj('Summary', [$limit])->forTemplate();
|
|
|
|
$this->assertEquals($expectedValue, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSummaryEndings()
|
|
|
|
{
|
2020-04-20 19:58:09 +02:00
|
|
|
$cases = [
|
2016-12-16 05:34:21 +01:00
|
|
|
'...',
|
|
|
|
' -> more',
|
|
|
|
''
|
2020-04-20 19:58:09 +02:00
|
|
|
];
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
$orig = '<p>Cut it off, cut it off</p>';
|
|
|
|
$match = 'Cut it off, cut';
|
|
|
|
|
|
|
|
foreach ($cases as $add) {
|
|
|
|
$textObj = DBField::create_field('HTMLFragment', $orig);
|
|
|
|
$result = $textObj->obj('Summary', [4, $add])->forTemplate();
|
2018-01-16 19:39:30 +01:00
|
|
|
$this->assertEquals($match . Convert::raw2xml($add), $result);
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function providerFirstSentence()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
// Same behaviour as DBTextTest
|
|
|
|
['', ''],
|
|
|
|
['First sentence.', 'First sentence.'],
|
|
|
|
['First sentence. Second sentence', 'First sentence.'],
|
|
|
|
['First sentence? Second sentence', 'First sentence?'],
|
|
|
|
['First sentence! Second sentence', 'First sentence!'],
|
|
|
|
|
|
|
|
// DBHTHLText strips HTML first
|
|
|
|
['<br />First sentence.', 'First sentence.'],
|
|
|
|
['<p>First sentence. Second sentence. Third sentence</p>', 'First sentence.'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerFirstSentence
|
|
|
|
* @param string $originalValue
|
|
|
|
* @param string $expectedValue
|
|
|
|
*/
|
|
|
|
public function testFirstSentence($originalValue, $expectedValue)
|
|
|
|
{
|
|
|
|
$textObj = DBField::create_field('HTMLFragment', $originalValue);
|
|
|
|
$result = $textObj->obj('FirstSentence')->forTemplate();
|
|
|
|
$this->assertEquals($expectedValue, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCreate()
|
|
|
|
{
|
2017-05-17 07:40:13 +02:00
|
|
|
/** @var DBHTMLText $field */
|
|
|
|
$field = Injector::inst()->create("HTMLFragment(['whitelist' => 'link'])", 'MyField');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(['link'], $field->getWhitelist());
|
2017-05-17 07:40:13 +02:00
|
|
|
$field = Injector::inst()->create("HTMLFragment(['whitelist' => 'link,a'])", 'MyField');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(['link', 'a'], $field->getWhitelist());
|
2017-05-17 07:40:13 +02:00
|
|
|
$field = Injector::inst()->create("HTMLFragment(['whitelist' => ['link', 'a']])", 'MyField');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(['link', 'a'], $field->getWhitelist());
|
2017-05-17 07:40:13 +02:00
|
|
|
$field = Injector::inst()->create("HTMLFragment", 'MyField');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEmpty($field->getWhitelist());
|
|
|
|
|
|
|
|
// Test shortcodes
|
2017-05-17 07:40:13 +02:00
|
|
|
$field = Injector::inst()->create("HTMLFragment(['shortcodes' => true])", 'MyField');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(true, $field->getProcessShortcodes());
|
2017-05-17 07:40:13 +02:00
|
|
|
$field = Injector::inst()->create("HTMLFragment(['shortcodes' => false])", 'MyField');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(false, $field->getProcessShortcodes());
|
|
|
|
|
|
|
|
// Mix options
|
2017-05-17 07:40:13 +02:00
|
|
|
$field = Injector::inst()->create("HTMLFragment(['shortcodes' => true, 'whitelist' => ['a'])", 'MyField');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(true, $field->getProcessShortcodes());
|
|
|
|
$this->assertEquals(['a'], $field->getWhitelist());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerToPlain()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
'<p><img />Lots of <strong>HTML <i>nested</i></strong> tags',
|
|
|
|
'Lots of HTML nested tags',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'<p>Multi</p><p>Paragraph<br>Also has multilines.</p>',
|
|
|
|
"Multi\n\nParagraph\nAlso has multilines.",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'<p>Collapses</p><p></p><p>Excessive<br/><br /><br>Newlines</p>',
|
|
|
|
"Collapses\n\nExcessive\n\nNewlines",
|
2020-07-09 03:33:43 +02:00
|
|
|
],
|
|
|
|
'Unicode character that could be confused for a line break' =>[
|
|
|
|
'充美好实的一天',
|
|
|
|
'充美好实的一天'
|
2016-12-16 05:34:21 +01:00
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerToPlain
|
|
|
|
* @param string $html
|
|
|
|
* @param string $plain
|
|
|
|
*/
|
|
|
|
public function testToPlain($html, $plain)
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var DBHTMLText $textObj
|
|
|
|
*/
|
|
|
|
$textObj = DBField::create_field('HTMLFragment', $html);
|
|
|
|
$this->assertEquals($plain, $textObj->Plain());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* each test is in the format input, charactere limit, highlight, expected output
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function providerContextSummary()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
'This is some text. It is a test',
|
|
|
|
20,
|
|
|
|
'test',
|
2020-09-10 07:08:13 +02:00
|
|
|
'… text. It is a <mark>test</mark>'
|
2016-12-16 05:34:21 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
// Retains case of original string
|
|
|
|
'This is some test text. Test test what if you have multiple keywords.',
|
|
|
|
50,
|
|
|
|
'some test',
|
2017-09-05 01:42:08 +02:00
|
|
|
'This is <mark>some</mark> <mark>test</mark> text.'
|
2020-09-10 07:08:13 +02:00
|
|
|
. ' <mark>Test</mark> <mark>test</mark> what if you have…'
|
2016-12-16 05:34:21 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'Here is some text & HTML included',
|
|
|
|
20,
|
|
|
|
'html',
|
2020-09-10 07:08:13 +02:00
|
|
|
'… text & <mark>HTML</mark> inc…'
|
2016-12-16 05:34:21 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'A dog ate a cat while looking at a Foobar',
|
|
|
|
100,
|
|
|
|
'a',
|
|
|
|
// test that it does not highlight too much (eg every a)
|
|
|
|
'A dog ate a cat while looking at a Foobar',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'A dog ate a cat while looking at a Foobar',
|
|
|
|
100,
|
|
|
|
'ate',
|
|
|
|
// it should highlight 3 letters or more.
|
2017-09-05 01:42:08 +02:00
|
|
|
'A dog <mark>ate</mark> a cat while looking at a Foobar',
|
2016-12-16 05:34:21 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
// HTML Content is plain-textified, and incorrect tags removed
|
|
|
|
[
|
2017-09-05 01:42:08 +02:00
|
|
|
'<p>A dog ate a cat while <mark>looking</mark> at a Foobar</p>',
|
2016-12-16 05:34:21 +01:00
|
|
|
100,
|
|
|
|
'ate',
|
|
|
|
// it should highlight 3 letters or more.
|
2017-09-05 01:42:08 +02:00
|
|
|
'A dog <mark>ate</mark> a cat while looking at a Foobar',
|
2019-07-19 02:43:20 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'<p>This is a lot of text before this but really, this is a test sentence</p>
|
|
|
|
<p>with about more stuff after the line break</p>',
|
|
|
|
35,
|
|
|
|
'test',
|
2020-09-10 07:08:13 +02:00
|
|
|
'… really, this is a <mark>test</mark> sentence…'
|
2019-07-19 02:43:20 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'<p>This is a lot of text before this but really, this is a test sentence</p>
|
|
|
|
<p>with about more stuff after the line break</p>',
|
|
|
|
50,
|
|
|
|
'with',
|
2020-09-10 07:08:13 +02:00
|
|
|
'… sentence<br />
|
2019-07-19 02:43:20 +02:00
|
|
|
<br />
|
2020-09-10 07:08:13 +02:00
|
|
|
<mark>with</mark> about more stuff…'
|
2016-12-16 05:34:21 +01:00
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerContextSummary
|
|
|
|
* @param string $originalValue Input
|
2021-12-13 09:05:33 +01:00
|
|
|
* @param int $limit Number of characters
|
2016-12-16 05:34:21 +01:00
|
|
|
* @param string $keywords Keywords to highlight
|
|
|
|
* @param string $expectedValue Expected output (XML encoded safely)
|
|
|
|
*/
|
|
|
|
public function testContextSummary($originalValue, $limit, $keywords, $expectedValue)
|
|
|
|
{
|
|
|
|
$text = DBField::create_field('HTMLFragment', $originalValue);
|
|
|
|
$result = $text->obj('ContextSummary', [$limit, $keywords])->forTemplate();
|
|
|
|
// it should highlight 3 letters or more.
|
|
|
|
$this->assertEquals($expectedValue, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRAW()
|
|
|
|
{
|
|
|
|
$data = DBField::create_field('HTMLFragment', 'This & This');
|
|
|
|
$this->assertEquals('This & This', $data->RAW());
|
|
|
|
|
|
|
|
$data = DBField::create_field('HTMLFragment', 'This & This');
|
|
|
|
$this->assertEquals('This & This', $data->RAW());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testXML()
|
|
|
|
{
|
|
|
|
$data = DBField::create_field('HTMLFragment', 'This & This');
|
|
|
|
$this->assertEquals('This & This', $data->XML());
|
|
|
|
$data = DBField::create_field('HTMLFragment', 'This & This');
|
|
|
|
$this->assertEquals('This &amp; This', $data->XML());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testHTML()
|
|
|
|
{
|
|
|
|
$data = DBField::create_field('HTMLFragment', 'This & This');
|
|
|
|
$this->assertEquals('This & This', $data->HTML());
|
|
|
|
$data = DBField::create_field('HTMLFragment', 'This & This');
|
|
|
|
$this->assertEquals('This &amp; This', $data->HTML());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testJS()
|
|
|
|
{
|
|
|
|
$data = DBField::create_field('HTMLText', '"this is & test"');
|
|
|
|
$this->assertEquals('\"this is \x26amp; test\"', $data->JS());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testATT()
|
|
|
|
{
|
|
|
|
// HTML Fragment
|
|
|
|
$data = DBField::create_field('HTMLFragment', '"this is a test"');
|
|
|
|
$this->assertEquals('"this is a test"', $data->ATT());
|
|
|
|
|
|
|
|
// HTML Text (passes shortcodes + tidy)
|
|
|
|
$data = DBField::create_field('HTMLText', '"');
|
|
|
|
$this->assertEquals('"', $data->ATT());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testShortcodesProcessed()
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var DBHTMLText $obj
|
|
|
|
*/
|
|
|
|
$obj = DBField::create_field(
|
|
|
|
'HTMLText',
|
|
|
|
'<p>Some content <strong>[test_shortcode]</strong> with shortcode</p>'
|
|
|
|
);
|
|
|
|
// Basic DBField methods process shortcodes
|
|
|
|
$this->assertEquals(
|
|
|
|
'Some content shortcode content with shortcode',
|
|
|
|
$obj->Plain()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p>Some content <strong>shortcode content</strong> with shortcode</p>',
|
|
|
|
$obj->RAW()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p>Some content <strong>shortcode content</strong> with shortcode</p>',
|
|
|
|
$obj->XML()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p>Some content <strong>shortcode content</strong> with shortcode</p>',
|
|
|
|
$obj->HTML()
|
|
|
|
);
|
|
|
|
// Test summary methods
|
|
|
|
$this->assertEquals(
|
2020-09-10 07:08:13 +02:00
|
|
|
'Some content shortcode…',
|
2016-12-16 05:34:21 +01:00
|
|
|
$obj->Summary(3)
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'Some content shortcode content with shortcode',
|
|
|
|
$obj->LimitSentences(1)
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
2020-09-10 07:08:13 +02:00
|
|
|
'Some content shortco…',
|
2016-12-16 05:34:21 +01:00
|
|
|
$obj->LimitCharacters(20)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testExists()
|
|
|
|
{
|
|
|
|
$h = new DBHTMLText();
|
|
|
|
$h->setValue("");
|
|
|
|
$this->assertFalse($h->exists());
|
|
|
|
$h->setValue("<p>content</p>");
|
|
|
|
$this->assertTrue($h->exists());
|
|
|
|
}
|
|
|
|
|
|
|
|
function testWhitelist()
|
|
|
|
{
|
|
|
|
$textObj = new DBHTMLText('Test', ['whitelist'=> 'meta,link']);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<meta content="Keep"><link href="Also Keep">',
|
|
|
|
$textObj->whitelistContent('<meta content="Keep"><p>Remove</p><link href="Also Keep" />Remove Text'),
|
|
|
|
'Removes any elements not in whitelist excluding text elements'
|
|
|
|
);
|
|
|
|
|
|
|
|
$textObj = new DBHTMLText('Test', ['whitelist'=> 'meta,link,text()']);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<meta content="Keep"><link href="Also Keep">Keep Text',
|
|
|
|
$textObj->whitelistContent('<meta content="Keep"><p>Remove</p><link href="Also Keep" />Keep Text'),
|
|
|
|
'Removes any elements not in whitelist including text elements'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testShortCodeParsedInRAW()
|
|
|
|
{
|
|
|
|
$parser = ShortcodeParser::get('HTMLTextTest');
|
|
|
|
$parser->register(
|
|
|
|
'shortcode',
|
|
|
|
function ($arguments, $content, $parser, $tagName, $extra) {
|
|
|
|
return 'replaced';
|
|
|
|
}
|
|
|
|
);
|
|
|
|
ShortcodeParser::set_active('HTMLTextTest');
|
|
|
|
/**
|
|
|
|
* @var DBHTMLText $field
|
|
|
|
*/
|
|
|
|
$field = DBField::create_field('HTMLText', '<p>[shortcode]</p>');
|
|
|
|
$this->assertEquals('<p>replaced</p>', $field->RAW());
|
|
|
|
$this->assertEquals('<p>replaced</p>', (string)$field);
|
|
|
|
|
|
|
|
$field->setOptions(
|
2020-04-20 19:58:09 +02:00
|
|
|
[
|
2016-12-16 05:34:21 +01:00
|
|
|
'shortcodes' => false,
|
2020-04-20 19:58:09 +02:00
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals('<p>[shortcode]</p>', $field->RAW());
|
|
|
|
$this->assertEquals('<p>[shortcode]</p>', (string)$field);
|
|
|
|
|
|
|
|
|
|
|
|
ShortcodeParser::set_active('default');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testShortCodeParsedInTemplateHelpers()
|
|
|
|
{
|
|
|
|
$parser = ShortcodeParser::get('HTMLTextTest');
|
|
|
|
$parser->register(
|
|
|
|
'shortcode',
|
|
|
|
function ($arguments, $content, $parser, $tagName, $extra) {
|
|
|
|
return 'Replaced short code with this. <a href="home">home</a>';
|
|
|
|
}
|
|
|
|
);
|
|
|
|
ShortcodeParser::set_active('HTMLTextTest');
|
|
|
|
/**
|
|
|
|
* @var DBHTMLText $field
|
|
|
|
*/
|
|
|
|
$field = DBField::create_field('HTMLText', '<p>[shortcode]</p>');
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p>Replaced short code with this. <a href="home">home</a></p>',
|
|
|
|
$field->HTMLATT()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'%3Cp%3EReplaced+short+code+with+this.+%3Ca+href%3D%22home%22%3Ehome%3C%2Fa%3E%3C%2Fp%3E',
|
|
|
|
$field->URLATT()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'%3Cp%3EReplaced%20short%20code%20with%20this.%20%3Ca%20href%3D%22home%22%3Ehome%3C%2Fa%3E%3C%2Fp%3E',
|
|
|
|
$field->RAWURLATT()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p>Replaced short code with this. <a href="home">home</a></p>',
|
|
|
|
$field->ATT()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p>Replaced short code with this. <a href="home">home</a></p>',
|
|
|
|
$field->RAW()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'\x3cp\x3eReplaced short code with this. \x3ca href=\"home\"\x3ehome\x3c/a\x3e\x3c/p\x3e',
|
|
|
|
$field->JS()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p>Replaced short code with this. <a href="home">home</a></p>',
|
|
|
|
$field->HTML()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p>Replaced short code with this. <a href="home">home</a></p>',
|
|
|
|
$field->XML()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'Repl...',
|
|
|
|
$field->LimitCharacters(4, '...')
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'Replaced...',
|
|
|
|
$field->LimitCharactersToClosestWord(10, '...')
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'Replaced...',
|
|
|
|
$field->LimitWordCount(1, '...')
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<p>replaced short code with this. <a href="home">home</a></p>',
|
|
|
|
$field->LowerCase()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'<P>REPLACED SHORT CODE WITH THIS. <A HREF="HOME">HOME</A></P>',
|
|
|
|
$field->UpperCase()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'Replaced short code with this. home',
|
|
|
|
$field->Plain()
|
|
|
|
);
|
|
|
|
Config::nest();
|
2017-05-17 07:40:13 +02:00
|
|
|
Director::config()->set('alternate_base_url', 'http://example.com/');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
'<p>Replaced short code with this. <a href="http://example.com/home">home</a></p>',
|
|
|
|
$field->AbsoluteLinks()
|
|
|
|
);
|
|
|
|
Config::unnest();
|
|
|
|
$this->assertEquals(
|
|
|
|
'Replaced short code with this.',
|
|
|
|
$field->LimitSentences(1)
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'Replaced short code with this.',
|
|
|
|
$field->FirstSentence()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
2020-09-10 07:08:13 +02:00
|
|
|
'Replaced short…',
|
2016-12-16 05:34:21 +01:00
|
|
|
$field->Summary(2)
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
'Replaced short code with this. home',
|
|
|
|
$field->FirstParagraph()
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
2017-09-05 01:42:08 +02:00
|
|
|
'Replaced <mark>short</mark> <mark>code</mark> with this. home',
|
2016-12-16 05:34:21 +01:00
|
|
|
$field->ContextSummary(500, 'short code')
|
|
|
|
);
|
|
|
|
|
|
|
|
ShortcodeParser::set_active('default');
|
|
|
|
}
|
2017-07-18 15:19:16 +02:00
|
|
|
|
|
|
|
public function testValidUtf8()
|
|
|
|
{
|
|
|
|
// Install a UTF-8 locale
|
|
|
|
$this->previousLocaleSetting = setlocale(LC_CTYPE, 0);
|
2020-04-20 19:58:09 +02:00
|
|
|
$locales = ['en_US.UTF-8', 'en_NZ.UTF-8', 'de_DE.UTF-8'];
|
2017-07-18 15:19:16 +02:00
|
|
|
$localeInstalled = false;
|
|
|
|
foreach ($locales as $locale) {
|
|
|
|
if ($localeInstalled = setlocale(LC_CTYPE, $locale)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the system doesn't have any of the UTF-8 locales, exit early
|
|
|
|
if ($localeInstalled === false) {
|
|
|
|
$this->markTestIncomplete('Unable to run this test because of missing locale!');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$problematicText = html_entity_decode('<p>This is a Test with non-breaking space!</p>', ENT_COMPAT, 'UTF-8');
|
|
|
|
|
|
|
|
$textObj = new DBHTMLText('Test');
|
|
|
|
$textObj->setValue($problematicText);
|
|
|
|
|
|
|
|
$this->assertTrue(mb_check_encoding($textObj->FirstSentence(), 'UTF-8'));
|
|
|
|
$this->assertTrue(mb_check_encoding($textObj->Summary(), 'UTF-8'));
|
|
|
|
}
|
2009-02-12 10:38:43 +01:00
|
|
|
}
|