123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
- use PHPUnit\Framework\TestCase;
- define('APP_ID', 'test');
- define('BASE_ROOT_PATH', str_replace('/test', '', dirname(__FILE__)));
- require_once(BASE_ROOT_PATH . '/global.php');
- require_once(BASE_CORE_PATH . '/lrlz.php');
- require_once(BASE_ROOT_PATH . '/fooder.php');
- require_once(BASE_CORE_PATH . '/framework/function/http.php');
- require_once(BASE_HELPER_PATH . '/refill/RefillFactory.php');
- require_once(BASE_HELPER_PATH . '/mtopcard/mtopcard.php');
- const LocalTest = 1;
- const NetTest = 2;
- const CurrentTest = NetTest;
- class TestRefillYl extends TestCase
- {
- public static function setUpBeforeClass(): void
- {
- Base::run_util();
- refill\RefillFactory::instance();
- }
- private function getProvider($name,$type = 'RefillPhone')
- {
- $file = BASE_HELPER_RAPI_PATH . "/$name/{$type}.php";
- if(!file_exists($file)){
- Log::record("provider api file={$file} not exist.",Log::DEBUG);
- return false;
- } else {
- require_once($file);
- Log::record("file={$file} load success.",Log::DEBUG);
- }
- $class_name = "refill\\{$name}\\{$type}";
- if (class_exists($class_name, false)) {
- $caller = new $class_name([]);
- return $caller;
- } else {
- $error = "Base Error: class {$class_name} isn't exists!";
- Log::record($error, Log::ERR);
- return false;
- }
- }
- private function make_sn()
- {
- return mt_rand(1000, 9999)
- . sprintf('%010d', time())
- . sprintf('%06d', (float)microtime() * 1000000);
- }
- public function testYamiao_high()
- {
- // $provider = $this->getProvider('yamiao_high');
- // $resp = $provider->balance();
- // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
- // $resp = $provider->query(['order_sn' => '80031648092448376229']);
- $body = '{"orderId":"220324112752228331","appId":"ILo9IfHYg0","outOrderId":"80031648092448376229","sign":"1ef1ba02308669673ebcb136cb67e1c1","orderStatus":"3","completeTime":"20220324112803","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
- $params = json_decode($body, true);
- $provider = $this->getProvider('yamiao_high','RefillCallBack');
- $ret = $provider->verify($params);
- $resp = $provider->notify($params);
- }
- public function testYamiao_normal()
- {
- // $provider = $this->getProvider('yamiao_normal');
- // $resp = $provider->balance();
- // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
- // $resp = $provider->query(['order_sn' => '65931648092912669252']);
- $body = '{"orderId":"220324113519231696","appId":"Mxh2JUZocr","outOrderId":"65931648092912669252","sign":"6560cab5e7ec5f265b04632c4c2a1f1a","orderStatus":"3","completeTime":"20220324113522","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
- $params = json_decode($body, true);
- $provider = $this->getProvider('yamiao_normal','RefillCallBack');
- $ret = $provider->verify($params);
- $resp = $provider->notify($params);
- }
- public function testYamiaoman()
- {
- $provider = $this->getProvider('yamiaoman');
- $resp = $provider->balance();
- // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
- // $resp = $provider->query(['order_sn' => '53351647242979116742']);
- // $body = '{"orderId":"220314152954756093","appId":"zIODZmzSCk","outOrderId":"53351647242979116742","sign":"41ad7d4b4b26559377c6443d2b0d6c68","orderStatus":"3","completeTime":"20220314172722","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
- // $params = json_decode($body, true);
- // $provider = $this->getProvider('yamiaoman','RefillCallBack');
- // $ret = $provider->verify($params);
- // $resp = $provider->notify($params);
- }
- public function testGuantu()
- {
- // $provider = $this->getProvider('guantu');
- // $resp = $provider->balance();
- // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
- // $resp = $provider->query(['order_sn' => '59041648111767968756']);
- $body = ' {"orderId":"220324164934076577","appId":"t7gmui2D3w","outOrderId":"59041648111767968756","sign":"e957df33cfaa777cd3c2349cd2023996","orderStatus":"3","completeTime":"20220324165033","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
- $params = json_decode($body, true);
- $provider = $this->getProvider('guantu','RefillCallBack');
- $ret = $provider->verify($params);
- $resp = $provider->notify($params);
- }
- public function testLechong()
- {
- $provider = $this->getProvider('lechong');
- // $resp = $provider->balance();
- // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
- // $resp = $provider->query(['order_sn' => '65361648114672703928']);
- $body = '{"sellerid":"65361648114672703928","agentcode":"202203241556","account":"MTg1MDA2MDgzMzM=","value":"50","payvalue":"47.8000","voucher":"","createtime":"20220324173803","endtime":"20220324173857","state":"4","remark":"","time":"20220324174224","sign":"8a2c011095cadb6dc5abd00c25a11d1c"}';
- $params = json_decode($body, true);
- $provider = $this->getProvider('lechong','RefillCallBack');
- $ret = $provider->verify($params);
- $resp = $provider->notify($params);
- }
- }
|