mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Adds a `public` visibility to test fixtures, tests, data providers, and callbacks methods. Adds a `private` visibility to helper methods within test classes. Renames callbacks and helpers that previously started with a `_` prefix. Why? For consistency and to leverage using the method visibility. Further naming standardizations is beyond the scope of this commit. Props costdev, jrf, hellofromTonya. Fixes #54177. git-svn-id: https://develop.svn.wordpress.org/trunk@52010 602fd350-edb4-49c9-b593-d223f7449a82
113 lines
2.4 KiB
PHP
113 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* WP_Block_List tests
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Blocks
|
|
* @since 5.5.0
|
|
*/
|
|
|
|
/**
|
|
* Tests for WP_Block_List.
|
|
*
|
|
* @since 5.5.0
|
|
*
|
|
* @group blocks
|
|
*/
|
|
class Tests_Blocks_wpBlockList extends WP_UnitTestCase {
|
|
|
|
/**
|
|
* Fake block type registry.
|
|
*
|
|
* @var WP_Block_Type_Registry
|
|
*/
|
|
private $registry = null;
|
|
|
|
/**
|
|
* Set up each test method.
|
|
*/
|
|
public function set_up() {
|
|
parent::set_up();
|
|
|
|
$this->registry = new WP_Block_Type_Registry();
|
|
$this->registry->register( 'core/example', array() );
|
|
}
|
|
|
|
/**
|
|
* Tear down each test method.
|
|
*/
|
|
public function tear_down() {
|
|
$this->registry = null;
|
|
|
|
parent::tear_down();
|
|
}
|
|
|
|
/**
|
|
* @ticket 49927
|
|
*/
|
|
public function test_array_access() {
|
|
$parsed_blocks = parse_blocks( '<!-- wp:example /-->' );
|
|
$context = array();
|
|
$blocks = new WP_Block_List( $parsed_blocks, $context, $this->registry );
|
|
|
|
// Test "offsetExists".
|
|
$this->assertArrayHasKey( 0, $blocks );
|
|
|
|
// Test "offsetGet".
|
|
$this->assertSame( 'core/example', $blocks[0]->name );
|
|
|
|
// Test "offsetSet".
|
|
$parsed_blocks[0]['blockName'] = 'core/updated';
|
|
$blocks[0] = new WP_Block( $parsed_blocks[0], $context, $this->registry );
|
|
$this->assertSame( 'core/updated', $blocks[0]->name );
|
|
|
|
// Test "offsetUnset".
|
|
unset( $blocks[0] );
|
|
$this->assertArrayNotHasKey( 0, $blocks );
|
|
}
|
|
|
|
/**
|
|
* @ticket 49927
|
|
*/
|
|
public function test_iterable() {
|
|
$parsed_blocks = parse_blocks( '<!-- wp:example --><!-- wp:example /--><!-- /wp:example -->' );
|
|
$context = array();
|
|
$blocks = new WP_Block_List( $parsed_blocks, $context, $this->registry );
|
|
$assertions = 0;
|
|
|
|
foreach ( $blocks as $block ) {
|
|
$this->assertSame( 'core/example', $block->name );
|
|
$assertions++;
|
|
foreach ( $block->inner_blocks as $inner_block ) {
|
|
$this->assertSame( 'core/example', $inner_block->name );
|
|
$assertions++;
|
|
}
|
|
}
|
|
|
|
$blocks->rewind();
|
|
while ( $blocks->valid() ) {
|
|
$key = $blocks->key();
|
|
$block = $blocks->current();
|
|
$this->assertSame( 0, $key );
|
|
$assertions++;
|
|
$this->assertSame( 'core/example', $block->name );
|
|
$assertions++;
|
|
$blocks->next();
|
|
}
|
|
|
|
$this->assertSame( 4, $assertions );
|
|
}
|
|
|
|
/**
|
|
* @ticket 49927
|
|
*/
|
|
public function test_countable() {
|
|
$parsed_blocks = parse_blocks( '<!-- wp:example /-->' );
|
|
$context = array();
|
|
$blocks = new WP_Block_List( $parsed_blocks, $context, $this->registry );
|
|
|
|
$this->assertCount( 1, $blocks );
|
|
}
|
|
|
|
}
|