post->create( array( 'post_status' => 'auto-draft' ) );
}
public function test_wp_publish_post() {
$draft_id = self::factory()->post->create(
array(
'post_status' => 'draft',
)
);
$post = get_post( $draft_id );
$this->assertSame( 'draft', $post->post_status );
wp_publish_post( $draft_id );
$post = get_post( $draft_id );
$this->assertSame( 'publish', $post->post_status );
}
/**
* @ticket 22944
* @covers ::wp_insert_post
*/
public function test_wp_insert_post_and_wp_publish_post_with_future_date() {
$future_date = gmdate( 'Y-m-d H:i:s', time() + 10000000 );
$post_id = self::factory()->post->create(
array(
'post_status' => 'publish',
'post_date' => $future_date,
)
);
$post = get_post( $post_id );
$this->assertSame( 'future', $post->post_status );
$this->assertSame( $future_date, $post->post_date );
wp_publish_post( $post_id );
$post = get_post( $post_id );
$this->assertSame( 'publish', $post->post_status );
$this->assertSame( $future_date, $post->post_date );
}
/**
* @ticket 48145
* @covers ::wp_insert_post
*/
public function test_wp_insert_post_should_default_to_publish_if_post_date_is_within_59_seconds_from_current_time() {
$future_date = gmdate( 'Y-m-d H:i:s', time() + 59 );
$post_id = self::factory()->post->create(
array(
'post_date' => $future_date,
)
);
$post = get_post( $post_id );
$this->assertSame( 'publish', $post->post_status );
$this->assertSame( $future_date, $post->post_date );
}
/**
* @ticket 22944
* @covers ::wp_update_post
*/
public function test_wp_update_post_with_content_filtering() {
kses_remove_filters();
$post_id = wp_insert_post(
array(
'post_title' => '',
)
);
$post = get_post( $post_id );
$this->assertSame( '', $post->post_title );
$this->assertSame( 'draft', $post->post_status );
kses_init_filters();
wp_update_post(
array(
'ID' => $post->ID,
'post_status' => 'publish',
)
);
kses_remove_filters();
$post = get_post( $post->ID );
$this->assertSame( 'Test', $post->post_title );
}
/**
* @ticket 22944
*/
public function test_wp_publish_post_and_avoid_content_filtering() {
kses_remove_filters();
$post_id = wp_insert_post(
array(
'post_title' => '',
)
);
$post = get_post( $post_id );
$this->assertSame( '', $post->post_title );
$this->assertSame( 'draft', $post->post_status );
kses_init_filters();
wp_publish_post( $post->ID );
kses_remove_filters();
$post = get_post( $post->ID );
$this->assertSame( '', $post->post_title );
}
/**
* Ensure wp_publish_post does not add default category in error.
*
* @ticket 51292
*/
public function test_wp_publish_post_respects_current_categories() {
$post_id = self::$auto_draft_id;
$category_id = self::factory()->term->create( array( 'taxonomy' => 'category' ) );
wp_set_post_categories( $post_id, $category_id );
wp_publish_post( $post_id );
$post_categories = get_the_category( $post_id );
$this->assertCount( 1, $post_categories );
$this->assertSame(
$category_id,
$post_categories[0]->term_id,
'wp_publish_post replaced set category.'
);
}
/**
* Ensure wp_publish_post adds default category.
*
* @covers ::wp_publish_post
* @ticket 51292
*/
public function test_wp_publish_post_adds_default_category() {
$post_id = self::$auto_draft_id;
wp_publish_post( $post_id );
$post_categories = get_the_category( $post_id );
$this->assertCount( 1, $post_categories );
$this->assertSame(
(int) get_option( 'default_category' ),
$post_categories[0]->term_id,
'wp_publish_post failed to add default category.'
);
}
/**
* Ensure wp_publish_post adds default category when tagged.
*
* @covers ::wp_publish_post
* @ticket 51292
*/
public function test_wp_publish_post_adds_default_category_when_tagged() {
$post_id = self::$auto_draft_id;
$tag_id = self::factory()->term->create( array( 'taxonomy' => 'post_tag' ) );
wp_set_post_tags( $post_id, array( $tag_id ) );
wp_publish_post( $post_id );
$post_categories = get_the_category( $post_id );
$this->assertCount( 1, $post_categories );
$this->assertSame(
(int) get_option( 'default_category' ),
$post_categories[0]->term_id,
'wp_publish_post failed to add default category.'
);
}
/**
* Ensure wp_publish_post does not add default term in error.
*
* @covers ::wp_publish_post
* @ticket 51292
*/
public function test_wp_publish_post_respects_current_terms() {
// Create custom taxonomy to test with.
register_taxonomy(
'tax_51292',
'post',
array(
'hierarchical' => true,
'public' => true,
'default_term' => array(
'name' => 'Default 51292',
'slug' => 'default-51292',
),
)
);
$post_id = self::$auto_draft_id;
$term_id = self::factory()->term->create( array( 'taxonomy' => 'tax_51292' ) );
wp_set_object_terms( $post_id, array( $term_id ), 'tax_51292' );
wp_publish_post( $post_id );
$post_terms = get_the_terms( $post_id, 'tax_51292' );
$this->assertCount( 1, $post_terms );
$this->assertSame(
$term_id,
$post_terms[0]->term_id,
'wp_publish_post replaced set term for custom taxonomy.'
);
}
/**
* Ensure wp_publish_post adds default term.
*
* @covers ::wp_publish_post
* @ticket 51292
*/
public function test_wp_publish_post_adds_default_term() {
// Create custom taxonomy to test with.
register_taxonomy(
'tax_51292',
'post',
array(
'hierarchical' => true,
'public' => true,
'default_term' => array(
'name' => 'Default 51292',
'slug' => 'default-51292',
),
)
);
$post_id = self::$auto_draft_id;
wp_publish_post( $post_id );
$post_terms = get_the_terms( $post_id, 'tax_51292' );
$this->assertCount( 1, $post_terms );
$this->assertSame(
get_term_by( 'slug', 'default-51292', 'tax_51292' )->term_id,
$post_terms[0]->term_id,
'wp_publish_post failed to add default term for custom taxonomy.'
);
}
}