2014-09-01 06:04:02 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* Webhook Delivery Test Factory
|
2014-09-01 06:04:02 +00:00
|
|
|
*
|
2014-09-05 18:34:51 +00:00
|
|
|
* @see \WP_UnitTest_Factory_For_Comment
|
2014-09-01 06:04:02 +00:00
|
|
|
* @since 2.2
|
|
|
|
*/
|
|
|
|
class WC_Unit_Test_Factory_For_Webhook_Delivery extends WP_UnitTest_Factory_For_Comment {
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Setup factory.
|
2014-09-01 06:04:02 +00:00
|
|
|
*
|
|
|
|
* @since 2.2
|
|
|
|
* @param null $factory
|
|
|
|
*/
|
|
|
|
public function __construct( $factory = null ) {
|
|
|
|
|
|
|
|
parent::__construct( $factory );
|
|
|
|
|
|
|
|
// set defaults
|
|
|
|
$this->default_generation_definitions = array(
|
2016-10-12 10:16:30 +00:00
|
|
|
'comment_author' => 'WooCommerce',
|
2014-09-01 06:04:02 +00:00
|
|
|
'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',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Create a mock webhook delivery.
|
2014-09-01 06:04:02 +00:00
|
|
|
*
|
|
|
|
* @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;
|
|
|
|
}
|
|
|
|
}
|