Removed legacy webhook unit tests
This commit is contained in:
parent
bc95b1c153
commit
0ac915d0e9
|
@ -26,7 +26,7 @@ The tests will execute and you'll be presented with a summary. Code coverage doc
|
||||||
|
|
||||||
You can run specific tests by providing the path and filename to the test class:
|
You can run specific tests by providing the path and filename to the test class:
|
||||||
|
|
||||||
$ phpunit tests/unit-tests/api/webhooks
|
$ phpunit tests/unit-tests/api/orders
|
||||||
|
|
||||||
A text code coverage summary can be displayed using the `--coverage-text` option:
|
A text code coverage summary can be displayed using the `--coverage-text` option:
|
||||||
|
|
||||||
|
|
|
@ -94,10 +94,6 @@ class WC_Unit_Tests_Bootstrap {
|
||||||
*/
|
*/
|
||||||
public function includes() {
|
public function includes() {
|
||||||
|
|
||||||
// factories
|
|
||||||
require_once( $this->tests_dir . '/framework/factories/class-wc-unit-test-factory-for-webhook.php' );
|
|
||||||
require_once( $this->tests_dir . '/framework/factories/class-wc-unit-test-factory-for-webhook-delivery.php' );
|
|
||||||
|
|
||||||
// framework
|
// framework
|
||||||
require_once( $this->tests_dir . '/framework/class-wc-unit-test-factory.php' );
|
require_once( $this->tests_dir . '/framework/class-wc-unit-test-factory.php' );
|
||||||
require_once( $this->tests_dir . '/framework/class-wc-mock-session-handler.php' );
|
require_once( $this->tests_dir . '/framework/class-wc-mock-session-handler.php' );
|
||||||
|
|
|
@ -8,20 +8,10 @@
|
||||||
*/
|
*/
|
||||||
class WC_Unit_Test_Factory extends WP_UnitTest_Factory {
|
class WC_Unit_Test_Factory extends WP_UnitTest_Factory {
|
||||||
|
|
||||||
/** @var WC_Unit_Test_Factory_For_Webhook */
|
|
||||||
public $webhook;
|
|
||||||
|
|
||||||
/** @var WC_Unit_Test_Factory_For_Webhook_Delivery */
|
|
||||||
public $webhook_delivery;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setup factories.
|
* Setup factories.
|
||||||
*/
|
*/
|
||||||
public function __construct() {
|
public function __construct() {
|
||||||
|
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
|
|
||||||
$this->webhook = new WC_Unit_Test_Factory_For_Webhook( $this );
|
|
||||||
$this->webhook_delivery = new WC_Unit_Test_Factory_For_Webhook_Delivery( $this );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,61 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* Webhook Delivery Test Factory
|
|
||||||
*
|
|
||||||
* @see \WP_UnitTest_Factory_For_Comment
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
class WC_Unit_Test_Factory_For_Webhook_Delivery extends WP_UnitTest_Factory_For_Comment {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Setup factory.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
* @param null $factory
|
|
||||||
*/
|
|
||||||
public function __construct( $factory = null ) {
|
|
||||||
|
|
||||||
parent::__construct( $factory );
|
|
||||||
|
|
||||||
// set defaults
|
|
||||||
$this->default_generation_definitions = array(
|
|
||||||
'comment_author' => 'WooCommerce',
|
|
||||||
'comment_author_email' => 'woocommerce@noreply.com',
|
|
||||||
'comment_agent' => 'WooCommerce Hookshot',
|
|
||||||
'comment_type' => 'webhook_delivery',
|
|
||||||
'comment_parent' => 0,
|
|
||||||
'comment_approved' => 1,
|
|
||||||
'comment_content' => 'HTTP 200: OK',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a mock webhook delivery.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
* @see WP_UnitTest_Factory_For_comment::create_object()
|
|
||||||
* @param array $args
|
|
||||||
* @return int webhook delivery (comment) ID
|
|
||||||
*/
|
|
||||||
public function create_object( $args ) {
|
|
||||||
|
|
||||||
$id = parent::create_object( $args );
|
|
||||||
|
|
||||||
$comment_meta_args = array(
|
|
||||||
'_request_method' => 'POST',
|
|
||||||
'_request_headers' => array( 'User-Agent', 'WooCommerce Hookshot' ),
|
|
||||||
'_request_body' => "webhook_id={$id}",
|
|
||||||
'_response_code' => 200,
|
|
||||||
'_response_messaage' => 'OK',
|
|
||||||
'_response_headers' => array( 'server' => 'nginx' ),
|
|
||||||
'_response_body' => 'OK',
|
|
||||||
'_duration' => '0.47976',
|
|
||||||
);
|
|
||||||
|
|
||||||
foreach ( $comment_meta_args as $key => $value ) {
|
|
||||||
update_comment_meta( $id, $key, $value );
|
|
||||||
}
|
|
||||||
|
|
||||||
return $id;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,70 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* Webhook Test Factory
|
|
||||||
*
|
|
||||||
* @see \WP_UnitTest_Factory_For_Post
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
class WC_Unit_Test_Factory_For_Webhook extends WP_UnitTest_Factory_For_Post {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Setup factory.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
* @param null $factory
|
|
||||||
*/
|
|
||||||
public function __construct( $factory = null ) {
|
|
||||||
|
|
||||||
parent::__construct( $factory );
|
|
||||||
|
|
||||||
// set default
|
|
||||||
$this->default_generation_definitions = array(
|
|
||||||
'post_status' => 'publish',
|
|
||||||
'post_title' => rand_str(),
|
|
||||||
'post_type' => 'shop_webhook',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a mock webhook.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
* @see WP_UnitTest_Factory_For_Post::create_object()
|
|
||||||
* @param array $args
|
|
||||||
* @return int webhook (post) ID
|
|
||||||
*/
|
|
||||||
public function create_object( $args ) {
|
|
||||||
|
|
||||||
$id = parent::create_object( $args );
|
|
||||||
|
|
||||||
$meta_args = array(
|
|
||||||
'_topic' => 'coupon.created',
|
|
||||||
'_resource' => 'coupon',
|
|
||||||
'_event' => 'created',
|
|
||||||
'_hooks' => array(
|
|
||||||
'woocommerce_process_shop_coupon_meta',
|
|
||||||
'woocommerce_api_create_coupon',
|
|
||||||
),
|
|
||||||
'_delivery_url' => 'http://requestb.in/Tt8675309',
|
|
||||||
);
|
|
||||||
|
|
||||||
foreach ( $meta_args as $key => $value ) {
|
|
||||||
update_post_meta( $id, $key, $value );
|
|
||||||
}
|
|
||||||
|
|
||||||
return $id;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a mock webhook object.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
* @see WP_UnitTest_Factory_For_Post::get_object_by_id()
|
|
||||||
* @param int $id webhook ID
|
|
||||||
* @return WC_Webhook webhook instance
|
|
||||||
*/
|
|
||||||
public function get_object_by_id( $id ) {
|
|
||||||
|
|
||||||
return new WC_Webhook( $id );
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,500 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Webhooks.
|
|
||||||
* @package WooCommerce\Tests\API
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
class WC_Tests_API_Webhooks extends WC_API_Unit_Test_Case {
|
|
||||||
|
|
||||||
/** @var WC_API_Webhooks instance */
|
|
||||||
protected $endpoint;
|
|
||||||
|
|
||||||
/** @var WC_Webhook instance */
|
|
||||||
protected $webhook;
|
|
||||||
|
|
||||||
/** @var int webhook delivery (comment) ID */
|
|
||||||
protected $webhook_delivery_id;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Setup test webhook data.
|
|
||||||
*
|
|
||||||
* @see WC_API_UnitTestCase::setup()
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function setUp() {
|
|
||||||
|
|
||||||
parent::setUp();
|
|
||||||
|
|
||||||
$this->endpoint = WC()->api->WC_API_Webhooks;
|
|
||||||
|
|
||||||
// mock webhook
|
|
||||||
$this->webhook = $this->factory->webhook->create_and_get();
|
|
||||||
|
|
||||||
// mock webhook delivery
|
|
||||||
$this->webhook_delivery_id = $this->factory->webhook_delivery->create( array( 'comment_post_ID' => $this->webhook->id ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test route registration.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_register_routes() {
|
|
||||||
|
|
||||||
$routes = $this->endpoint->register_routes( array() );
|
|
||||||
|
|
||||||
$this->assertArrayHasKey( '/webhooks', $routes );
|
|
||||||
$this->assertArrayHasKey( '/webhooks/count', $routes );
|
|
||||||
$this->assertArrayHasKey( '/webhooks/(?P<id>\d+)', $routes );
|
|
||||||
$this->assertArrayHasKey( '/webhooks/(?P<webhook_id>\d+)/deliveries', $routes );
|
|
||||||
$this->assertArrayHasKey( '/webhooks/(?P<webhook_id>\d+)/deliveries/(?P<id>\d+)', $routes );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test GET /webhooks/{id}.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_get_webhook() {
|
|
||||||
|
|
||||||
// invalid ID
|
|
||||||
$response = $this->endpoint->get_webhook( 0 );
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_id', 404, $response );
|
|
||||||
|
|
||||||
// valid request
|
|
||||||
$response = $this->endpoint->get_webhook( $this->webhook->id );
|
|
||||||
|
|
||||||
$this->assertNotWPError( $response );
|
|
||||||
$this->assertArrayHasKey( 'webhook', $response );
|
|
||||||
|
|
||||||
$this->check_get_webhook_response( $response['webhook'], $this->webhook );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test GET /webhooks/{id} without valid permissions.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_get_webhook_without_permission() {
|
|
||||||
|
|
||||||
$this->disable_capability( 'read_private_shop_webhooks' );
|
|
||||||
|
|
||||||
$response = $this->endpoint->get_webhook( $this->webhook->id );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_user_cannot_read_webhook', 401, $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test GET /webhooks.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_get_webhooks() {
|
|
||||||
|
|
||||||
// valid request
|
|
||||||
$response = $this->endpoint->get_webhooks( null, null, 'active' );
|
|
||||||
|
|
||||||
$this->assertNotWPError( $response );
|
|
||||||
$this->assertArrayHasKey( 'webhooks', $response );
|
|
||||||
$this->assertCount( 1, $response['webhooks'] );
|
|
||||||
|
|
||||||
$this->check_get_webhook_response( $response['webhooks'][0], $this->webhook );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test GET /webhooks without valid permissions.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_get_webhooks_without_permission() {
|
|
||||||
|
|
||||||
$this->disable_capability( 'read_private_shop_webhooks' );
|
|
||||||
|
|
||||||
$response = $this->endpoint->get_webhooks();
|
|
||||||
|
|
||||||
$this->assertArrayHasKey( 'webhooks', $response );
|
|
||||||
$this->assertEmpty( $response['webhooks'] );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test GET /webhooks/count.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_get_webhooks_count() {
|
|
||||||
|
|
||||||
// paused status
|
|
||||||
$response = $this->endpoint->get_webhooks_count( 'paused' );
|
|
||||||
$this->assertArrayHasKey( 'count', $response );
|
|
||||||
$this->assertEquals( 0, $response['count'] );
|
|
||||||
|
|
||||||
// disabled status
|
|
||||||
$response = $this->endpoint->get_webhooks_count( 'disabled' );
|
|
||||||
$this->assertArrayHasKey( 'count', $response );
|
|
||||||
$this->assertEquals( 0, $response['count'] );
|
|
||||||
|
|
||||||
// an invalid status defaults to 'active'
|
|
||||||
$response = $this->endpoint->get_webhooks_count( 'bogus' );
|
|
||||||
$this->assertArrayHasKey( 'count', $response );
|
|
||||||
$this->assertEquals( 1, $response['count'] );
|
|
||||||
|
|
||||||
// valid request
|
|
||||||
$response = $this->endpoint->get_webhooks_count();
|
|
||||||
$this->assertArrayHasKey( 'count', $response );
|
|
||||||
$this->assertEquals( 1, $response['count'] );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test GET /webhooks/count without valid permissions.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_get_webhooks_count_without_permission() {
|
|
||||||
|
|
||||||
// invalid permissions
|
|
||||||
$this->disable_capability( 'read_private_shop_webhooks' );
|
|
||||||
|
|
||||||
$response = $this->endpoint->get_webhooks_count();
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_user_cannot_read_webhooks_count', 401, $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test POST /webhooks.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_create_webhook() {
|
|
||||||
|
|
||||||
$response = $this->endpoint->create_webhook( $this->get_defaults() );
|
|
||||||
|
|
||||||
$this->check_create_webhook_response( $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test POST /webhooks without valid permissions.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_create_webhook_without_permission() {
|
|
||||||
|
|
||||||
$this->disable_capability( 'publish_shop_webhooks' );
|
|
||||||
|
|
||||||
$response = $this->endpoint->create_webhook( $this->get_defaults() );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_user_cannot_create_webhooks', 401, $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test POST /webhooks with custom topic.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_create_webhook_custom_topic() {
|
|
||||||
|
|
||||||
$response = $this->endpoint->create_webhook( $this->get_defaults( array( 'topic' => 'action.woocommerce_cart_updated' ) ) );
|
|
||||||
|
|
||||||
$this->check_edit_webhook_response( $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test an invalid or empty topic for POST /webhooks.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_create_webhook_invalid_topic() {
|
|
||||||
|
|
||||||
// empty
|
|
||||||
$response = $this->endpoint->create_webhook( $this->get_defaults( array( 'topic' => null ) ) );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_topic', 400, $response );
|
|
||||||
|
|
||||||
// invalid - missing event
|
|
||||||
$response = $this->endpoint->create_webhook( $this->get_defaults( array( 'topic' => 'invalid' ) ) );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_topic', 400, $response );
|
|
||||||
|
|
||||||
// invalid
|
|
||||||
$response = $this->endpoint->create_webhook( $this->get_defaults( array( 'topic' => 'invalid.topic' ) ) );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_topic', 400, $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test an invalid or empty delivery for POST /webhooks.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_create_webhook_invalid_delivery_url() {
|
|
||||||
|
|
||||||
// empty
|
|
||||||
$response = $this->endpoint->create_webhook( $this->get_defaults( array( 'delivery_url' => null ) ) );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_delivery_url', 400, $response );
|
|
||||||
|
|
||||||
// invalid - scheme must be HTTP or HTTPS
|
|
||||||
$response = $this->endpoint->create_webhook( $this->get_defaults( array( 'delivery_url' => 'foo://bar' ) ) );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_delivery_url', 400, $response );
|
|
||||||
|
|
||||||
// invalid - must be valid URL
|
|
||||||
$response = $this->endpoint->create_webhook( $this->get_defaults( array( 'delivery_url' => 'https://foobar!' ) ) );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_delivery_url', 400, $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test wp_insert_post() failure for POST /webhooks.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_create_webhook_insert_post_failure() {
|
|
||||||
|
|
||||||
add_filter( 'wp_insert_post_empty_content', '__return_true' );
|
|
||||||
|
|
||||||
$response = $this->endpoint->create_webhook( $this->get_defaults() );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_cannot_create_webhook', 500, $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test PUT /webhooks/{id}.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_edit_webhook() {
|
|
||||||
|
|
||||||
// invalid ID
|
|
||||||
$response = $this->endpoint->edit_webhook( 0, $this->get_defaults() );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_id', 404, $response );
|
|
||||||
|
|
||||||
$args = array(
|
|
||||||
'secret' => rand_str(),
|
|
||||||
'status' => 'paused',
|
|
||||||
);
|
|
||||||
|
|
||||||
// valid request
|
|
||||||
$response = $this->endpoint->edit_webhook( $this->webhook->id, $this->get_defaults( $args ) );
|
|
||||||
|
|
||||||
$this->check_edit_webhook_response( $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test PUT /webhooks/{id} without valid permissions.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_edit_webhook_without_permission() {
|
|
||||||
|
|
||||||
$this->disable_capability( 'edit_published_shop_webhooks' );
|
|
||||||
|
|
||||||
$response = $this->endpoint->edit_webhook( $this->webhook->id, $this->get_defaults() );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_user_cannot_edit_webhook', 401, $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test PUT /webhooks/{id} with updated topic.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_edit_webhook_change_topic() {
|
|
||||||
|
|
||||||
// invalid topic
|
|
||||||
$response = $this->endpoint->edit_webhook( $this->webhook->id, $this->get_defaults( array( 'topic' => 'invalid.topic' ) ) );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_topic', 400, $response );
|
|
||||||
|
|
||||||
// valid request
|
|
||||||
$response = $this->endpoint->edit_webhook( $this->webhook->id, $this->get_defaults( array( 'topic' => 'order.updated' ) ) );
|
|
||||||
|
|
||||||
$this->check_edit_webhook_response( $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test PUT /webhooks/{id} with updated delivery URL.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_edit_webhook_change_delivery_url() {
|
|
||||||
|
|
||||||
// invalid delivery URL
|
|
||||||
$response = $this->endpoint->edit_webhook( $this->webhook->id, $this->get_defaults( array( 'delivery_url' => 'foo://bar' ) ) );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_delivery_url', 400, $response );
|
|
||||||
|
|
||||||
// valid request
|
|
||||||
$response = $this->endpoint->edit_webhook( $this->webhook->id, $this->get_defaults( array( 'delivery_url' => 'http://www.skyverge.com' ) ) );
|
|
||||||
|
|
||||||
$this->check_edit_webhook_response( $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test DELETE /webhooks/{id}.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_delete_webhook() {
|
|
||||||
|
|
||||||
// invalid ID
|
|
||||||
$response = $this->endpoint->delete_webhook( 0 );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_id', 404, $response );
|
|
||||||
|
|
||||||
// valid request
|
|
||||||
$response = $this->endpoint->delete_webhook( $this->webhook->id );
|
|
||||||
$this->assertArrayHasKey( 'message', $response );
|
|
||||||
$this->assertEquals( 'Permanently deleted webhook', $response['message'] );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test GET /webhooks/{id}/deliveries.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_get_webhook_deliveries() {
|
|
||||||
|
|
||||||
// invalid ID
|
|
||||||
$response = $this->endpoint->get_webhook_deliveries( 0 );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_id', '404', $response );
|
|
||||||
|
|
||||||
// valid request
|
|
||||||
$response = $this->endpoint->get_webhook_deliveries( $this->webhook->id );
|
|
||||||
|
|
||||||
$this->assertNotWPError( $response );
|
|
||||||
$this->assertArrayHasKey( 'webhook_deliveries', $response );
|
|
||||||
$this->assertCount( 1, $response['webhook_deliveries'] );
|
|
||||||
|
|
||||||
$this->check_get_webhook_delivery_response( $response['webhook_deliveries'][0], $this->webhook->get_delivery_log( $response['webhook_deliveries'][0]['id'] ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test GET /webhooks/{id}/deliveries/{id}.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_get_webhook_delivery() {
|
|
||||||
|
|
||||||
$response = $this->endpoint->get_webhook_delivery( $this->webhook->id, $this->webhook_delivery_id );
|
|
||||||
|
|
||||||
$this->assertNotWPError( $response );
|
|
||||||
$this->assertArrayHasKey( 'webhook_delivery', $response );
|
|
||||||
$this->assertNotEmpty( $response['webhook_delivery'] );
|
|
||||||
|
|
||||||
$this->check_get_webhook_delivery_response( $response['webhook_delivery'], $this->webhook->get_delivery_log( $response['webhook_delivery']['id'] ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test GET /webhooks/{id}/deliveries/{id} with invalid webhook & delivery IDs.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
*/
|
|
||||||
public function test_get_webhook_delivery_invalid_ids() {
|
|
||||||
|
|
||||||
// invalid webhook ID
|
|
||||||
$response = $this->endpoint->get_webhook_delivery( 0, 0 );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_id', 404, $response );
|
|
||||||
|
|
||||||
// invalid delivery ID
|
|
||||||
$response = $this->endpoint->get_webhook_delivery( $this->webhook->id, 0 );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_delivery_id', 404, $response );
|
|
||||||
|
|
||||||
$post_id = $this->factory->post->create();
|
|
||||||
$mock_comment_id = $this->factory->comment->create( array( 'comment_post_ID' => $post_id ) );
|
|
||||||
|
|
||||||
// invalid delivery (valid comment, but not the correct type)
|
|
||||||
$response = $this->endpoint->get_webhook_delivery( $this->webhook->id, $mock_comment_id );
|
|
||||||
|
|
||||||
$this->assertHasAPIError( 'woocommerce_api_invalid_webhook_delivery_id', 400, $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get default arguments for creating/editing a webhook.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
* @param array $args
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
protected function get_defaults( $args = array() ) {
|
|
||||||
|
|
||||||
$defaults = array(
|
|
||||||
'name' => rand_str(),
|
|
||||||
'topic' => 'coupon.created',
|
|
||||||
'delivery_url' => 'http://example.org',
|
|
||||||
);
|
|
||||||
|
|
||||||
return array( 'webhook' => wp_parse_args( $args, $defaults ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensure a valid response when creating a webhook.
|
|
||||||
* @since 2.2
|
|
||||||
* @param $response
|
|
||||||
*/
|
|
||||||
protected function check_create_webhook_response( $response ) {
|
|
||||||
|
|
||||||
$this->assertNotWPError( $response );
|
|
||||||
$this->assertArrayHasKey( 'webhook', $response );
|
|
||||||
|
|
||||||
$this->check_get_webhook_response( $response['webhook'], new WC_Webhook( $response['webhook']['id'] ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensure a valid response after editing a webhook.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
* @param $response
|
|
||||||
*/
|
|
||||||
protected function check_edit_webhook_response( $response ) {
|
|
||||||
|
|
||||||
$this->assertNotWPError( $response );
|
|
||||||
$this->assertArrayHasKey( 'webhook', $response );
|
|
||||||
|
|
||||||
$this->check_get_webhook_response( $response['webhook'], new WC_Webhook( $response['webhook']['id'] ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensure valid webhook data response.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
* @param array $response
|
|
||||||
* @param WC_Webhook $webhook
|
|
||||||
*/
|
|
||||||
protected function check_get_webhook_response( $response, $webhook ) {
|
|
||||||
|
|
||||||
$this->assertEquals( $webhook->id, $response['id'] );
|
|
||||||
$this->assertEquals( $webhook->get_name(), $response['name'] );
|
|
||||||
$this->assertEquals( $webhook->get_status() , $response['status'] );
|
|
||||||
$this->assertEquals( $webhook->get_topic(), $response['topic'] );
|
|
||||||
$this->assertEquals( $webhook->get_resource(), $response['resource'] );
|
|
||||||
$this->assertEquals( $webhook->get_event(), $response['event'] );
|
|
||||||
$this->assertEquals( $webhook->get_hooks(), $response['hooks'] );
|
|
||||||
$this->assertEquals( $webhook->get_delivery_url(), $response['delivery_url'] );
|
|
||||||
$this->assertArrayHasKey( 'created_at', $response );
|
|
||||||
$this->assertArrayHasKey( 'updated_at', $response );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensure valid webhook delivery response.
|
|
||||||
*
|
|
||||||
* @since 2.2
|
|
||||||
* @param array $response
|
|
||||||
* @param array $delivery
|
|
||||||
*/
|
|
||||||
protected function check_get_webhook_delivery_response( $response, $delivery ) {
|
|
||||||
|
|
||||||
// normalize data
|
|
||||||
unset( $response['created_at'] );
|
|
||||||
unset( $delivery['comment'] );
|
|
||||||
|
|
||||||
$this->assertEquals( $delivery, $response );
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue