Make WordPress Core

Ticket #33466: 33466-tests.diff

File 33466-tests.diff, 1.3 KB (added by miqrogroove, 9 years ago)
  • tests/phpunit/tests/formatting/Autop.php

     
    446446        }
    447447
    448448        /**
     449         * Do not pee on pre, script, style, textarea, etc.
     450         *
     451         * @ticket 33466
     452         * @dataProvider data_preformatted
     453         */
     454        function test_preformatted( $input, $output ) {
     455                return $this->assertEquals( $output, wpautop( $input ) );
     456        }
     457
     458        function data_preformatted() {
     459                return array(
     460                        array(
     461                                "<p>Hello</p>\n<pre>World\nDon't\n\nPee</pre>\n<p>Here.</p>\n",
     462                                "<p>Hello</p>\n<pre>World\nDon't\n\nPee</pre>\n<p>Here.</p>\n",
     463                        ),
     464                        array(
     465                                "<p>Hello</p>\n<script>World\nDon't\n\nPee</script>\n<p>Here.</p>\n",
     466                                "<p>Hello</p>\n<script>World\nDon't\n\nPee</script>\n<p>Here.</p>\n",
     467                        ),
     468                        array(
     469                                "<p>Hello</p>\n<style>World\nDon't\n\nPee</style>\n<p>Here.</p>\n",
     470                                "<p>Hello</p>\n<style>World\nDon't\n\nPee</style>\n<p>Here.</p>\n",
     471                        ),
     472                        array(
     473                                "<p>Hello</p>\n<textarea>\nWorld\nDon't\n\nPee</textarea>\n<p>Here.</p>\n",
     474                                "<p>Hello</p>\n<textarea>\nWorld\nDon't\n\nPee</textarea>\n<p>Here.</p>\n",
     475                        ),
     476                );
     477        }
     478
     479        /**
    449480         * wpautop() should not convert line breaks after <br /> tags
    450481         *
    451482         * @ticket 33377