Editor: Add missing unit tests for block_has_support

Follow-up for [50761].
Props ntsekouras.
Fixes #53257. See #52991.



git-svn-id: https://develop.svn.wordpress.org/trunk@50955 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Greg Ziółkowski 2021-05-24 06:26:00 +00:00
parent 7cd5ecd667
commit b9b464de8a

View File

@ -567,4 +567,65 @@ class WP_Block_Test extends WP_UnitTestCase {
)
);
}
/**
* @ticket 52991
*/
public function test_block_has_support() {
$this->registry->register(
'core/example',
array(
'supports' => array(
'align' => array( 'wide', 'full' ),
'fontSize' => true,
'color' => array(
'link' => true,
'gradient' => false,
),
),
)
);
$block_type = $this->registry->get_registered( 'core/example' );
$align_support = block_has_support( $block_type, array( 'align' ) );
$this->assertTrue( $align_support );
$gradient_support = block_has_support( $block_type, array( 'color', 'gradient' ) );
$this->assertFalse( $gradient_support );
$link_support = block_has_support( $block_type, array( 'color', 'link' ), false );
$this->assertTrue( $link_support );
$text_support = block_has_support( $block_type, array( 'color', 'text' ) );
$this->assertFalse( $text_support );
$font_nested = block_has_support( $block_type, array( 'fontSize', 'nested' ) );
$this->assertFalse( $font_nested );
}
/**
* @ticket 52991
*/
public function test_block_has_support_no_supports() {
$this->registry->register( 'core/example', array() );
$block_type = $this->registry->get_registered( 'core/example' );
$has_support = block_has_support( $block_type, array( 'color' ) );
$this->assertFalse( $has_support );
}
/**
* @ticket 52991
*/
public function test_block_has_support_provided_defaults() {
$this->registry->register(
'core/example',
array(
'supports' => array(
'color' => array(
'gradient' => false,
),
),
)
);
$block_type = $this->registry->get_registered( 'core/example' );
$align_support = block_has_support( $block_type, array( 'align' ), true );
$this->assertTrue( $align_support );
$gradient_support = block_has_support( $block_type, array( 'color', 'gradient' ), true );
$this->assertFalse( $gradient_support );
}
}