123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- /**
- * @group formatting
- */
- class Tests_Formatting_Autop extends WP_UnitTestCase {
- //From ticket http://core.trac.wordpress.org/ticket/11008
- function test_first_post() {
- $expected = '<p>Welcome to WordPress! This post contains important information. After you read it, you can make it private to hide it from visitors but still have the information handy for future reference.</p>
- <p>First things first:</p>
- <ul>
- <li><a href="%1$s" title="Subscribe to the WordPress mailing list for Release Notifications">Subscribe to the WordPress mailing list for release notifications</a></li>
- </ul>
- <p>As a subscriber, you will receive an email every time an update is available (and only then). This will make it easier to keep your site up to date, and secure from evildoers.<br />
- When a new version is released, <a href="%2$s" title="If you are already logged in, this will take you directly to the Dashboard">log in to the Dashboard</a> and follow the instructions.<br />
- Upgrading is a couple of clicks!</p>
- <p>Then you can start enjoying the WordPress experience:</p>
- <ul>
- <li>Edit your personal information at <a href="%3$s" title="Edit settings like your password, your display name and your contact information">Users › Your Profile</a></li>
- <li>Start publishing at <a href="%4$s" title="Create a new post">Posts › Add New</a> and at <a href="%5$s" title="Create a new page">Pages › Add New</a></li>
- <li>Browse and install plugins at <a href="%6$s" title="Browse and install plugins at the official WordPress repository directly from your Dashboard">Plugins › Add New</a></li>
- <li>Browse and install themes at <a href="%7$s" title="Browse and install themes at the official WordPress repository directly from your Dashboard">Appearance › Add New Themes</a></li>
- <li>Modify and prettify your website’s links at <a href="%8$s" title="For example, select a link structure like: http://example.com/1999/12/post-name">Settings › Permalinks</a></li>
- <li>Import content from another system or WordPress site at <a href="%9$s" title="WordPress comes with importers for the most common publishing systems">Tools › Import</a></li>
- <li>Find answers to your questions at the <a href="%10$s" title="The official WordPress documentation, maintained by the WordPress community">WordPress Codex</a></li>
- </ul>
- <p>To keep this post for reference, <a href="%11$s" title="Click to edit the content and settings of this post">click to edit it</a>, go to the Publish box and change its Visibility from Public to Private.</p>
- <p>Thank you for selecting WordPress. We wish you happy publishing!</p>
- <p>PS. Not yet subscribed for update notifications? <a href="%1$s" title="Subscribe to the WordPress mailing list for Release Notifications">Do it now!</a></p>
- ';
- $test_data = '
- Welcome to WordPress! This post contains important information. After you read it, you can make it private to hide it from visitors but still have the information handy for future reference.
- First things first:
- <ul>
- <li><a href="%1$s" title="Subscribe to the WordPress mailing list for Release Notifications">Subscribe to the WordPress mailing list for release notifications</a></li>
- </ul>
- As a subscriber, you will receive an email every time an update is available (and only then). This will make it easier to keep your site up to date, and secure from evildoers.
- When a new version is released, <a href="%2$s" title="If you are already logged in, this will take you directly to the Dashboard">log in to the Dashboard</a> and follow the instructions.
- Upgrading is a couple of clicks!
- Then you can start enjoying the WordPress experience:
- <ul>
- <li>Edit your personal information at <a href="%3$s" title="Edit settings like your password, your display name and your contact information">Users › Your Profile</a></li>
- <li>Start publishing at <a href="%4$s" title="Create a new post">Posts › Add New</a> and at <a href="%5$s" title="Create a new page">Pages › Add New</a></li>
- <li>Browse and install plugins at <a href="%6$s" title="Browse and install plugins at the official WordPress repository directly from your Dashboard">Plugins › Add New</a></li>
- <li>Browse and install themes at <a href="%7$s" title="Browse and install themes at the official WordPress repository directly from your Dashboard">Appearance › Add New Themes</a></li>
- <li>Modify and prettify your website’s links at <a href="%8$s" title="For example, select a link structure like: http://example.com/1999/12/post-name">Settings › Permalinks</a></li>
- <li>Import content from another system or WordPress site at <a href="%9$s" title="WordPress comes with importers for the most common publishing systems">Tools › Import</a></li>
- <li>Find answers to your questions at the <a href="%10$s" title="The official WordPress documentation, maintained by the WordPress community">WordPress Codex</a></li>
- </ul>
- To keep this post for reference, <a href="%11$s" title="Click to edit the content and settings of this post">click to edit it</a>, go to the Publish box and change its Visibility from Public to Private.
- Thank you for selecting WordPress. We wish you happy publishing!
- PS. Not yet subscribed for update notifications? <a href="%1$s" title="Subscribe to the WordPress mailing list for Release Notifications">Do it now!</a>
- ';
- // On windows environments, the EOL-style is \r\n
- $expected = str_replace( "\r\n", "\n", $expected);
- $this->assertEquals($expected, wpautop($test_data));
- }
- /**
- * wpautop() Should not alter the contents of "<pre>" elements
- *
- * @ticket 19855
- */
- public function test_skip_pre_elements() {
- $code = file_get_contents( DIR_TESTDATA . '/formatting/sizzle.js' );
- $code = str_replace( "\r", '', $code );
- $code = htmlentities( $code );
- // Not wrapped in <p> tags
- $str = "<pre>$code</pre>";
- $this->assertEquals( $str, trim( wpautop( $str ) ) );
- // Text before/after is wrapped in <p> tags
- $str = "Look at this code\n\n<pre>$code</pre>\n\nIsn't that cool?";
- // Expected text after wpautop
- $expected = '<p>Look at this code</p>' . "\n<pre>" . $code . "</pre>\n" . '<p>Isn\'t that cool?</p>';
- $this->assertEquals( $expected, trim( wpautop( $str ) ) );
- // Make sure HTML breaks are maintained if manually inserted
- $str = "Look at this code\n\n<pre>Line1<br />Line2<br>Line3<br/>Line4\nActual Line 2\nActual Line 3</pre>\n\nCool, huh?";
- $expected = "<p>Look at this code</p>\n<pre>Line1<br />Line2<br>Line3<br/>Line4\nActual Line 2\nActual Line 3</pre>\n<p>Cool, huh?</p>";
- $this->assertEquals( $expected, trim( wpautop( $str ) ) );
- }
- /**
- * wpautop() Should not add <br/> to "<input>" elements
- *
- * @ticket 16456
- */
- public function test_skip_input_elements() {
- $str = 'Username: <input type="text" id="username" name="username" /><br />Password: <input type="password" id="password1" name="password1" />';
- $this->assertEquals( "<p>$str</p>", trim( wpautop( $str ) ) );
- }
- }
|