Changeset 55216 for trunk/tests/phpunit/tests/theme/wpThemeJson.php
- Timestamp:
- 02/03/2023 06:23:55 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/theme/wpThemeJson.php
r55192 r55216 4625 4625 ); 4626 4626 } 4627 4628 /** 4629 * @dataProvider data_process_blocks_custom_css 4630 * 4631 * @param array $input An array containing the selector and css to test. 4632 * @param string $expected Expected results. 4633 */ 4634 public function test_process_blocks_custom_css( $input, $expected ) { 4635 $theme_json = new WP_Theme_JSON( 4636 array( 4637 'version' => WP_Theme_JSON::LATEST_SCHEMA, 4638 'styles' => array(), 4639 ) 4640 ); 4641 $reflection = new ReflectionMethod( $theme_json, 'process_blocks_custom_css' ); 4642 $reflection->setAccessible( true ); 4643 4644 $this->assertEquals( $expected, $reflection->invoke( $theme_json, $input['css'], $input['selector'] ) ); 4645 } 4646 4647 /** 4648 * Data provider. 4649 * 4650 * @return array[] 4651 */ 4652 public function data_process_blocks_custom_css() { 4653 return array( 4654 // Simple CSS without any child selectors. 4655 'no child selectors' => array( 4656 'input' => array( 4657 'selector' => '.foo', 4658 'css' => 'color: red; margin: auto;', 4659 ), 4660 'expected' => '.foo{color: red; margin: auto;}', 4661 ), 4662 // CSS with child selectors. 4663 'with children' => array( 4664 'input' => array( 4665 'selector' => '.foo', 4666 'css' => 'color: red; margin: auto; & .bar{color: blue;}', 4667 ), 4668 'expected' => '.foo{color: red; margin: auto;}.foo .bar{color: blue;}', 4669 ), 4670 // CSS with child selectors and pseudo elements. 4671 'with children and pseudo elements' => array( 4672 'input' => array( 4673 'selector' => '.foo', 4674 'css' => 'color: red; margin: auto; & .bar{color: blue;} &::before{color: green;}', 4675 ), 4676 'expected' => '.foo{color: red; margin: auto;}.foo .bar{color: blue;}.foo::before{color: green;}', 4677 ), 4678 ); 4679 } 4627 4680 }
Note: See TracChangeset
for help on using the changeset viewer.