|
| 1 | +<?php |
| 2 | +//load SDK |
| 3 | +require_once(dirname(dirname(__DIR__)) . '/vendor/autoload.php'); |
| 4 | + |
| 5 | +//test |
| 6 | +class MainTest extends \Codeception\Test\Unit |
| 7 | +{ |
| 8 | + protected $productsApiInstance; |
| 9 | + protected $campaignsApiInstance; |
| 10 | + protected $validationRulesApiInstance; |
| 11 | + protected $customersApiInstance; |
| 12 | + protected $qualificationsApiInstance; |
| 13 | + protected $redemptionsApiInstance; |
| 14 | + protected $stackedDiscountsApiInstance; |
| 15 | + |
| 16 | + protected function _before() |
| 17 | + { |
| 18 | + //load .env |
| 19 | + $env = parse_ini_file('.env'); |
| 20 | + |
| 21 | + $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('X-App-Id', $env["X_APP_ID"]); |
| 22 | + $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('X-App-Token', $env["X_APP_TOKEN"]); |
| 23 | + $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setHost($env["VOUCHERIFY_HOST"]); |
| 24 | + |
| 25 | + $this->productsApiInstance = new OpenAPI\Client\Api\ProductsApi( |
| 26 | + new GuzzleHttp\Client(), |
| 27 | + $config |
| 28 | + ); |
| 29 | + $this->campaignsApiInstance = new OpenAPI\Client\Api\CampaignsApi( |
| 30 | + new GuzzleHttp\Client(), |
| 31 | + $config |
| 32 | + ); |
| 33 | + $this->validationRulesApiInstance = new OpenAPI\Client\Api\ValidationRulesApi( |
| 34 | + new GuzzleHttp\Client(), |
| 35 | + $config |
| 36 | + ); |
| 37 | + $this->customersApiInstance = new OpenAPI\Client\Api\CustomersApi( |
| 38 | + new GuzzleHttp\Client(), |
| 39 | + $config |
| 40 | + ); |
| 41 | + $this->qualificationsApiInstance = new OpenAPI\Client\Api\QualificationsApi( |
| 42 | + new GuzzleHttp\Client(), |
| 43 | + $config |
| 44 | + ); |
| 45 | + $this->stackedDiscountsApiInstance = new OpenAPI\Client\Api\StackableDiscountsApi( |
| 46 | + new GuzzleHttp\Client(), |
| 47 | + $config |
| 48 | + ); |
| 49 | + $this->redemptionsApiInstance = new OpenAPI\Client\Api\RedemptionsApi( |
| 50 | + new GuzzleHttp\Client(), |
| 51 | + $config |
| 52 | + ); |
| 53 | + } |
| 54 | + |
| 55 | + // helper functions |
| 56 | + public function generateRandomString($length = 10) |
| 57 | + { |
| 58 | + $randomString = ''; |
| 59 | + $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; |
| 60 | + |
| 61 | + $max = strlen($characters) - 1; |
| 62 | + |
| 63 | + for ($i = 0; $i < $length; $i++) { |
| 64 | + $randomString .= $characters[random_int(0, $max)]; |
| 65 | + } |
| 66 | + |
| 67 | + return $randomString; |
| 68 | + } |
| 69 | + |
| 70 | + public function createTwoProducts() |
| 71 | + { |
| 72 | + $products_create_request_body = new \OpenAPI\Client\Model\ProductsCreateRequestBody(); |
| 73 | + $products_create_request_body->setSourceId($this->generateRandomString()); |
| 74 | + $products_create_request_body->setName($this->generateRandomString()); |
| 75 | + $products_create_request_body->setPrice(20000); |
| 76 | + $products_create_request_body->setAttributes(["color", "memory", "processor"]); |
| 77 | + $created_product = $this->productsApiInstance->createProduct($products_create_request_body); |
| 78 | + $products_create_request_body->setSourceId($this->generateRandomString()); |
| 79 | + $products_create_request_body->setName($this->generateRandomString()); |
| 80 | + $products_create_request_body->setPrice(66000); |
| 81 | + $created_product2 = $this->productsApiInstance->createProduct($products_create_request_body); |
| 82 | + return [$created_product, $created_product2]; |
| 83 | + } |
| 84 | + |
| 85 | + public function createValidationRule() |
| 86 | + { |
| 87 | + $created_products = $this->createTwoProducts(); |
| 88 | + $validation_rules_create_request_body = new \OpenAPI\Client\Model\ValidationRulesCreateRequestBody(); |
| 89 | + $applicable_to_created_product2 = new \OpenAPI\Client\Model\ApplicableTo(); |
| 90 | + $applicable_to_created_product2->setProductId($created_products[0]->getId()); |
| 91 | + $applicable_to_created_product2->setObject("product"); |
| 92 | + $validation_rules_create_request_body->setApplicableTo(new \OpenAPI\Client\Model\ValidationRuleBaseApplicableTo()); |
| 93 | + $validation_rules_create_request_body->getApplicableTo()->setIncluded([$applicable_to_created_product2]); |
| 94 | + $validation_rules_create_request_body->setType("basic"); |
| 95 | + $validation_rules_create_request_body->setName($this->generateRandomString()); |
| 96 | + return $this->validationRulesApiInstance->createValidationRules($validation_rules_create_request_body); |
| 97 | + } |
| 98 | + |
| 99 | + public function createDiscountCampaign() |
| 100 | + { |
| 101 | + $campaigns_create_request_body_discount = new \OpenAPI\Client\Model\CampaignsCreateRequestBody(); |
| 102 | + $campaigns_create_request_body_discount->setName($this->generateRandomString(12)); |
| 103 | + $campaigns_create_request_body_discount->setCampaignType("DISCOUNT_COUPONS"); |
| 104 | + $campaigns_create_request_body_discount->setType("AUTO_UPDATE"); |
| 105 | + $campaigns_create_request_body_discount->setVoucher(new \OpenAPI\Client\Model\CampaignsCreateRequestBodyVoucher()); |
| 106 | + $campaigns_create_request_body_discount->getVoucher()->setType("DISCOUNT_VOUCHER"); |
| 107 | + $campaigns_create_request_body_discount->getVoucher()->setDiscount(new \OpenAPI\Client\Model\Discount()); |
| 108 | + $campaigns_create_request_body_discount->getVoucher()->getDiscount()->setType("AMOUNT"); |
| 109 | + $campaigns_create_request_body_discount->getVoucher()->getDiscount()->setAmountOff(1000); |
| 110 | + return $this->campaignsApiInstance->createCampaign($campaigns_create_request_body_discount); |
| 111 | + } |
| 112 | + |
| 113 | + public function createPromotionCampaign() |
| 114 | + { |
| 115 | + $promotionTierCreateParams = new \OpenAPI\Client\Model\PromotionTierCreateParams(); |
| 116 | + $promotionTierCreateParams->setName($this->generateRandomString()); |
| 117 | + $promotionTierCreateParams->setBanner('testBanner'); |
| 118 | + $promotionTierCreateParams->setAction(new \OpenAPI\Client\Model\PromotionTierAction()); |
| 119 | + $promotionTierCreateParams->getAction()->setDiscount(new \OpenAPI\Client\Model\Discount()); |
| 120 | + $promotionTierCreateParams->getAction()->getDiscount()->setType("AMOUNT"); |
| 121 | + $promotionTierCreateParams->getAction()->getDiscount()->setAmountOff(1000); |
| 122 | + $campaigns_create_request_body_promotion = new \OpenAPI\Client\Model\CampaignsCreateRequestBody(); |
| 123 | + $campaigns_create_request_body_promotion->setName($this->generateRandomString(12)); |
| 124 | + $campaigns_create_request_body_promotion->setCampaignType("PROMOTION"); |
| 125 | + $campaigns_create_request_body_promotion->setPromotion(new \OpenAPI\Client\Model\CampaignsCreateRequestBodyPromotion()); |
| 126 | + $campaigns_create_request_body_promotion->getPromotion()->setTiers([$promotionTierCreateParams]); |
| 127 | + return $this->campaignsApiInstance->createCampaign($campaigns_create_request_body_promotion); |
| 128 | + } |
| 129 | + |
| 130 | + public function createCustomer() |
| 131 | + { |
| 132 | + $customersCreateRequestBody = new \OpenAPI\Client\Model\CustomersCreateRequestBody(); |
| 133 | + $customersCreateRequestBody->setSourceId('test123'); |
| 134 | + $customersCreateRequestBody->setName('test123'); |
| 135 | + $customersCreateRequestBody->setAddress(new \OpenAPI\Client\Model\CustomerBaseAddress()); |
| 136 | + $customersCreateRequestBody->getAddress()->setCountry('US'); |
| 137 | + $customersCreateRequestBody->getAddress()->setCity('Vice City'); |
| 138 | + $customersCreateRequestBody->getAddress()->setLine1('123'); |
| 139 | + $customersCreateRequestBody->getAddress()->setPostalCode('60089'); |
| 140 | + return $this->customersApiInstance->createCustomer($customersCreateRequestBody); |
| 141 | + } |
| 142 | + |
| 143 | + public function deleteCampaign($id) |
| 144 | + { |
| 145 | + return $this->campaignsApiInstance->deleteCampaign($id, true); |
| 146 | + } |
| 147 | + |
| 148 | + // tests |
| 149 | + public function testCreateTwoProducts() |
| 150 | + { |
| 151 | + $this->createTwoProducts(); |
| 152 | + } |
| 153 | + |
| 154 | + public function testCreateValidationRule() |
| 155 | + { |
| 156 | + $this->createValidationRule(); |
| 157 | + } |
| 158 | + |
| 159 | + public function testCreateAndRemoveDiscountCampaign() |
| 160 | + { |
| 161 | + $created_discount_campaign = $this->createDiscountCampaign(); |
| 162 | + $this->deleteCampaign($created_discount_campaign->getId()); |
| 163 | + } |
| 164 | + |
| 165 | + public function testCreateAndRemovePromotionCampaign() |
| 166 | + { |
| 167 | + $created_discount_campaign = $this->createPromotionCampaign(); |
| 168 | + $this->deleteCampaign($created_discount_campaign->getId()); |
| 169 | + } |
| 170 | + |
| 171 | + public function testListCampaigns() |
| 172 | + { |
| 173 | + $limit = 2; // int | A limit on the number of objects to be returned. Limit can range between 1 and 100 items. |
| 174 | + $page = 1; // int | Which page of results to return. |
| 175 | + $campaign_type = \OpenAPI\Client\Model\ParameterCampaignType::DISCOUNT_COUPONS->value; // ParameterCampaignType |
| 176 | + $expand = \OpenAPI\Client\Model\ParameterExpandListCampaigns::CATEGORY->value; // ParameterExpandListCampaigns |
| 177 | + $order = \OpenAPI\Client\Model\ParameterOrderListCampaigns::CREATED_AT2->value; // ParameterOrderListCampaigns |
| 178 | + $this->campaignsApiInstance->listCampaigns($limit, $page, $campaign_type, $expand, $order); |
| 179 | + } |
| 180 | + |
| 181 | + public function testCreateCustomer() |
| 182 | + { |
| 183 | + $this->createCustomer(); |
| 184 | + } |
| 185 | + |
| 186 | + public function testCheckEligibilityAndDoStackedValidationAndRedemption() |
| 187 | + { |
| 188 | + $created_discount_campaign = $this->createDiscountCampaign(); |
| 189 | + |
| 190 | + $created_customer = $this->createCustomer(); |
| 191 | + $created_product = $this->createTwoProducts()[0]; |
| 192 | + |
| 193 | + $order_item = new \OpenAPI\Client\Model\OrderItem(); |
| 194 | + $order_item->setPrice($created_product->getPrice()); |
| 195 | + $order_item->setQuantity(3); |
| 196 | + $order_item->setProductId($created_product->getId()); |
| 197 | + |
| 198 | + // check eligibility |
| 199 | + $qualifications_check_eligibility_request_body = new \OpenAPI\Client\Model\QualificationsCheckEligibilityRequestBody(); |
| 200 | + $qualifications_check_eligibility_request_body->setCustomer(new \OpenAPI\Client\Model\Customer()); |
| 201 | + $qualifications_check_eligibility_request_body->getCustomer()->setId($created_customer->getId()); |
| 202 | + $qualifications_check_eligibility_request_body->setOrder(new \OpenAPI\Client\Model\Order()); |
| 203 | + $qualifications_check_eligibility_request_body->getOrder()->setStatus("CREATED"); |
| 204 | + $qualifications_check_eligibility_request_body->getOrder()->setItems([$order_item]); |
| 205 | + $qualifications_check_eligibility_request_body->setMode("BASIC"); |
| 206 | + $qualifications_check_eligibility_request_body->setScenario("ALL"); |
| 207 | + $check_eligibility_result = $this->qualificationsApiInstance->checkEligibility($qualifications_check_eligibility_request_body); |
| 208 | + |
| 209 | + $applicable_promotion_tiers = array_slice(array_filter($check_eligibility_result->getRedeemables()->getData(), function ($redeemable) { |
| 210 | + return $redeemable->getObject() === 'promotion_tier'; |
| 211 | + }), 0, 3); |
| 212 | + $applicable_promotion_tiers_ids = array_map(function ($promotion_tier) { |
| 213 | + return $promotion_tier->getId(); |
| 214 | + }, $applicable_promotion_tiers); |
| 215 | + |
| 216 | + $campaign_voucher = $this->campaignsApiInstance->addVouchersToCampaign($created_discount_campaign->getId(), 1); |
| 217 | + |
| 218 | + // stacked validation |
| 219 | + $validations_validate_request_body = new \OpenAPI\Client\Model\ValidationsValidateRequestBody(); |
| 220 | + $validations_validate_request_body->setOrder(new \OpenAPI\Client\Model\Order()); |
| 221 | + $validations_validate_request_body->getOrder()->setStatus("CREATED"); |
| 222 | + $validations_validate_request_body->getOrder()->setItems([$order_item]); |
| 223 | + $validations_validate_request_body->setCustomer(new \OpenAPI\Client\Model\Customer()); |
| 224 | + $validations_validate_request_body->getCustomer()->setSourceId($created_customer->getSourceId()); |
| 225 | + $validations_validate_request_body_redeemables = []; |
| 226 | + foreach ($applicable_promotion_tiers_ids as $promotion_tier_id) { |
| 227 | + $redeemable = new \OpenAPI\Client\Model\StackableValidateRedeemBaseRedeemablesItem(); |
| 228 | + $redeemable->setId($promotion_tier_id); |
| 229 | + $redeemable->setObject("promotion_tier"); |
| 230 | + array_push($validations_validate_request_body_redeemables, $redeemable); |
| 231 | + } |
| 232 | + $voucher_redeemable = new \OpenAPI\Client\Model\StackableValidateRedeemBaseRedeemablesItem(); |
| 233 | + $voucher_redeemable->setId($campaign_voucher->getCode()); |
| 234 | + $voucher_redeemable->setObject("voucher"); |
| 235 | + array_push($validations_validate_request_body_redeemables, $voucher_redeemable); |
| 236 | + $validations_validate_request_body->setRedeemables($validations_validate_request_body_redeemables); |
| 237 | + $this->stackedDiscountsApiInstance->validateStackedDiscounts($validations_validate_request_body); |
| 238 | + |
| 239 | + // stacked redemption |
| 240 | + $redemptions_redeem_request_body = new \OpenAPI\Client\Model\RedemptionsRedeemRequestBody(); |
| 241 | + $redemptions_redeem_request_body->setOrder(new \OpenAPI\Client\Model\Order()); |
| 242 | + $redemptions_redeem_request_body->getOrder()->setStatus("CREATED"); |
| 243 | + $redemptions_redeem_request_body->getOrder()->setItems([$order_item]); |
| 244 | + $redemptions_redeem_request_body->setCustomer(new \OpenAPI\Client\Model\Customer()); |
| 245 | + $redemptions_redeem_request_body->getCustomer()->setSourceId($created_customer->getSourceId()); |
| 246 | + $redemptions_redeem_request_body->setRedeemables($validations_validate_request_body_redeemables); |
| 247 | + $this->stackedDiscountsApiInstance->redeemStackedDiscounts($redemptions_redeem_request_body); |
| 248 | + } |
| 249 | + |
| 250 | + public function testListRedemptions() |
| 251 | + { |
| 252 | + $this->redemptionsApiInstance->listRedemptions(1, 1); |
| 253 | + } |
| 254 | +} |
0 commit comments