mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Running the taxonomy array through `array_unique()` is unnecessary when the function returns objects, because the associative keys already ensure uniqueness. This also fixes a bug when running `get_attachment_taxonomies()` in HHVM, which doesn't like casting objects to strings for the purposes of `array_unique()`. Props swissspidy. See #37368. git-svn-id: https://develop.svn.wordpress.org/trunk@38437 602fd350-edb4-49c9-b593-d223f7449a82
122 lines
3.6 KiB
PHP
122 lines
3.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group media
|
|
* @group taxonomy
|
|
*/
|
|
class Tests_Media_GetAttachmentTaxonomies extends WP_UnitTestCase {
|
|
public function test_should_return_attachment_taxonomy() {
|
|
register_taxonomy( 'wptests_tax', 'attachment' );
|
|
|
|
$a = self::factory()->attachment->create_object( 'image.jpg', 0, array(
|
|
'post_mime_type' => 'image/jpeg',
|
|
'post_type' => 'attachment'
|
|
) );
|
|
$attachment = get_post( $a );
|
|
|
|
$found = get_attachment_taxonomies( $attachment, 'names' );
|
|
$expected = array( 'wptests_tax' );
|
|
|
|
$this->assertSame( $expected, $found );
|
|
}
|
|
|
|
public function test_should_return_taxonomy_registered_for_specific_attachment_type() {
|
|
register_taxonomy( 'wptests_tax', 'attachment:image' );
|
|
|
|
$a = self::factory()->attachment->create_object( 'image.jpg', 0, array(
|
|
'post_mime_type' => 'image/jpeg',
|
|
'post_type' => 'attachment'
|
|
) );
|
|
$attachment = get_post( $a );
|
|
|
|
$found = get_attachment_taxonomies( $attachment, 'names' );
|
|
$expected = array( 'wptests_tax' );
|
|
|
|
$this->assertSame( $expected, $found );
|
|
}
|
|
|
|
public function test_should_return_taxonomy_registered_for_specific_attachment_mimetype() {
|
|
register_taxonomy( 'wptests_tax', 'attachment:image/jpeg' );
|
|
|
|
$a = self::factory()->attachment->create_object( 'image.jpg', 0, array(
|
|
'post_mime_type' => 'image/jpeg',
|
|
'post_type' => 'attachment'
|
|
) );
|
|
$attachment = get_post( $a );
|
|
|
|
$found = get_attachment_taxonomies( $attachment, 'names' );
|
|
$expected = array( 'wptests_tax' );
|
|
|
|
$this->assertSame( $expected, $found );
|
|
}
|
|
|
|
public function test_should_return_taxonomy_registered_for_specific_file_extension() {
|
|
register_taxonomy( 'wptests_tax', 'attachment:jpg' );
|
|
|
|
$a = self::factory()->attachment->create_object( 'image.jpg', 0, array(
|
|
'post_mime_type' => 'image/jpeg',
|
|
'post_type' => 'attachment'
|
|
) );
|
|
$attachment = get_post( $a );
|
|
|
|
$found = get_attachment_taxonomies( $attachment, 'names' );
|
|
$expected = array( 'wptests_tax' );
|
|
|
|
$this->assertSame( $expected, $found );
|
|
}
|
|
|
|
public function test_should_not_return_duplicate_taxonomies() {
|
|
register_taxonomy( 'wptests_tax', array( 'attachment', 'attachment:image/jpeg' ) );
|
|
|
|
$a = self::factory()->attachment->create_object( 'image.jpg', 0, array(
|
|
'post_mime_type' => 'image/jpeg',
|
|
'post_type' => 'attachment'
|
|
) );
|
|
$attachment = get_post( $a );
|
|
|
|
$found = get_attachment_taxonomies( $attachment, 'names' );
|
|
$expected = array( 'wptests_tax' );
|
|
|
|
$this->assertSame( $expected, $found );
|
|
}
|
|
|
|
/**
|
|
* @ticket 37368
|
|
*/
|
|
public function test_should_respect_output_objects() {
|
|
register_taxonomy( 'wptests_tax2', 'attachment:image' );
|
|
|
|
$a = self::factory()->attachment->create_object( 'image.jpg', 0, array(
|
|
'post_mime_type' => 'image/jpeg',
|
|
'post_type' => 'attachment'
|
|
) );
|
|
$attachment = get_post( $a );
|
|
|
|
$found = get_attachment_taxonomies( $attachment, 'objects' );
|
|
|
|
$this->assertSame( array( 'wptests_tax2' ), array_keys( $found ) );
|
|
$this->assertInternalType( 'object', $found['wptests_tax2'] );
|
|
$this->assertSame( 'wptests_tax2', $found['wptests_tax2']->name );
|
|
}
|
|
|
|
|
|
/**
|
|
* @ticket 37368
|
|
*/
|
|
public function test_should_return_unique_taxonomies_for_output_objects() {
|
|
register_taxonomy( 'wptests_tax2', array( 'attachment:image', 'attachment:image/jpeg' ) );
|
|
|
|
$a = self::factory()->attachment->create_object( 'image.jpg', 0, array(
|
|
'post_mime_type' => 'image/jpeg',
|
|
'post_type' => 'attachment'
|
|
) );
|
|
$attachment = get_post( $a );
|
|
|
|
$found = get_attachment_taxonomies( $attachment, 'objects' );
|
|
|
|
$this->assertSame( array( 'wptests_tax2' ), array_keys( $found ) );
|
|
$this->assertInternalType( 'object', $found['wptests_tax2'] );
|
|
$this->assertSame( 'wptests_tax2', $found['wptests_tax2']->name );
|
|
}
|
|
}
|