Changeset 46282
- Timestamp:
- 09/23/2019 10:03:53 PM (5 years ago)
- Location:
- trunk/tests/phpunit/tests/customize
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/customize/manager.php
r46206 r46282 1778 1778 $old_sidebars_widgets = get_option( 'sidebars_widgets' ); 1779 1779 $new_sidebars_widgets = $old_sidebars_widgets; 1780 $this->assertGreaterThan( 2, count( $new_sidebars_widgets[' sidebar-1'] ) );1781 $new_sidebar_1 = array_reverse( $new_sidebars_widgets[' sidebar-1'] );1780 $this->assertGreaterThan( 2, count( $new_sidebars_widgets['footer-one'] ) ); 1781 $new_sidebar_1 = array_reverse( $new_sidebars_widgets['footer-one'] ); 1782 1782 1783 1783 $post_id = $this->factory()->post->create( … … 1788 1788 'post_content' => wp_json_encode( 1789 1789 array( 1790 'sidebars_widgets[ sidebar-1]' => array(1790 'sidebars_widgets[footer-one]' => array( 1791 1791 'value' => $new_sidebar_1, 1792 1792 ), … … 1805 1805 // Ensure that the value has actually been written to the DB. 1806 1806 $updated_sidebars_widgets = get_option( 'sidebars_widgets' ); 1807 $this->assertEquals( $new_sidebar_1, $updated_sidebars_widgets[' sidebar-1'] );1807 $this->assertEquals( $new_sidebar_1, $updated_sidebars_widgets['footer-one'] ); 1808 1808 } 1809 1809 -
trunk/tests/phpunit/tests/customize/widgets.php
r46278 r46282 34 34 $sidebars_widgets = wp_get_sidebars_widgets(); 35 35 $this->assertEqualSets( array( 'wp_inactive_widgets', 'footer-one', 'footer-two' ), array_keys( wp_get_sidebars_widgets() ) ); 36 $this->assertContains( 'search-2', $sidebars_widgets[' sidebar-1'] );37 $this->assertContains( 'categories-2', $sidebars_widgets[' sidebar-1'] );36 $this->assertContains( 'search-2', $sidebars_widgets['footer-one'] ); 37 $this->assertContains( 'categories-2', $sidebars_widgets['footer-two'] ); 38 38 $this->assertArrayHasKey( 2, get_option( 'widget_search' ) ); 39 39 $widget_categories = get_option( 'widget_categories' ); … … 102 102 */ 103 103 function test_customize_register_with_deleted_sidebars() { 104 $sidebar_id = ' sidebar-1';104 $sidebar_id = 'footer-one'; 105 105 delete_option( 'sidebars_widgets' ); 106 106 register_sidebar( array( 'id' => $sidebar_id ) ); … … 312 312 'sanitize_js_callback' => array( $this->manager->widgets, 'sanitize_sidebar_widgets_js_instance' ), 313 313 ); 314 $args = $this->manager->widgets->get_setting_args( 'sidebars_widgets[ sidebar-1]' );314 $args = $this->manager->widgets->get_setting_args( 'sidebars_widgets[footer-one]' ); 315 315 foreach ( $default_args as $key => $default_value ) { 316 316 $this->assertEquals( $default_value, $args[ $key ] ); 317 317 } 318 $this->assertEquals( 'SIDEBARS_WIDGETS[ SIDEBAR-1]', $args['uppercase_id_set_by_filter'] );318 $this->assertEquals( 'SIDEBARS_WIDGETS[FOOTER-ONE]', $args['uppercase_id_set_by_filter'] ); 319 319 320 320 $override_args = array( … … 654 654 $this->assertFalse( $this->manager->widgets->render_widget_partial( $partial, array( 'sidebar_id' => 'non-existing' ) ) ); 655 655 656 $output = $this->manager->widgets->render_widget_partial( $partial, array( 'sidebar_id' => ' sidebar-1' ) );656 $output = $this->manager->widgets->render_widget_partial( $partial, array( 'sidebar_id' => 'footer-one' ) ); 657 657 658 658 $this->assertEquals( 1, substr_count( $output, 'data-customize-partial-id' ) );
Note: See TracChangeset
for help on using the changeset viewer.