user = $this->factory->user->create( array( 'role' => 'administrator', ) ); } /** * Test that sample product data is imported. */ public function test_import_sample_products() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'POST', $this->endpoint . '/import_sample_products' ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $this->assertEquals( 200, $response->get_status() ); $this->assertArrayHasKey( 'failed', $data ); $this->assertArrayHasKey( 'imported', $data ); $this->assertArrayHasKey( 'skipped', $data ); $this->assertArrayHasKey( 'updated', $data ); } /** * Test that Tasks data is returned by the endpoint. */ public function test_create_homepage() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'POST', $this->endpoint . '/create_homepage' ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $this->assertEquals( 200, $response->get_status() ); $this->assertEquals( 'success', $data['status'] ); $this->assertEquals( get_option( 'woocommerce_onboarding_homepage_post_id' ), $data['post_id'] ); $this->assertEquals( htmlspecialchars_decode( get_edit_post_link( get_option( 'woocommerce_onboarding_homepage_post_id' ) ) ), $data['edit_post_link'] ); } /** * Test that the default homepage template can be filtered. */ public function test_homepage_template_can_be_filtered() { wp_set_current_user( $this->user ); add_filter( 'woocommerce_admin_onboarding_homepage_template', function ( $template ) { return 'Custom post content'; } ); $request = new WP_REST_Request( 'POST', $this->endpoint . '/create_homepage' ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $this->assertSame( 'Custom post content', get_the_content( null, null, $data['post_id'] ) ); } }