user = $this->factory->user->create( array( 'role' => 'administrator', ) ); $this->contributor = $this->factory->user->create( array( 'role' => 'contributor', ) ); // Create 2 product attributes with terms. $this->attr_color = ProductHelper::create_attribute( 'color', array( 'red', 'yellow', 'blue' ) ); $this->attr_size = ProductHelper::create_attribute( 'size', array( 'small', 'medium', 'large', 'xlarge' ) ); } /** * Test getting attributes. * * @since 3.6.0 */ public function test_get_attributes() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'GET', $this->endpoint . '/products/attributes' ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $this->assertEquals( 200, $response->get_status() ); $this->assertEquals( 2, count( $data ) ); $attribute = $data[0]; $this->assertArrayHasKey( 'id', $attribute ); $this->assertArrayHasKey( 'name', $attribute ); $this->assertArrayHasKey( 'slug', $attribute ); $this->assertArrayHasKey( 'count', $attribute ); } /** * Test getting invalid attribute. * * @since 3.6.0 */ public function test_get_invalid_attribute() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'GET', $this->endpoint . '/products/attributes/11111' ); $response = $this->server->dispatch( $request ); $this->assertEquals( 404, $response->get_status() ); } /** * Test un-authorized getting attribute. * * @since 3.6.0 */ public function test_get_unauthed_attribute() { $request = new WP_REST_Request( 'GET', $this->endpoint . '/products/attributes/' . $this->attr_size['attribute_id'] ); $response = $this->server->dispatch( $request ); $this->assertEquals( 401, $response->get_status() ); } /** * Test getting attribute as contributor. * * @since 3.6.0 */ public function test_get_attribute_contributor() { wp_set_current_user( $this->contributor ); $request = new WP_REST_Request( 'GET', $this->endpoint . '/products/attributes/' . $this->attr_size['attribute_id'] ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $this->assertEquals( 200, $response->get_status() ); $this->assertEquals( $this->attr_size['attribute_id'], $data['id'] ); $this->assertEquals( $this->attr_size['attribute_name'], $data['name'] ); } }