If a saving a post fails, remove any invalid characters (such as emoji) from the primary text fields, then try to save it again.

See #21212.



git-svn-id: https://develop.svn.wordpress.org/trunk@30346 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast
2014-11-14 21:33:50 +00:00
parent 6df14c1612
commit e1ca159011
2 changed files with 51 additions and 1 deletions

View File

@@ -1016,4 +1016,41 @@ class Tests_Post extends WP_UnitTestCase {
_unregister_post_type( 'post-type-1' );
_unregister_post_type( 'post-type-2' );
}
/**
* @ticket 21212
*/
function test_utf8mb3_post_saves_with_emoji() {
global $wpdb;
$_wpdb = new wpdb_exposed_methods_for_testing();
if ( 'utf8' !== $_wpdb->get_col_charset( $wpdb->posts, 'post_title' ) ) {
$this->markTestSkipped( 'This test is only useful with the utf8 character set' );
}
require_once( ABSPATH . '/wp-admin/includes/post.php' );
$post_id = $this->factory->post->create();
$data = array(
'post_ID' => $post_id,
'post_title' => "foo\xf0\x9f\x98\x88bar",
'post_content' => "foo\xf0\x9f\x98\x8ebaz",
'post_excerpt' => "foo\xf0\x9f\x98\x90bat"
);
$expected = array(
'post_title' => "foobar",
'post_content' => "foobaz",
'post_excerpt' => "foobat"
);
edit_post( $data );
$post = get_post( $post_id );
foreach( $expected as $field => $value ) {
$this->assertEquals( $post->$field, $value );
}
}
}