user = $this->factory->user->create( array( 'role' => 'administrator', ) ); WC_Helper_Admin_Notes::reset_notes_dbs(); WC_Helper_Admin_Notes::add_notes_for_tests(); } /** * Test route registration. * * @since 3.5.0 */ public function test_register_routes() { $routes = $this->server->get_routes(); $this->assertArrayHasKey( $this->endpoint, $routes ); } /** * Test getting a single note. * * @since 3.5.0 */ public function test_get_note() { wp_set_current_user( $this->user ); $response = $this->server->dispatch( new WP_REST_Request( 'GET', $this->endpoint . '/1' ) ); $note = $response->get_data(); $this->assertEquals( 200, $response->get_status() ); $this->assertEquals( 1, $note['id'] ); $this->assertEquals( 'PHPUNIT_TEST_NOTE_NAME', $note['name'] ); $this->assertEquals( WC_Admin_Note::E_WC_ADMIN_NOTE_INFORMATIONAL, $note['type'] ); $this->assertArrayHasKey( 'locale', $note ); $this->assertEquals( 'PHPUNIT_TEST_NOTE_1_TITLE', $note['title'] ); $this->assertEquals( 'PHPUNIT_TEST_NOTE_1_CONTENT', $note['content'] ); $this->assertEquals( 'info', $note['icon'] ); $this->assertArrayHasKey( 'content_data', $note ); $this->assertEquals( 1.23, $note['content_data']->amount ); $this->assertEquals( WC_Admin_Note::E_WC_ADMIN_NOTE_UNACTIONED, $note['status'] ); $this->assertEquals( 'PHPUNIT_TEST', $note['source'] ); $this->assertArrayHasKey( 'date_created', $note ); $this->assertArrayHasKey( 'date_created_gmt', $note ); $this->assertArrayHasKey( 'date_reminder', $note ); $this->assertArrayHasKey( 'date_reminder_gmt', $note ); $this->assertArrayHasKey( 'actions', $note ); $this->assertEquals( 'PHPUNIT_TEST_NOTE_1_ACTION_1_SLUG', $note['actions'][0]->name ); $this->assertEquals( 'http://example.org/wp-admin/admin.php?s=PHPUNIT_TEST_NOTE_1_ACTION_1_URL', $note['actions'][0]->url ); } /** * Test getting a 404 from invalid ID. * * @since 3.5.0 */ public function test_get_invalid_note() { wp_set_current_user( $this->user ); $response = $this->server->dispatch( new WP_REST_Request( 'GET', $this->endpoint . '/999' ) ); $note = $response->get_data(); $this->assertEquals( 404, $response->get_status() ); } /** * Test getting a single note without permission. It should fail. * * @since 3.5.0 */ public function test_get_note_without_permission() { $response = $this->server->dispatch( new WP_REST_Request( 'GET', $this->endpoint . '/1' ) ); $this->assertEquals( 401, $response->get_status() ); } /** * Test getting lots of notes. * * @since 3.5.0 */ public function test_get_notes() { wp_set_current_user( $this->user ); $response = $this->server->dispatch( new WP_REST_Request( 'GET', $this->endpoint ) ); $notes = $response->get_data(); $this->assertEquals( 200, $response->get_status() ); $this->assertEquals( 2, count( $notes ) ); } /** * Test getting notes of a certain type. * * @since 3.5.0 */ public function test_get_warning_notes() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'GET', $this->endpoint ); $request->set_query_params( array( 'type' => 'warning' ) ); $response = $this->server->dispatch( $request ); $notes = $response->get_data(); $this->assertEquals( 200, $response->get_status() ); $this->assertEquals( 1, count( $notes ) ); $this->assertEquals( $notes[0]['title'], 'PHPUNIT_TEST_NOTE_2_TITLE' ); } /** * Test getting lots of notes without permission. It should fail. * * @since 3.5.0 */ public function test_get_notes_without_permission() { $response = $this->server->dispatch( new WP_REST_Request( 'GET', $this->endpoint ) ); $this->assertEquals( 401, $response->get_status() ); } /** * Test getting the notes schema. * * @since 3.5.0 */ public function test_get_notes_schema() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'OPTIONS', $this->endpoint ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $properties = $data['schema']['properties']; $this->assertEquals( 15, count( $properties ) ); $this->assertArrayHasKey( 'id', $properties ); $this->assertArrayHasKey( 'name', $properties ); $this->assertArrayHasKey( 'type', $properties ); $this->assertArrayHasKey( 'locale', $properties ); $this->assertArrayHasKey( 'title', $properties ); $this->assertArrayHasKey( 'content', $properties ); $this->assertArrayHasKey( 'icon', $properties ); $this->assertArrayHasKey( 'content_data', $properties ); $this->assertArrayHasKey( 'status', $properties ); $this->assertArrayHasKey( 'source', $properties ); $this->assertArrayHasKey( 'date_created', $properties ); $this->assertArrayHasKey( 'date_created_gmt', $properties ); $this->assertArrayHasKey( 'date_reminder', $properties ); $this->assertArrayHasKey( 'date_reminder_gmt', $properties ); $this->assertArrayHasKey( 'actions', $properties ); } }