woocommerce/tests/framework/helpers/class-wc-helper-coupon.php

63 lines
1.7 KiB
PHP
Raw Normal View History

2014-10-28 10:51:46 +00:00
<?php
/**
2015-11-03 13:31:20 +00:00
* Class WC_Helper_Product.
2014-10-28 10:51:46 +00:00
*
2015-11-03 13:31:20 +00:00
* This helper class should ONLY be used for unit tests!.
2014-10-28 10:51:46 +00:00
*/
class WC_Helper_Coupon {
/**
2015-11-03 13:31:20 +00:00
* Create a dummy coupon.
2014-10-28 10:51:46 +00:00
*
* @return WC_Coupon
*/
public static function create_coupon() {
// Coupon code
$coupon_code = 'dummycoupon';
// Insert post
$coupon_id = wp_insert_post( array(
'post_title' => $coupon_code,
'post_type' => 'shop_coupon',
'post_status' => 'publish',
'post_excerpt' => 'This is a dummy coupon'
) );
// Update meta
update_post_meta( $coupon_id, 'discount_type', 'fixed_cart' );
update_post_meta( $coupon_id, 'coupon_amount', '1' );
update_post_meta( $coupon_id, 'individual_use', 'no' );
update_post_meta( $coupon_id, 'product_ids', '' );
update_post_meta( $coupon_id, 'exclude_product_ids', '' );
update_post_meta( $coupon_id, 'usage_limit', '' );
update_post_meta( $coupon_id, 'usage_limit_per_user', '' );
update_post_meta( $coupon_id, 'limit_usage_to_x_items', '' );
update_post_meta( $coupon_id, 'expiry_date', '' );
update_post_meta( $coupon_id, 'free_shipping', 'no' );
update_post_meta( $coupon_id, 'exclude_sale_items', 'no' );
update_post_meta( $coupon_id, 'product_categories', array() );
update_post_meta( $coupon_id, 'exclude_product_categories', array() );
update_post_meta( $coupon_id, 'minimum_amount', '' );
update_post_meta( $coupon_id, 'maximum_amount', '' );
update_post_meta( $coupon_id, 'customer_email', array() );
update_post_meta( $coupon_id, 'usage_count', '0' );
return new WC_Coupon( $coupon_code );
}
/**
2015-11-03 13:31:20 +00:00
* Delete a coupon.
2014-10-28 10:51:46 +00:00
*
* @param $coupon_id
*
* @return bool
*/
public static function delete_coupon( $coupon_id ) {
wp_delete_post( $coupon_id, true );
return true;
}
}