2017-08-17 15:29:34 +00:00
|
|
|
<?php
|
2018-12-12 08:38:43 +00:00
|
|
|
/**
|
|
|
|
* Unit tests for Webhook functions.
|
|
|
|
* @package WooCommerce\Tests\Webhook
|
|
|
|
*/
|
2017-08-17 15:29:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Functions.
|
|
|
|
* @package WooCommerce\Tests\Webhook
|
|
|
|
* @since 2.3
|
|
|
|
*/
|
|
|
|
class WC_Tests_Webhook_Functions extends WC_Unit_Test_Case {
|
|
|
|
|
2019-12-06 02:34:59 +00:00
|
|
|
/**
|
|
|
|
* Temporarily store webhook delivery counters.
|
|
|
|
* @var array
|
|
|
|
*/
|
2019-12-06 01:41:33 +00:00
|
|
|
protected $delivery_counter = array();
|
|
|
|
|
2017-08-17 15:29:34 +00:00
|
|
|
/**
|
|
|
|
* Data provider for test_wc_is_webhook_valid_topic.
|
|
|
|
*
|
|
|
|
* @since 3.2.0
|
|
|
|
*/
|
|
|
|
public function data_provider_test_wc_is_webhook_valid_topic() {
|
|
|
|
return array(
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'action.woocommerce_add_to_cart' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'action.wc_add_to_cart' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'product.created' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'product.updated' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'product.deleted' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'product.restored' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'order.created' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'order.updated' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'order.deleted' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'order.restored' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'customer.created' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'customer.updated' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'customer.deleted' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'coupon.created' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'coupon.updated' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'coupon.deleted' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_topic( 'coupon.restored' ) ),
|
|
|
|
array( false, wc_is_webhook_valid_topic( 'coupon.upgraded' ) ),
|
|
|
|
array( false, wc_is_webhook_valid_topic( 'wc.product.updated' ) ),
|
|
|
|
array( false, wc_is_webhook_valid_topic( 'missingdot' ) ),
|
|
|
|
array( false, wc_is_webhook_valid_topic( 'with space' ) ),
|
2018-10-29 17:29:55 +00:00
|
|
|
array( false, wc_is_webhook_valid_topic( 'action.woocommerce_login_credentials' ) ),
|
2017-08-17 15:29:34 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test wc_is_webhook_valid_topic().
|
|
|
|
*
|
|
|
|
* @dataProvider data_provider_test_wc_is_webhook_valid_topic
|
|
|
|
* @since 3.2.0
|
2018-12-12 08:38:43 +00:00
|
|
|
* @param bool $assert Expected value.
|
|
|
|
* @param array $values Values to test.
|
2017-08-17 15:29:34 +00:00
|
|
|
*/
|
|
|
|
public function test_wc_is_webhook_valid_topic( $assert, $values ) {
|
|
|
|
$this->assertEquals( $assert, $values );
|
|
|
|
}
|
|
|
|
|
2018-12-12 08:33:52 +00:00
|
|
|
/**
|
|
|
|
* Data provider for test_wc_is_webhook_valid_status.
|
|
|
|
*
|
|
|
|
* @since 3.5.3
|
|
|
|
*/
|
|
|
|
public function data_provider_test_wc_is_webhook_valid_status() {
|
|
|
|
return array(
|
|
|
|
array( true, wc_is_webhook_valid_status( 'active' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_status( 'paused' ) ),
|
|
|
|
array( true, wc_is_webhook_valid_status( 'disabled' ) ),
|
|
|
|
array( false, wc_is_webhook_valid_status( 'pending' ) ),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test wc_is_webhook_valid_status
|
|
|
|
*
|
|
|
|
* @dataProvider data_provider_test_wc_is_webhook_valid_status
|
|
|
|
* @since 3.5.3
|
|
|
|
* @param bool $assert Expected outcome.
|
|
|
|
* @param array $values Values to test.
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function test_wc_is_webhook_valid_status( $assert, $values ) {
|
|
|
|
$this->assertEquals( $assert, $values );
|
|
|
|
}
|
|
|
|
|
2017-08-17 15:29:34 +00:00
|
|
|
/**
|
|
|
|
* Test wc_get_webhook_statuses().
|
|
|
|
*
|
|
|
|
* @since 3.2.0
|
|
|
|
*/
|
|
|
|
public function test_wc_get_webhook_statuses() {
|
|
|
|
$expected = array(
|
|
|
|
'active' => 'Active',
|
|
|
|
'paused' => 'Paused',
|
|
|
|
'disabled' => 'Disabled',
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals( $expected, wc_get_webhook_statuses() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test wc_load_webhooks().
|
|
|
|
*
|
|
|
|
* @since 3.2.0
|
|
|
|
*/
|
|
|
|
public function test_wc_load_webhooks() {
|
2018-09-24 02:14:07 +00:00
|
|
|
$webhook = $this->create_webhook();
|
|
|
|
$this->assertTrue( wc_load_webhooks() );
|
|
|
|
$webhook->delete( true );
|
|
|
|
$this->assertFalse( wc_load_webhooks() );
|
|
|
|
}
|
|
|
|
|
2018-09-24 03:22:16 +00:00
|
|
|
/**
|
|
|
|
* Provide webhook statuses for tests.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function provider_webhook_statuses() {
|
|
|
|
|
|
|
|
$webhook_statuses = array();
|
|
|
|
|
|
|
|
foreach ( wc_get_webhook_statuses() as $status_key => $status_string ) {
|
|
|
|
$webhook_statuses[] = array( $status_key );
|
|
|
|
}
|
|
|
|
|
|
|
|
return $webhook_statuses;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the $status param on wc_load_webhooks().
|
|
|
|
*
|
|
|
|
* @dataProvider provider_webhook_statuses
|
|
|
|
* @param string $status The status of the webhook to test.
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function test_wc_load_webhooks_status( $status ) {
|
|
|
|
|
|
|
|
$webhook = $this->create_webhook( 'action.woocommerce_some_action', $status );
|
|
|
|
|
|
|
|
$this->assertTrue( wc_load_webhooks( '' ) );
|
|
|
|
$this->assertTrue( wc_load_webhooks( $status ) );
|
|
|
|
|
|
|
|
// Find a different, but still valid status.
|
|
|
|
$other_status = ( 'active' === $status ) ? 'disabled' : 'active';
|
|
|
|
|
|
|
|
$this->assertFalse( wc_load_webhooks( $other_status ) );
|
|
|
|
|
|
|
|
$webhook->delete( true );
|
|
|
|
$this->assertFalse( wc_load_webhooks( $status ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException InvalidArgumentException
|
|
|
|
*/
|
|
|
|
public function test_wc_load_webhooks_status_invalid() {
|
|
|
|
wc_load_webhooks( 'invalid_status' );
|
|
|
|
}
|
|
|
|
|
2018-09-24 02:14:32 +00:00
|
|
|
/**
|
|
|
|
* Test the $limit param on wc_load_webhooks().
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function test_wc_load_webhooks_limit() {
|
|
|
|
global $wp_filter;
|
|
|
|
|
|
|
|
$webhook_one = $this->create_webhook( 'action.woocommerce_one_test' );
|
|
|
|
$webhook_two = $this->create_webhook( 'action.woocommerce_two_test' );
|
|
|
|
|
|
|
|
$this->assertTrue( wc_load_webhooks( '', 1 ) );
|
|
|
|
$this->assertFalse( isset( $wp_filter['woocommerce_one_test'] ) );
|
|
|
|
$this->assertTrue( isset( $wp_filter['woocommerce_two_test'] ) );
|
|
|
|
|
|
|
|
$webhook_two->delete( true );
|
|
|
|
|
|
|
|
$this->assertTrue( wc_load_webhooks( '', 1 ) );
|
|
|
|
$this->assertTrue( isset( $wp_filter['woocommerce_one_test'] ) );
|
|
|
|
|
|
|
|
$webhook_one->delete( true );
|
|
|
|
|
|
|
|
$this->assertFalse( wc_load_webhooks( '', 1 ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the $status and $limit param on wc_load_webhooks().
|
|
|
|
*
|
|
|
|
* @dataProvider provider_webhook_statuses
|
|
|
|
* @param string $status The status of the webhook to test.
|
|
|
|
*/
|
|
|
|
public function test_wc_load_webhooks_status_and_limit( $status ) {
|
|
|
|
global $wp_filter;
|
|
|
|
|
2018-09-24 12:47:11 +00:00
|
|
|
$action_one = 'woocommerce_one_test_status_' . $status;
|
|
|
|
$webhook_one = $this->create_webhook( 'action.' . $action_one, $status );
|
|
|
|
$action_two = 'woocommerce_two_test_status_' . $status;
|
|
|
|
$webhook_two = $this->create_webhook( 'action.' . $action_two, $status );
|
2018-09-24 02:14:32 +00:00
|
|
|
|
|
|
|
$this->assertTrue( wc_load_webhooks( $status, 1 ) );
|
2018-09-24 12:47:11 +00:00
|
|
|
$this->assertFalse( isset( $wp_filter[ $action_one ] ) );
|
2018-09-24 12:51:14 +00:00
|
|
|
$this->assertTrue( isset( $wp_filter[ $action_two ] ) );
|
2018-09-24 02:14:32 +00:00
|
|
|
|
|
|
|
$webhook_two->delete( true );
|
|
|
|
|
|
|
|
$this->assertTrue( wc_load_webhooks( $status, 1 ) );
|
2018-09-24 12:51:14 +00:00
|
|
|
$this->assertTrue( isset( $wp_filter[ $action_one ] ) );
|
2018-09-24 02:14:32 +00:00
|
|
|
|
|
|
|
$webhook_one->delete( true );
|
|
|
|
$this->assertFalse( wc_load_webhooks( $status, 1 ) );
|
|
|
|
}
|
|
|
|
|
2019-12-06 01:41:33 +00:00
|
|
|
/**
|
|
|
|
* Verify that a webhook that has multiple hooks defined (in WC_Webhook::get_topic_hooks()),
|
|
|
|
* is only delivered once.
|
|
|
|
*
|
|
|
|
* This example uses Customer Created (which has 3 hooks defined), to verify that creating a customer
|
|
|
|
* will only deliver the payload once per webhook.
|
|
|
|
*/
|
|
|
|
public function test_woocommerce_webhook_is_delivered_only_once() {
|
|
|
|
$webhook1 = wc_get_webhook( $this->create_webhook( 'customer.created' )->get_id() );
|
|
|
|
$webhook2 = wc_get_webhook( $this->create_webhook( 'customer.created' )->get_id() );
|
|
|
|
wc_load_webhooks( 'active' );
|
|
|
|
add_action( 'woocommerce_webhook_process_delivery', array( $this, 'woocommerce_webhook_process_delivery' ), 1, 2 );
|
|
|
|
$customer1 = WC_Helper_Customer::create_customer( 'test1', 'pw1', 'user1@example.com' );
|
|
|
|
$customer2 = WC_Helper_Customer::create_customer( 'test2', 'pw2', 'user2@example.com' );
|
|
|
|
$this->assertEquals( 1, $this->delivery_counter[ $webhook1->get_id() . $customer1->get_id() ] );
|
|
|
|
$this->assertEquals( 1, $this->delivery_counter[ $webhook2->get_id() . $customer1->get_id() ] );
|
|
|
|
$this->assertEquals( 1, $this->delivery_counter[ $webhook1->get_id() . $customer2->get_id() ] );
|
|
|
|
$this->assertEquals( 1, $this->delivery_counter[ $webhook2->get_id() . $customer2->get_id() ] );
|
|
|
|
$webhook1->delete( true );
|
|
|
|
$webhook2->delete( true );
|
|
|
|
$customer1->delete( true );
|
|
|
|
$customer2->delete( true );
|
|
|
|
remove_action( 'woocommerce_webhook_process_delivery', array( $this, 'woocommerce_webhook_process_delivery' ), 1, 2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to keep track of which webhook (and corresponding arg) has been delivered
|
|
|
|
* within the current request.
|
|
|
|
*
|
|
|
|
* @param WC_Webhook $webhook Webhook that is processing delivery.
|
2019-12-06 02:34:59 +00:00
|
|
|
* @param mixed $arg Webhook arg (usually resource ID).
|
2019-12-06 01:41:33 +00:00
|
|
|
*/
|
|
|
|
public function woocommerce_webhook_process_delivery( $webhook, $arg ) {
|
|
|
|
if ( ! isset( $this->delivery_counter[ $webhook->get_id() . $arg ] ) ) {
|
|
|
|
$this->delivery_counter[ $webhook->get_id() . $arg ] = 0;
|
|
|
|
}
|
|
|
|
$this->delivery_counter[ $webhook->get_id() . $arg ] ++;
|
|
|
|
}
|
|
|
|
|
2018-09-24 02:14:32 +00:00
|
|
|
/**
|
|
|
|
* Create and save a webhook for testing.
|
|
|
|
*
|
|
|
|
* @param string $topic The webhook topic for the test.
|
|
|
|
* @param string $status The status of the webhook to be tested.
|
|
|
|
*/
|
2018-09-24 03:22:16 +00:00
|
|
|
protected function create_webhook( $topic = 'action.woocommerce_some_action', $status = 'active' ) {
|
2018-09-24 02:14:07 +00:00
|
|
|
|
2018-12-12 08:38:43 +00:00
|
|
|
$webhook = new WC_Webhook();
|
|
|
|
$webhook->set_props(
|
|
|
|
array(
|
2018-09-24 03:22:16 +00:00
|
|
|
'status' => $status,
|
2018-12-12 08:38:43 +00:00
|
|
|
'name' => 'Testing webhook',
|
|
|
|
'user_id' => 0,
|
|
|
|
'delivery_url' => 'https://requestb.in/17jajv31',
|
|
|
|
'secret' => 'secret',
|
2018-09-24 02:14:07 +00:00
|
|
|
'topic' => $topic,
|
2018-12-12 08:38:43 +00:00
|
|
|
'api_version' => 2,
|
|
|
|
)
|
|
|
|
);
|
2017-08-17 15:29:34 +00:00
|
|
|
$webhook->save();
|
|
|
|
|
2018-09-24 02:14:07 +00:00
|
|
|
return $webhook;
|
2017-08-17 15:29:34 +00:00
|
|
|
}
|
|
|
|
}
|