From 71e647782764184e3aab4faffe6d99176758979f Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Thu, 22 Mar 2018 16:48:55 +0200 Subject: [ci skip] 3.1.8 release --- tests/codeigniter/libraries/Typography_test.php | 182 ------------------------ 1 file changed, 182 deletions(-) delete mode 100644 tests/codeigniter/libraries/Typography_test.php (limited to 'tests/codeigniter/libraries/Typography_test.php') diff --git a/tests/codeigniter/libraries/Typography_test.php b/tests/codeigniter/libraries/Typography_test.php deleted file mode 100644 index e6ee7b05c..000000000 --- a/tests/codeigniter/libraries/Typography_test.php +++ /dev/null @@ -1,182 +0,0 @@ -type = new CI_Typography(); - $this->ci_instance('type', $this->type); - } - - // -------------------------------------------------------------------- - - /** - * Tests the format_characters() function. - * - * this can and should grow. - */ - public function test_format_characters() - { - $strs = array( - '"double quotes"' => '“double quotes”', - '"testing" in "theory" that is' => '“testing” in “theory” that is', - "Here's what I'm" => 'Here’s what I’m', - '&' => '&', - '&' => '&', - ' ' => ' ', - '--' => '—', - 'foo...' => 'foo…', - 'foo..' => 'foo..', - 'foo...bar.' => 'foo…bar.', - 'test. new' => 'test.  new', - ); - - foreach ($strs as $str => $expected) - { - $this->assertEquals($expected, $this->type->format_characters($str)); - } - } - - // -------------------------------------------------------------------- - - public function test_nl2br_except_pre() - { - $str = << -I am inside a pre tag. Please don't mess with me. - -k? - - -That's my story and I'm sticking to it. - -The End. -EOH; - - $expected = << -
-I like to skip.
-
-Jump
-
-and sing.
-
-
-I am inside a pre tag.  Please don't mess with me.
-
-k?
-

-
-That's my story and I'm sticking to it.
-
-The End. -EOH; - - $this->assertEquals($expected, $this->type->nl2br_except_pre($str)); - } - - // -------------------------------------------------------------------- - - public function test_auto_typography() - { - $this->_blank_string(); - $this->_standardize_new_lines(); - $this->_reduce_linebreaks(); - $this->_remove_comments(); - $this->_protect_pre(); - $this->_no_opening_block(); - $this->_protect_braced_quotes(); - } - - // -------------------------------------------------------------------- - - private function _blank_string() - { - // Test blank string - $this->assertEquals('', $this->type->auto_typography('')); - } - - // -------------------------------------------------------------------- - - private function _standardize_new_lines() - { - $strs = array( - "My string\rhas return characters" => "

My string
\nhas return characters

", - 'This one does not!' => '

This one does not!

' - ); - - foreach ($strs as $str => $expect) - { - $this->assertEquals($expect, $this->type->auto_typography($str)); - } - } - - // -------------------------------------------------------------------- - - private function _reduce_linebreaks() - { - $str = "This has way too many linebreaks.\n\n\n\nSee?"; - $expect = "

This has way too many linebreaks.

\n\n

See?

"; - - $this->assertEquals($expect, $this->type->auto_typography($str, TRUE)); - } - - // -------------------------------------------------------------------- - - private function _remove_comments() - { - $str = ' But no!'; - $expect = '

  But no!

'; - - $this->assertEquals($expect, $this->type->auto_typography($str)); - } - - // -------------------------------------------------------------------- - - private function _protect_pre() - { - $str = '

My Sentence

var_dump($this);
'; - $expect = '

My Sentence

var_dump($this);
'; - - $this->assertEquals($expect, $this->type->auto_typography($str)); - } - - // -------------------------------------------------------------------- - - private function _no_opening_block() - { - $str = 'My Sentence
var_dump($this);
'; - $expect = '

My Sentence

var_dump($this);
'; - - $this->assertEquals($expect, $this->type->auto_typography($str)); - } - - // -------------------------------------------------------------------- - - public function _protect_braced_quotes() - { - $this->type->protect_braced_quotes = TRUE; - - $str = 'Test {parse="foobar"}'; - $expect = '

Test {parse="foobar"}

'; - - $this->assertEquals($expect, $this->type->auto_typography($str)); - - $this->type->protect_braced_quotes = FALSE; - - $str = 'Test {parse="foobar"}'; - $expect = '

Test {parse=“foobar”}

'; - - $this->assertEquals($expect, $this->type->auto_typography($str)); - } - -} \ No newline at end of file -- cgit v1.2.3-24-g4f1b