114 lines
3.3 KiB
PHP
114 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Tests for the WC_Data class.
|
|
*
|
|
* @package WooCommerce\Tests\Blocks
|
|
*/
|
|
|
|
/**
|
|
* Class WC_Test_Blocks_Utils
|
|
*/
|
|
class WC_Test_Blocks_Utils extends WC_Unit_Test_Case {
|
|
/**
|
|
* @group block-utils
|
|
* Test: has_block_in_page.
|
|
*
|
|
*/
|
|
public function test_has_block_in_page_on_page_with_single_block() {
|
|
$page = array(
|
|
'name' => 'blocks-page',
|
|
'title' => 'Checkout',
|
|
'content' => '<!-- wp:woocommerce/checkout {"showOrderNotes":false} --> <div class="wp-block-woocommerce-checkout is-loading"></div> <!-- /wp:woocommerce/checkout -->',
|
|
);
|
|
|
|
$page_id = wc_create_page( $page['name'], '', $page['title'], $page['content'] );
|
|
|
|
$this->assertTrue( WC_Blocks_Utils::has_block_in_page( $page_id, 'woocommerce/checkout' ) );
|
|
$this->assertFalse( WC_Blocks_Utils::has_block_in_page( $page_id, 'woocommerce/cart' ) );
|
|
}
|
|
|
|
/**
|
|
* @group block-utils
|
|
* Test: has_block_in_page.
|
|
*
|
|
*/
|
|
public function test_has_block_in_page_on_page_with_no_blocks() {
|
|
$page = array(
|
|
'name' => 'shortcode-page',
|
|
'title' => 'Checkout',
|
|
'content' => '<!-- wp:shortcode --> [woocommerce_checkout] <!-- /wp:shortcode -->',
|
|
);
|
|
|
|
$page_id = wc_create_page( $page['name'], '', $page['title'], $page['content'] );
|
|
|
|
$this->assertFalse( WC_Blocks_Utils::has_block_in_page( $page_id, 'woocommerce/checkout' ) );
|
|
$this->assertFalse( WC_Blocks_Utils::has_block_in_page( $page_id, 'woocommerce/cart' ) );
|
|
}
|
|
|
|
/**
|
|
* @group block-utils
|
|
* Test: has_block_in_page.
|
|
*
|
|
*/
|
|
public function test_has_block_in_page_on_page_with_multiple_blocks() {
|
|
$page = array(
|
|
'name' => 'shortcode-page',
|
|
'title' => 'Checkout',
|
|
'content' => '<!-- wp:woocommerce/featured-product {"editMode":false,"productId":17} -->
|
|
<!-- wp:button {"align":"center"} -->
|
|
<div class="wp-block-button aligncenter"><a class="wp-block-button__link" href="https://blocks.local/product/beanie/">Shop now</a></div>
|
|
<!-- /wp:button -->
|
|
<!-- /wp:woocommerce/featured-product -->
|
|
|
|
<!-- wp:heading -->
|
|
<h2>test</h2>
|
|
<!-- /wp:heading -->',
|
|
);
|
|
|
|
$page_id = wc_create_page( $page['name'], '', $page['title'], $page['content'] );
|
|
|
|
$this->assertTrue( WC_Blocks_Utils::has_block_in_page( $page_id, 'woocommerce/featured-product' ) );
|
|
$this->assertTrue( WC_Blocks_Utils::has_block_in_page( $page_id, 'core/heading' ) );
|
|
}
|
|
|
|
/**
|
|
* @group block-utils
|
|
* Test: get_all_blocks_from_page.
|
|
*
|
|
*/
|
|
public function test_get_all_blocks_from_page() {
|
|
$page = array(
|
|
'name' => 'cart',
|
|
'title' => 'Checkout',
|
|
'content' => '<!-- wp:heading --><h2>test1</h2><!-- /wp:heading --><!-- wp:heading --><h1>test2</h1><!-- /wp:heading -->',
|
|
);
|
|
|
|
wc_create_page( $page['name'], 'woocommerce_cart_page_id', $page['title'], $page['content'] );
|
|
|
|
$expected = array(
|
|
0 => array(
|
|
'blockName' => 'core/heading',
|
|
'attrs' => array(),
|
|
'innerBlocks' => array(),
|
|
'innerHTML' => '<h2>test1</h2>',
|
|
'innerContent' => array(
|
|
0 => '<h2>test1</h2>',
|
|
),
|
|
),
|
|
1 => array(
|
|
'blockName' => 'core/heading',
|
|
'attrs' => array(),
|
|
'innerBlocks' => array(),
|
|
'innerHTML' => '<h1>test2</h1>',
|
|
'innerContent' => array(
|
|
0 => '<h1>test2</h1>',
|
|
),
|
|
),
|
|
);
|
|
|
|
$blocks = WC_Blocks_Utils::get_blocks_from_page( 'core/heading', 'cart' );
|
|
|
|
$this->assertEquals( $expected, $blocks );
|
|
}
|
|
}
|