TestRefill.php 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559
  1. <?php
  2. use PHPUnit\Framework\TestCase;
  3. use const mtopcard\ProvinceList;
  4. define('APP_ID', 'test');
  5. define('BASE_ROOT_PATH', str_replace('/test', '', dirname(__FILE__)));
  6. require_once(BASE_ROOT_PATH . '/global.php');
  7. require_once(BASE_CORE_PATH . '/lrlz.php');
  8. require_once(BASE_ROOT_PATH . '/fooder.php');
  9. require_once(BASE_CORE_PATH . '/framework/function/http.php');
  10. require_once(BASE_HELPER_PATH . '/refill/RefillFactory.php');
  11. require_once(BASE_HELPER_PATH . '/mtopcard/mtopcard.php');
  12. const LocalTest = 1;
  13. const NetTest = 2;
  14. const CurrentTest = NetTest;
  15. class TestRefill extends TestCase
  16. {
  17. private $mReqHost;
  18. private $mKey;
  19. private $mMchid;
  20. public function __construct(?string $name = null, array $data = [], $dataName = '')
  21. {
  22. parent::__construct($name, $data, $dataName);
  23. if (CurrentTest == LocalTest) {
  24. $this->mReqHost = BASE_SITE_URL;
  25. $this->mMchid = 1;
  26. $this->mKey = '1ff02223b771c0414468c8892151c602';
  27. } else {
  28. $this->mReqHost = 'https://www.xyzshops.cn';
  29. // $this->mReqHost = 'http://121.89.196.45';
  30. $this->mMchid = 1092;
  31. $this->mKey = '210fe406954220f56085997d6a4c5b80';
  32. }
  33. }
  34. public static function setUpBeforeClass(): void
  35. {
  36. Base::run_util();
  37. refill\RefillFactory::instance();
  38. }
  39. public function testMerchantPrice()
  40. {
  41. $price = new refill\merchant_price();
  42. }
  43. public function testCallBack()
  44. {
  45. }
  46. public function testFactory()
  47. {
  48. $providers = refill\RefillFactory::instance();
  49. }
  50. private function make_sn()
  51. {
  52. return mt_rand(1000, 9999)
  53. . sprintf('%010d', time())
  54. . sprintf('%06d', (float)microtime() * 1000000);
  55. }
  56. public function testRandomMobile()
  57. {
  58. $no = "1" . mt_rand(1, 9999999999);
  59. Log::record("phone no={$no}", Log::DEBUG);
  60. }
  61. public function testBJBAddPhone()
  62. {
  63. $providers = new refill\bjb\RefillPhone([]);
  64. for ($i = 3; $i > 0; --$i) {
  65. $resp = $providers->add(13911129867, 4, 10, ['order_sn' => $this->make_sn()]);
  66. $resp = $providers->add(18500608333, 4, 10, ['order_sn' => $this->make_sn()]);
  67. $resp = $providers->add(18510683168, 4, 10, ['order_sn' => $this->make_sn()]);
  68. $resp = $providers->add(18513846008, 4, 10, ['order_sn' => $this->make_sn()]);
  69. $resp = $providers->add(18518237398, 4, 10, ['order_sn' => $this->make_sn()]);
  70. }
  71. }
  72. public function testOilticket()
  73. {
  74. $providers = new refill\bjb\RefillPhone([]);
  75. }
  76. public function testBjbRet()
  77. {
  78. $resp = '0|提交成功|14936.8600';
  79. $resp = explode('|', $resp);
  80. }
  81. public function testIpWhiteList()
  82. {
  83. $x = serialize(['47.99.57.105']);
  84. $ips = unserialize('a:1:{i:0;s:12:"47.99.57.105";}');
  85. if (!empty($ips)) {
  86. $addr = '47.99.57.105';
  87. Log::record("request ip:{$addr}", Log::DEBUG);
  88. if (!in_array($addr, $ips)) {
  89. throw new Exception("请求地址不在白名单中");
  90. }
  91. }
  92. }
  93. public function testBaizePhone()
  94. {
  95. $providers = new refill\baizeyd\RefillPhone([]);
  96. // $resp = $providers->add(17801048874, 5, 10, ['order_sn' => $this->make_sn()]);
  97. $resp = $providers->query(['order_sn' => '930668700375312006']);
  98. // $str = 'amount=10.00&orderId=720668384771999671&phone=13911129867&payTime=2021-03-06+22%3A26%3A12&sign=94dfe83221f7768650e70cce08879b60&appKey=uECmTOFAY6RPCTtI&payUrl=&statusDes=%E6%94%AF%E4%BB%98%E5%A4%B1%E8%B4%A5&status=7';
  99. // $input = $this->parse_request($str);
  100. // $input['amount'] = 10.00;
  101. // $input['orderId'] = '92391614943913061206';
  102. // $input['phone'] = 17801048874;
  103. // $input['payTime'] = '2021-03-05 19:31:55';
  104. // $input['sign'] = 'bef6ae50319fb1e8cb3f21302f0abef8';
  105. // $input['appKey'] = 'uECmTOFAY6RPCTtI';
  106. // $input['payUrl'] = '';
  107. // $input['statusDes'] = '支付失败';
  108. // $input['status'] = 7;
  109. // refill\RefillFactory::instance()->notify('baizeyd',$input);
  110. }
  111. private function parse_request($squery)
  112. {
  113. if (empty($squery)) return [];
  114. $result = [];
  115. $params = preg_split('/&/', $squery);
  116. foreach ($params as $pair) {
  117. if (empty($pair)) continue;
  118. $kv = explode('=', $pair);
  119. $count = count($kv);
  120. if ($count === 1) {
  121. $key = $kv[0];
  122. $val = "";
  123. } elseif ($count === 2) {
  124. $key = $kv[0];
  125. $val = urldecode($kv[1]);
  126. } else {
  127. continue;
  128. }
  129. if (!empty($key)) {
  130. $result[$key] = $val;
  131. }
  132. }
  133. return $result;
  134. }
  135. public function testAmPhone()
  136. {
  137. // $providers = new refill\aming\RefillPhone([]);
  138. // $resp = $providers->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  139. $input['result'] = 'fail';
  140. $input['msg'] = 0;
  141. $input['order'] = 'null';
  142. $input['phone_no'] = 18500608333;
  143. $input['sign'] = 'c925ad19c63c3eb36ffc52d938e24604';
  144. $input['amount'] = '10.00';
  145. $input['op_no'] = '42601615096072517841';
  146. refill\RefillFactory::instance()->notify('aming', $input);
  147. }
  148. public function testBhcPhone()
  149. {
  150. $providers = new refill\binghc\RefillPhone([]);
  151. $resp = $providers->query(['order_sn' => 250668618955902006]);
  152. // $input['result'] = 'fail';
  153. // $input['msg'] = 0;
  154. // $input['order'] = 'null';
  155. // $input['phone_no'] = 18500608333;
  156. // $input['sign'] = 'c3aa38ee07cd1b69bfd5ead56f6da8d6';
  157. // $input['amount'] = '10.00';
  158. // $input['op_no'] = '24061615096361999002';
  159. // refill\RefillFactory::instance()->notify('binghc',$input);
  160. }
  161. public function testRuishunPhone()
  162. {
  163. // $providers = new refill\ruishun\RefillPhone([]);
  164. // $resp = $providers->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  165. $input['result'] = 'fail';
  166. $input['msg'] = 0;
  167. $input['order'] = null;
  168. $input['phone_no'] = 18500608333;
  169. $input['sign'] = 'e234f7d1c0458ca236f53a0008436b46';
  170. $input['amount'] = "10.00";
  171. $input['op_no'] = '76361615095403188513';
  172. refill\RefillFactory::instance()->notify('ruishun', $input);
  173. }
  174. public function testWuchenPhone()
  175. {
  176. $providers = new refill\wuchen\RefillPhone([]);
  177. // $resp = $providers->add('13699279618', 5, 30, ['order_sn' => $this->make_sn()]);
  178. $resp = $providers->query(['order_sn' => '790668630498425006']);
  179. // $input['app_id'] = '70016';
  180. // $input['message'] = 'fail';
  181. // $input['order_sn'] = '43101615277293035501';
  182. // $input['platform_order_id'] = '';
  183. // $input['sign'] = '5ea59f8ac51a518f2c622824d7db2a04';
  184. // $input['state'] = "fail";
  185. // $input['sys_sn'] = '202103091608231836913889';
  186. // $input['timestamp'] = '1615277361';
  187. // refill\RefillFactory::instance()->notify('wuchen',$input);
  188. }
  189. public function testYibaoPhone()
  190. {
  191. $providers = new refill\yibao\RefillPhone([]);
  192. // $resp = $providers->add('13699279618', 5, 30, ['order_sn' => $this->make_sn()]);
  193. $resp = $providers->query(['ch_trade_no' => '31215002972142736']);
  194. // $str = '{"amount":"30","carrierOrderNo":null,"mobile":"13699279618","orderNo":"27961615532426088043","orderStatus":3,"sign":"012BA0B093A0473D7DD1634A8356DCB1","tradeNo":"31215002972142736"}';
  195. // $data = json_decode($str,true);
  196. // refill\RefillFactory::instance()->notify('yibao',$data);
  197. }
  198. public function testAmingydPhone()
  199. {
  200. $providers = new refill\amingyd\RefillPhone([]);
  201. // $resp = $providers->add('13699279618', 5, 30, ['order_sn' => $this->make_sn()]);
  202. $resp = $providers->query(['order_sn' => '15421615627436792938']);
  203. // $str = '{"orderId":"15421615627436792938","amount":3000,"appKey":"40695059","timestamp":1615627503,"status":3,"operatorId":"508353854027968617","sign":"2A0562319ED4845AB9E3812A58F0B425"}';
  204. // $data = json_decode($str,true);
  205. // refill\RefillFactory::instance()->notify('amingyd',$data);
  206. }
  207. public function testChukaPhone()
  208. {
  209. $providers = new refill\chuka\RefillPhone([]);
  210. // $resp = $providers->add('18500608333', 5, 20, ['order_sn' => $this->make_sn()]);
  211. // $resp = $providers->query(['order_sn' => '92161616314884175179']);
  212. $params['customerId'] = '101787';
  213. $params['orderno'] = 'C1616314888506705492';
  214. $params['tmporder'] = '92161616314884175179';
  215. $params['code'] = '1';
  216. $params['number'] = '18500608333';
  217. $params['money'] = '20';
  218. $params['amount'] = '0';
  219. refill\RefillFactory::instance()->notify('chuka', $params);
  220. }
  221. public function testLegouPhone()
  222. {
  223. $providers = new refill\legou\RefillPhone([]);
  224. // $resp = $providers->add('18500608333', 5, 30, ['order_sn' => '200649600557718881' , 'order_id' => 247 , 'buyer_id' => 52667]);
  225. $resp = $providers->query(['order_sn' => '200649600557718881', 'order_id' => 247]);
  226. $params['username'] = 'lzdc';
  227. $params['orderNumber'] = '690653407667699667';
  228. $params['cardNumber'] = '18500608333';
  229. $params['orderMoney'] = '30.0';
  230. $params['orderPay'] = '1.0';
  231. $params['resultCode'] = '2';
  232. $params['rechargeDesc'] = '{"rechargeStatus":600200,"rechargeDesc":"充值成功"}';
  233. $params['rechargeVoucher'] = '100407307092103291444050244599';
  234. $params['sign'] = 'c054884422a8c3749cbfda0e82b9af70';
  235. // refill\RefillFactory::instance()->notify('legou',$params);
  236. }
  237. public function testFeinimoshu()
  238. {
  239. $providers = new refill\feinimoshu\RefillOil([]);
  240. // $resp = $providers->query(['order_sn' => '3708210680873565742704']);
  241. $resp = $providers->balance();
  242. }
  243. public function testFeinimoshu_hf()
  244. {
  245. $providers = new refill\feinimoshu_hf\RefillPhone([]);
  246. // $resp = $providers->query(['order_sn' => '3708210680873565742704']);
  247. $resp = $providers->balance();
  248. }
  249. public function testFeiniaoPhone()
  250. {
  251. $providers = new refill\feiniao\RefillPhone([]);
  252. // $order_sn = $this->make_sn();
  253. // Log::record($order_sn, Log::DEBUG);
  254. // $resp = $providers->add('13699279618', 4, 50, ['order_sn' => $order_sn]);
  255. $resp = $providers->query(['order_sn' => '28641617178590981824']);
  256. $params['result'] = 'fail';
  257. $params['msg'] = '0';
  258. $params['order'] = 'null';
  259. $params['phone_no'] = '18500608333';
  260. $params['amount'] = '100.00';
  261. $params['op_no'] = '64591617090761169983';
  262. $params['settle'] = '0';
  263. $params['sign'] = '907d2640f96e8d78d59202d090ddb470';
  264. // refill\RefillFactory::instance()->notify('feiniao',$params);
  265. }
  266. public function testTongyPhone()
  267. {
  268. $providers = new refill\tongy\RefillPhone([]);
  269. // $resp = $providers->add('18500608333', 5, 30, ['order_sn' => '690653407667699667', 'order_id' => 248, 'buyer_id' => 52667]);
  270. // $params['UserId'] = '100857';
  271. // $params['ShopId'] = '300000';
  272. // $params['SysOrderId'] = '21070215141210085700010';
  273. // $params['OrderId'] = '9241650678554051429291';
  274. // $params['State'] = '5';
  275. // $params['Timestamp'] = '1625210740472';
  276. // $params['sign'] = 'C5C4E888A3B678470071CDA6DC31719D';
  277. // $params['ParValue'] = '100.0000';
  278. // $params['VoucherType'] = '';
  279. // $params['VoucherContent'] = '';
  280. // $params['CreateTime'] = '2021-07-02 15:14:12';
  281. // $params['CompleteTime'] = '2021-07-02 15:25:40';
  282. // refill\RefillFactory::instance()->notify('tongy',$params);
  283. $resp = $providers->balance();
  284. }
  285. public function testWeiyiPhone()
  286. {
  287. $providers = new refill\weiyi\RefillPhone([]);
  288. // $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  289. // $resp = $providers->query(['order_sn' => '90401621489214002876']);
  290. $body = '{"userid":"1f68bb3452134a6cbaa4","ordernum":"90401621489214002876","mobile":"13699279618","timestamp":"20210520134039","state":"2","desc":"%E5%85%85%E5%80%BC%E6%88%90%E5%8A%9F","sign":"865e8d886b92e019df1d039fccf8df46"}';
  291. $params = json_decode($body, true);
  292. refill\RefillFactory::instance()->notify('weiyi', $params);
  293. }
  294. public function testWeiyimanPhone()
  295. {
  296. $providers = new refill\weiyiman\RefillPhone([]);
  297. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  298. // $resp = $providers->query(['order_sn' => '47591620898269370373']);
  299. $data = '{"userid":"46dbb0c992644da881d0","ordernum":"47591620898269370373","mobile":"18500608333","timestamp":"20210513211050","state":"2","desc":"%E5%85%85%E5%80%BC%E6%88%90%E5%8A%9F","serialno":"173313182872","sign":"e9d2ea85b43808d1587793ae329cdb0b"}';
  300. $params = json_decode($data, true);
  301. refill\RefillFactory::instance()->notify('weiyiman', $params);
  302. }
  303. public function testWeiyiWtPhone()
  304. {
  305. $providers = new refill\weiyiwt\RefillPhone([]);
  306. // $resp = $providers->add(18074608795, 6, 50, ['order_sn' => $this->make_sn()]);
  307. // $resp = $providers->query(['order_sn' => '38451621924366009924']);
  308. $body = '{"szOrderId":"38451621924366009924","fSalePrice":"47.25","szAgentId":"200016","nFlag":"2","szVerifyString":"a0b5bfc0bbf6c121a4cd74d9ecb2427d","szPhoneNum":"18074608795","szRtnMsg":"1000000083421052514441119833","nDemo":"50"}';
  309. $params = json_decode($body, true);
  310. refill\RefillFactory::instance()->notify('weiyiwt', $params);
  311. }
  312. public function testXiaochuangPhone()
  313. {
  314. $providers = new refill\xiaochuang\RefillPhone([]);
  315. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  316. // $resp = $providers->query(['order_sn' => '84891623028826872085']);
  317. // $body = '{"fail_msg":"","order_sn":"84891623028826872085","order_status":"4","p_order_sn":"2021060709203558011797441162","sign":"E842203C3CA48E924D60B1B56AB93C3B"}';
  318. // $params = json_decode($body , true);
  319. // refill\RefillFactory::instance()->notify('xiaochuang',$params);
  320. $resp = $providers->balance();
  321. }
  322. public function testYintengPhone()
  323. {
  324. $providers = new refill\yinteng\RefillPhone([]);
  325. // $resp = $providers->add(18074608795, 6, 50, ['order_sn' => $this->make_sn()]);
  326. // $resp = $providers->query(['order_sn' => '49631623737966351874']);
  327. // $data = '{"szOrderId":"49631623737966351874","fSalePrice":"47.35","szAgentId":"200009","nFlag":"2","szVerifyString":"01c5fafb1d67175f0533b69a762286e8","szPhoneNum":"18074608795","szRtnMsg":"1000000083421061514495400262","nDemo":"50"}';
  328. // $params = json_decode($data , true);
  329. // refill\RefillFactory::instance()->notify('yinteng',$params);
  330. $resp = $providers->balance();
  331. }
  332. public function testMoxjPhone()
  333. {
  334. $providers = new refill\moxj\RefillPhone([]);
  335. // $resp = $providers->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  336. $resp = $providers->query(['order_sn' => '91131623906171663147']);
  337. $data = '{"result":"fail","msg":"0","order":"null","phone_no":"18500608333","amount":"50.0","op_no":"84901623900668776864","sign":"896b54914a07b814573d7f6cc403848a"}';
  338. $params = json_decode($data, true);
  339. // refill\RefillFactory::instance()->notify('moxj',$params);
  340. }
  341. public function testMoxj_fsPhone()
  342. {
  343. $providers = new refill\moxj_fs\RefillPhone([]);
  344. // $resp = $providers->add(15139608757, 4, 100, ['order_sn' => $this->make_sn()]);
  345. // $resp = $providers->query(['order_sn' => '42741624242693157165']);
  346. // $data = '{"amount":"100","charge_type":"2","code":"1","partner_id":"58","phone":"15139608757","sign":"30d193dba4101e50851ed0efabb75fb1","partner_order_no":"42741624242693157165","official_order_id":"20210621103211948830"}';
  347. // $params = json_decode($data , true);
  348. // refill\RefillFactory::instance()->notify('moxj_fs',$params);
  349. $resp = $providers->balance();
  350. }
  351. public function testZanzanquickPhone()
  352. {
  353. $providers = new refill\zanzanquick\RefillPhone([]);
  354. // $resp = $providers->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  355. // $resp = $providers->query(['order_sn' => '90831623925322675223']);
  356. // $data = '{"userid":"d845a4635f7e47668f5e","ordernum":"90831623925322675223","mobile":"18500608333","timestamp":"20210617182545","state":"2","desc":"%E5%85%85%E5%80%BC%E6%88%90%E5%8A%9F","serialno":"110103307232106171824530567108","sign":"0152c723f25be19f21d723e24b2c8987"}';
  357. // $params = json_decode($data , true);
  358. // refill\RefillFactory::instance()->notify('zanzanquick',$params);
  359. $resp = $providers->balance();
  360. }
  361. public function testFengyemanPhone()
  362. {
  363. $providers = new refill\fengyeman\RefillPhone([]);
  364. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  365. // $resp = $providers->query(['order_sn' => '46221624265179185139']);
  366. // $data = '{"order_id":"46221624265179185139","mchid":"HF67a65_10008","tel":"18500608333","price":"50.00","sign":"2bb4ed5edc97ba7f60cf3848aab82cf4","out_order_id":"206877995456","status":"1"}';
  367. // $params = json_decode($data , true);
  368. // refill\RefillFactory::instance()->notify('fengyeman',$params);
  369. $resp = $providers->balance();
  370. }
  371. public function testMoxj_ydPhone()
  372. {
  373. $providers = new refill\moxj_yd\RefillPhone([]);
  374. // $resp = $providers->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  375. // $resp = $providers->query(['order_sn' => '52101624413125875436']);
  376. // $data = '{"customer_order_no":"47651624412877257722","status":1,"merchant_id":"76505818","sign":"c185a0f2152b3ac3ee3f29009dec5a6b"}';
  377. // $params = json_decode($data , true);
  378. // refill\RefillFactory::instance()->notify('moxj_yd',$params);
  379. $resp = $providers->balance();
  380. }
  381. public function testXingzyPhone()
  382. {
  383. $providers = new refill\xingzy\RefillPhone([]);
  384. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  385. // $resp = $providers->query(['order_sn' => '76791624441423287373', 'ch_trade_no' => '210623174333941000']);
  386. // $data = '{"access_key":"211394702","code":3,"data":{"sellprice":26.7,"phone":"18500608333","pass":null,"official_id":null,"official_ch":null},"orderid":210623173427222000,"out_trade_no":"40441624440876653628","sign":"E1g7uHAaJI056jb1fK1DQztkpN4=","timestamp":1624441437918}';
  387. // $params = json_decode($data , true);
  388. // refill\RefillFactory::instance()->notify('xingzy',$params);
  389. $resp = $providers->balance();
  390. }
  391. public function testYuanmaiPhone()
  392. {
  393. $providers = new refill\yuanmai\RefillPhone([]);
  394. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  395. // $resp = $providers->query(['order_sn' => '24231624865882625203', 'ch_trade_no' => '210623174333941000']);
  396. // $data = '{"orderid":"24231624865882625203","status":"2","ordermoney":"50","sign":"94be5b1754ffcc7f0fe1551072146941","spsno":""}';
  397. // $params = json_decode($data, true);
  398. // refill\RefillFactory::instance()->notify('yuanmai',$params);
  399. $resp = $providers->balance();
  400. }
  401. public function testLangkePhone()
  402. {
  403. $providers = new refill\langke\RefillPhone([]);
  404. // $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  405. $resp = $providers->query(['order_sn' => '29461624952660047520', 'ch_trade_no' => '210623174333941000']);
  406. $data = '{"channelsort":"PHONE_BILL","channelno":"2021062922001123211428063487","onlystr":"29461624952660047520","channel":"TM","sign":"8aedceac4ce4d897f1f06977a9094371","amt":"50","notifyurl":"https:\/\/www.xyzshops.cn\/mobile\/signature.php","cardtype":"","cardno":"","orgid":"7532391600","account":"13699279618","status":"2"}';
  407. $params = json_decode($data, true);
  408. // refill\RefillFactory::instance()->notify('langke',$params);
  409. }
  410. public function testYunlingdsPhone()
  411. {
  412. $providers = new refill\yunlingds\RefillPhone([]);
  413. // $resp = $providers->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  414. // $resp = $providers->query(['order_sn' => '85351624961920020593']);
  415. // $data = '{"orderid":"OWS21062918188862392","sporderid":"85351624961920020593","userid":"10002623","merchantsubmittime":"20210629181929","resultno":"1","parvalue":"30","remark1":"AW20210629181906yRAvM","payno":"AW20210629181906yRAvM","fundbalance":"-28.59","sign":"11369509ADCF2A2612B3531A15049BDD"}';
  416. // $params = json_decode($data, true);
  417. // refill\RefillFactory::instance()->notify('yunlingds',$params);
  418. $resp = $providers->balance();
  419. }
  420. public function testLingzhmanPhone()
  421. {
  422. $providers = new refill\lingzhman\RefillPhone([]);
  423. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  424. // $resp = $providers->query(['order_sn' => '29771625215707976538']);
  425. // $data = '{"orderNo":"F2107021536431562574","status":"019","consumerNo":"60191625211393862930","voucherNo":null,"mobile":"18500608333"}';
  426. // $params = json_decode($data, true);
  427. // refill\RefillFactory::instance()->notify('lingzhman',$params);
  428. $resp = $providers->balance();
  429. }
  430. public function testQijutangPhone()
  431. {
  432. $providers = new refill\qijutang\RefillPhone([]);
  433. // for ($i=1;$i<2;$i++) {
  434. // $resp = $providers->add(13699279618, 4, 100, ['order_sn' => $this->make_sn()]);
  435. // }
  436. // $resp = $providers->query(['order_sn' => '51501625218912512231']);
  437. // $data = '{"szOrderId":"51501625218912512231","fSalePrice":"28.44","szAgentId":"200010","nFlag":"3","szVerifyString":"20cf16c6bb239e2a703d0bf3e5ef2d5a","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"30"}';
  438. // $params = json_decode($data, true);
  439. // refill\RefillFactory::instance()->notify('qijutang',$params);
  440. $resp = $providers->balance();
  441. }
  442. public function testLingzhman48Phone()
  443. {
  444. $providers = new refill\lingzhman48\RefillPhone([]);
  445. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  446. // $resp = $providers->query(['order_sn' => '49951625814151937287']);
  447. $data = '{"orderNo":"F2107091503134670764","status":"020","consumerNo":"49951625814151937287","voucherNo":null,"mobile":"18500608333"}';
  448. $params = json_decode($data, true);
  449. refill\RefillFactory::instance()->notify('lingzhman48', $params);
  450. }
  451. public function testcangbuPhone()
  452. {
  453. $providers = new refill\cangbu\RefillPhone([]);
  454. // $resp = $providers->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  455. // $resp = $providers->query(['order_sn' => '35041626071052333060']);
  456. // $data = '{"customerId":"112","tmporder":"35041626071052333060","orderno":"s16260710607417944801112","number":"18500608333","money":"100","amount":"94.9000","code":"1","cardno":"","voucher":"110103307042107121424210550266","sign":"de463c3d389a4afe4a2c58257972121a"}';
  457. // $params = json_decode($data, true);
  458. // refill\RefillFactory::instance()->notify('cangbu',$params);
  459. $resp = $providers->balance();
  460. }
  461. public function testCangbukami()
  462. {
  463. $providers = new refill\cangbukami\RefillPhone([]);
  464. // $resp = $providers->add(18500608333, 5, 20, ['order_sn' => $this->make_sn()]);
  465. $resp = $providers->query(['order_sn' => '23231627380108954478']);
  466. }
  467. public function testTongykamiPhone()
  468. {
  469. $providers = new refill\tongykami\RefillPhone([]);
  470. // $resp = $providers->add(18500608333, 5, 20, ['order_sn' => $this->make_sn()]);
  471. $resp = $providers->query(['order_sn' => '26961626077050756648']);
  472. $data = '{"UserId":"100903","ShopId":"300000","SysOrderId":"21071216040810090300001","OrderId":"26961626077050756648","State":"4","Timestamp":"1626077052399","sign":"536A0D93B0869FC4FFDF055AFB8083FE","ParValue":"20.0000","VoucherType":"5","VoucherContent":"982100214176457","CreateTime":"2021-07-12 16:04:08","CompleteTime":"2021-07-12 16:04:12"}';
  473. $params = json_decode($data, true);
  474. // refill\RefillFactory::instance()->notify('tongykami',$params);
  475. }
  476. public function testTongluPhone()
  477. {
  478. $providers = new refill\tonglu\RefillPhone([]);
  479. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  480. $resp = $providers->query(['order_sn' => '22961616468561936356']);
  481. // $body = '{"order_no":"22961616468561936356","order_status":"5","phone_no":"18500608333","amount":5000,"time_paid":1616468856287,"order_cert_no":"","paid":false,"order_id":"20210323966497008"}';
  482. // $sign = '9E41F52F612D60EBB654B3A5D1E2F1E5';
  483. // $params = json_decode($body , true);
  484. // $params['sign'] = $sign;
  485. // refill\RefillFactory::instance()->notify('tonglu',$params);
  486. }
  487. public function testSialan()
  488. {
  489. $providers = new refill\sialan\RefillPhone([]);
  490. // $resp = $providers->add(13699279618, 4, 10, ['order_sn' => $this->make_sn()]);
  491. // $resp = $providers->query(['order_sn' => '79651627436983840352', 'card_no' => 13699279618]);
  492. // $body = '{"cpid":"39780","order_no":"21072809494539780728903528","mobile":"13699279618","amount":"10","status":"success","sz_order_no":"2021072822001158391454773955","ret_para":"79651627436983840352","sign":"aa7e8a2e589660e98319c5546cb432fa"}';
  493. // $params = json_decode($body, true);
  494. // refill\RefillFactory::instance()->notify('sialan', $params);
  495. $resp = $providers->balance();
  496. }
  497. public function testMoxj_new()
  498. {
  499. $providers = new refill\moxj_new\RefillPhone([]);
  500. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  501. // $resp = $providers->query(['order_sn' => '33301627887529587739', 'card_no' => 13699279618]);
  502. // $body = '{"code":"2101","official_order_no":"0","partner_no":"300459017","partner_order_no":"33301627887529587739","phone":"18500608333","amount":"30","isp":"cucc","charge_time":"0","sign":"A512D612C823DFBCA9B4BC42134CC164"}';
  503. // $params = json_decode($body, true);
  504. // refill\RefillFactory::instance()->notify('moxj_new', $params);
  505. $resp = $providers->balance();
  506. }
  507. public function testKangkai()
  508. {
  509. $providers = new refill\kangkai\RefillPhone([]);
  510. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  511. // $resp = $providers->query(['order_sn' => '25431627898461762024']);
  512. // $body = '{"TaskID":"267459","Mobile":"18500608333","Status":"5","ReportTime":"2021-08-02T18:02:01.777","ReportCode":"7:","OutTradeNo":"25431627898461762024","Price":"44.2500","ReceiptNum":"","Sign":"f0934a621fd0b076373f77a9bf8d7051"}';
  513. // $params = json_decode($body, true);
  514. // refill\RefillFactory::instance()->notify('kangkai', $params);
  515. $resp = $providers->balance();
  516. }
  517. public function testLechong()
  518. {
  519. $providers = new refill\lechong\RefillPhone([]);
  520. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  521. // $resp = $providers->query(['order_sn' => '55641627902450221838']);
  522. // $body = '{"sellerid":"55641627902450221838","agentcode":"202108021753","account":"MTg1MDA2MDgzMzM=","value":"50","payvalue":"47.8500","voucher":"","createtime":"20210802190739","endtime":"20210802191008","state":"4","remark":"","time":"20210802191008","sign":"0e2d69318d03871d887debd498cc50f2"}';
  523. // $params = json_decode($body, true);
  524. // refill\RefillFactory::instance()->notify('lechong', $params);
  525. $resp = $providers->balance();
  526. }
  527. public function testXinhengyang()
  528. {
  529. $providers = new refill\xinhengyang\RefillPhone([]);
  530. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  531. // $resp = $providers->query(['order_sn' => '50441628062235230398']);
  532. // $resp = $providers->balance();
  533. $body = '{"szOrderId":"50441628062235230398","fSalePrice":"28.68","szAgentId":"200026","nFlag":"3","szVerifyString":"0166cec8496c59b377744ef5dd9e02dc","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"30"}';
  534. $params = json_decode($body, true);
  535. refill\RefillFactory::instance()->notify('xinhengyang', $params);
  536. }
  537. public function testMiaoxt()
  538. {
  539. $providers = new refill\miaoxt\RefillPhone([]);
  540. // $resp = $providers->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  541. // $resp = $providers->query(['order_sn' => '85101628064401524483']);
  542. // $resp = $providers->balance();
  543. $body = '{"szOrderId":"85101628064401524483","fSalePrice":"10.2","szAgentId":"200050","nFlag":"2","szVerifyString":"7a08b9a71a297a28843d749a7bf79dbc","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"10"}';
  544. $params = json_decode($body, true);
  545. refill\RefillFactory::instance()->notify('miaoxt', $params);
  546. }
  547. public function testTianyan()
  548. {
  549. $providers = new refill\tianyan\RefillPhone([]);
  550. // $resp = $providers->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  551. // $resp = $providers->query(['order_sn' => '71241628067981955316', 'card_no' => 18500608333, 'card_type' => 5]);
  552. // $resp = $providers->balance();
  553. $params['amount'] = '100.00';
  554. $params['orderNo'] = '2618380681466713437097';
  555. $params['supplierId'] = '48';
  556. $params['orderId'] = 'S20210805081833371976224648';
  557. $params['notifyTime'] = '1628122793669';
  558. $params['sign'] = '4d8f70bf451608359e256ee1e5f30de1';
  559. $params['discountAmount'] = '5.50';
  560. $params['phoneNo'] = '17696554433';
  561. $params['queryUrl'] = 'https%3A%2F%2Fupay.10010.com%2Fnpfwap%2FNpfMobCB%2FmobPayFeeCB%2FPayFeeCBFinish%3Fs%3Ds%26province%3D034%26hsnduns%3D9900%26PayRspObj%3Dg5Wzcx2XA2IKuVRxJM8XL1ku7SOw9jQ9rQ53Brvq7an002PM9u3lEFAsIL88fmZQ5E2gZuGRBFkRD3%2FOhvJ9QiYKPITME8OErhoTmu%2FOr9WdyO12eK53aaUvE557JZLZVIWyAOE47QZDnKnVs2bdpH1ApK0QIUmkdeRe%2BO%2F6qzkq%2FQv8oH6shae7uhV0vzeRAuY1q8MuTsNZ3YfvSuSFc6u1twRHAjUKJdKV6gKxQofahNr9MjCdYneuIcPWI7xNyDWcr12FEhNEJDSBGoIr78jw6XMNMrzcBFLl0eXW1iMPd%2BCAQVG%2BF7s8naJNFSALkapTORdCN%2BRbxsLugFZqVAaGs%2B1ldaATPMtd2ZWTp8JibGOfsf9uCQiyu3R3t6b5R%2BQPHCScw8Cu1eSixloFI2ZMVwA18WVbN1vb81X4IGI%2B5nxRA%2FJ1tm7snm5Oj799%2BoaS27QyGRSB618lySbprw0muawiQzdKdOmVBMcZH0ADyDM8dFvT9dKz5yRlABpHeBt7fTY1MIdNKjQ4QK5xQHG8GoTwchc36eE2CzF4kcaT9uKlmv1Wbb38szv4s%2F6HoncxQJxHOgXjWTQGBUSrolDn0qc0DdVIQ%2B25HApeloCjHhy0xTbDJhRsdezWjIONXbqiB2ZTPrheuM3qIROEBwvBRVgm0GotZYyrP3IIMLfeMtCThrirsnLRW1anCoWpDJJr6qwjRMwu%2BNAtfLyIEVkDKZeZKuA2Kk5Q9GLQHub2Nx5%2BAN3eGdRWzN6BPNiMRVlu1LpY%2BYCBg9fr9NZN3%2B7XcHGWyXM6K%2FugRPAdZUgJJQFFDAIiA4Kvc1uN2zjraiLZt7xjHMXgAP69mvEp%2FVMm2whluq6sk%2B67cdOTwMpXwzp6Aoh1d1OX4IYqw20vxfwzESPSg2RVDJUBT0%2F2NI0J2VJObHih%26ServicePlatID%3D11';
  562. $params['payType'] = 'wechat';
  563. $params['ticketNo'] = '110103353022108050819140250945';
  564. $params['company'] = 'lt';
  565. $params['status'] = '2';
  566. refill\RefillFactory::instance()->notify('tianyan', $params);
  567. }
  568. public function testYunsuoyaoman()
  569. {
  570. // $providers = $this->getProvider('yunsuoyaoman');
  571. // $resp = $providers->balance();
  572. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  573. // $resp = $providers->query(['order_sn' => '58771629702960801700']);
  574. $body = '{"orderid":"RLD21082315152651196","sporderid":"58771629702960801700","userid":"10002745","merchantsubmittime":"20210823152623","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-27.45","sign":"76A29E0101644831526138D63917C130"}';
  575. $params = json_decode($body, true);
  576. $providers = $this->getProvider('yunsuoyaoman', 'RefillCallBack');
  577. $ret = $providers->verify($params);
  578. $resp = $providers->notify($params);
  579. }
  580. public function testYouhe()
  581. {
  582. $providers = new refill\youhe\RefillPhone([]);
  583. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  584. // $resp = $providers->query(['order_sn' => '70421628146378080613']);
  585. // $resp = $providers->balance();
  586. $body = '{"szOrderId":"70421628146378080613","fSalePrice":"28.59","szAgentId":"200022","nFlag":"2","szVerifyString":"29b5b132c4373447d67d92709afd1c2f","szPhoneNum":"18500608333","szRtnMsg":"110103353032108051453020270482","nDemo":"30"}';
  587. $params = json_decode($body, true);
  588. refill\RefillFactory::instance()->notify('youhe', $params);
  589. }
  590. public function testWenye()
  591. {
  592. $providers = new refill\wenye\RefillPhone([]);
  593. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  594. // $resp = $providers->query(['order_sn' => '88871628157083445809']);
  595. // $resp = $providers->balance();
  596. $body = '{"orderNo":"F2108051529062719948","status":"019","consumerNo":"95291628148539909985","voucherNo":null,"mobile":"18500608333"}';
  597. $params = json_decode($body, true);
  598. // refill\RefillFactory::instance()->notify('wenye', $params);
  599. }
  600. public function testXinyang()
  601. {
  602. $providers = new refill\xinyang\RefillPhone([]);
  603. // $resp = $providers->add(13699279618, 4, 10, ['order_sn' => $this->make_sn()]);
  604. // $resp = $providers->query(['order_sn' => '68151628157534687971']);
  605. // $resp = $providers->balance();
  606. $body = '{"UserId":"100029","ShopId":"300000","SysOrderId":"21080517590310002956698","OrderId":"68151628157534687971","State":"4","Timestamp":"1628157558204","sign":"4514B2BA75DBA02EA3A60525329B3D86","ParValue":"10.0000","VoucherType":"0","VoucherContent":"2021080522001161731405208592","CreateTime":"2021-08-05 17:59:03","CompleteTime":"2021-08-05 17:59:18"}';
  607. $params = json_decode($body, true);
  608. refill\RefillFactory::instance()->notify('xinyang', $params);
  609. }
  610. public function testGuochuang()
  611. {
  612. $providers = $this->getProvider('guochuang');
  613. $resp = $providers->add(13699279618, 4, 5, ['order_sn' => $this->make_sn(), 'regin_no' => 1]);
  614. // $resp = $providers->query(['order_sn' => '82951628231038096078']);
  615. // $resp = $providers->balance();
  616. // $body = '{"account":"18074608795","evidence":"1000000083421080614310024563","evidenceType":"","id":"D2021080614235942044","inTime":"2021/08/06 14:26:22","money":"10","outerId":"82951628231038096078","status":"SUCCESS"}';
  617. // $params['ts'] = 1628231182;
  618. // $params['sign'] = '545F7024870B145915934CA36C6D341E';
  619. // $params['body'] = $body;
  620. // refill\RefillFactory::instance()->notify('guochuang', $params);
  621. [$goods_id, $price] = $providers->goods(2, 10, 4, 1, []);
  622. }
  623. public function testXianghongrui()
  624. {
  625. $providers = new refill\xianghongrui\RefillPhone([]);
  626. // $resp = $providers->balance();
  627. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  628. // $resp = $providers->query(['order_sn' => '87691628758730981608']);
  629. $body = '{"orderid":"BAT21081216581941649","sporderid":"87691628758730981608","userid":"10002503","merchantsubmittime":"20210812165918","resultno":"1","parvalue":"50","remark1":"110103353052108121658550256634","payno":"110103353052108121658550256634","fundbalance":"-47.5","sign":"EF34F6FB6D37E4FCB92DCD8F41CC67E1"}';
  630. $params = json_decode($body, true);
  631. refill\RefillFactory::instance()->notify('xianghongrui', $params);
  632. }
  633. public function testDianchong()
  634. {
  635. $providers = $this->getProvider('dianchong');
  636. // $resp = $providers->balance();
  637. // $resp = $providers->add(18074608795, 5, 30, ['order_sn' => $this->make_sn()]);
  638. // $resp = $providers->query(['order_sn' => '26671629190230227788']);
  639. $body = '{"seqNo":"5C2D85572F8743CF","orderNo":"26671629190230227788","result":"Q0000","transo":"1000000083421081716331202254","sign":"87F3F67EA2B91709FD05468CF74210A1"}';
  640. $params = json_decode($body, true);
  641. $providers = $this->getProvider('dianchong', 'RefillCallBack');
  642. $ret = $providers->verify($params);
  643. $resp = $providers->notify($params);
  644. }
  645. public function testXunyinOil()
  646. {
  647. $providers = $this->getProvider('xunyinoil', 'RefillOil');
  648. // $resp = $providers->balance();
  649. // $resp = $providers->add(9030230005180327, 1, 50, ['order_sn' => $this->make_sn()]);
  650. $resp = $providers->query(['order_sn' => '77791629450541412891']);
  651. // $body = '{"ext":"","code":"8888","sign":"7db98f3f271013688134f2fbd503dc15","statemes":"\u6210\u529f","id":"80641629442789487318","userid":"8417","operatorid":"2421082015001888","status":"SUCCESS"}';
  652. // $params = json_decode($body, true);
  653. // $providers = $this->getProvider('xunyinoil','RefillCallBack');
  654. // $ret = $providers->verify($params);
  655. // $resp = $providers->notify($params);
  656. }
  657. public function testJumiThird()
  658. {
  659. $providers = $this->getProvider('jumithird');
  660. // $resp = $providers->balance();
  661. $resp = $providers->add(588073521, 7, 100, [
  662. 'order_sn' => $this->make_sn(),
  663. 'goods_id' => 6978,
  664. 'product_code' => 'XYZ100747'
  665. ]);
  666. // $resp = $providers->query(['order_sn' => '53151629791019902609']);
  667. // $body = '{"order_no":"59251629777055495341","channel_order_no":"C2108241152003775025","status":3,"money":"100.00","cost_money":"97.00","mch_no":210303112631,"account":"588073521","official_sn":"","sign":"7d7b3e701865b54c8cf0d9e903fdf6bf"}';
  668. // $params = json_decode($body, true);
  669. // $providers = $this->getProvider('jumithird','RefillCallBack');
  670. // $ret = $providers->verify($params);
  671. // $resp = $providers->notify($params);
  672. }
  673. public function testWangliantx()
  674. {
  675. // $providers = $this->getProvider('wangliantx');
  676. // $resp = $providers->balance();
  677. // for ($i = 1; $i<=1; $i++){
  678. // $resp = $providers->add(18074608795, 6, 50, [
  679. // 'order_sn' => $this->make_sn(),
  680. // 'regin_no' => 1
  681. // ]);
  682. // }
  683. // $resp = $providers->query(['order_sn' => '85901629801033376170']);
  684. $body = '{"userid":"10073664","sporderid":"85901629801033376170","orderid":"C5C5D4F49DB61A8773664","resultno":"1","merchantsubmittime":"20210824183109","ordermoney":"47.6","verifystring":"b6a873ecd6dc9cea3a410c6386cdab84","sign":"4a80e2a8c7b07c8aacada4feedd581bd","supnumber":"1000000083421082418345386156"}';
  685. $params = json_decode($body, true);
  686. $providers = $this->getProvider('wangliantx', 'RefillCallBack');
  687. $ret = $providers->verify($params);
  688. $resp = $providers->notify($params);
  689. }
  690. public function testZhuojian()
  691. {
  692. // $providers = $this->getProvider('zhuojian');
  693. // $resp = $providers->add(18500608333, 5, 50, [
  694. // 'order_sn' => $this->make_sn()
  695. // ]);
  696. // $resp = $providers->query(['order_sn' => '87231630026579229295']);
  697. $body = '{"money":"50.00","official_trade_no":"","out_trade_no":"87231630026579229295","status":"4","trade_no":"10000077828","sign":"0e19142c014ef6fe263601956e0be436"}';
  698. $params = json_decode($body, true);
  699. $providers = $this->getProvider('zhuojian', 'RefillCallBack');
  700. $ret = $providers->verify($params);
  701. $resp = $providers->notify($params);
  702. }
  703. public function testXianghongruifs()
  704. {
  705. $providers = $this->getProvider('xianghongruifs');
  706. $resp = $providers->add(18500608333, 5, 50, [
  707. 'order_sn' => $this->make_sn()
  708. ]);
  709. // $resp = $providers->query(['order_sn' => '87231630026579229295']);
  710. }
  711. public function testYilin()
  712. {
  713. $providers = $this->getProvider('yilin');
  714. $resp = $providers->balance();
  715. // $resp = $providers->add(18500608333, 5, 30, [
  716. // 'order_sn' => $this->make_sn()
  717. // ]);
  718. // $resp = $providers->query(['order_sn' => '86981630484634157631']);
  719. // $body = '{"orderid":"NZX21090116244713140","sporderid":"86981630484634157631","userid":"10002543","merchantsubmittime":"20210901163039","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-28.71","sign":"53717BF9ECE83F4AD96C1EDD4BAE4E87"}';
  720. // $params = json_decode($body, true);
  721. // $providers = $this->getProvider('yilin','RefillCallBack');
  722. // $ret = $providers->verify($params);
  723. // $resp = $providers->notify($params);
  724. }
  725. public function testMiaoxt_fs()
  726. {
  727. $providers = $this->getProvider('miaoxt_fs');
  728. // $resp = $providers->balance();
  729. // $resp = $providers->add(13945846040, 4, 10, [
  730. // 'order_sn' => $this->make_sn()
  731. // ]);
  732. $resp = $providers->query(['order_sn' => '33101630577689278074']);
  733. // $body = '{"szOrderId":"33101630577689278074","fSalePrice":"9.95","szAgentId":"200055","nFlag":"2","szVerifyString":"1649fb2815926b75e4ed7e0fef3172ae","szPhoneNum":"13945846040","szRtnMsg":"","nDemo":"10"}';
  734. // $params = json_decode($body, true);
  735. // $providers = $this->getProvider('miaoxt_fs','RefillCallBack');
  736. // $ret = $providers->verify($params);
  737. // $resp = $providers->notify($params);
  738. }
  739. public function testXianzhibb()
  740. {
  741. // $providers = $this->getProvider('xianzhibb');
  742. // $resp = $providers->balance();
  743. // $resp = $providers->add(13699279618, 4, 200, [
  744. // 'order_sn' => $this->make_sn()
  745. // ]);
  746. // $resp = $providers->query(['order_sn' => '80881630650784871094']);
  747. $body = '{"code":"000","merchantorderId":"1854680684077057846998","platformorderid":"aada9b09583f66b2b83370016","orderid":"","rechargeno":"15971954673","amount":"50.00","payamount":"47.75000","rechargestate":"3","createtime":"2021-09-04 13:26:20","sign":"07b8a341c55639d3512a239f9cd07e31"}';
  748. $params = json_decode($body, true);
  749. $providers = $this->getProvider('xianzhibb', 'RefillCallBack');
  750. $ret = $providers->verify($params);
  751. $resp = $providers->notify($params);
  752. }
  753. public function testYikatong()
  754. {
  755. $providers = $this->getProvider('yikatong');
  756. $resp = $providers->balance();
  757. // $resp = $providers->add(18500608333, 5, 50, [
  758. // 'order_sn' => $this->make_sn()
  759. // ]);
  760. // $resp = $providers->query(['order_sn' => '17631630896153830023']);
  761. // $body = '{"szOrderId":"17631630896153830023","fSalePrice":"47.25","szAgentId":"200001","nFlag":"2","szVerifyString":"4ab7914e333a452d32be85b51b075f48","szPhoneNum":"18500608333","szRtnMsg":"110103353182109061043150295134","nDemo":"50"}';
  762. // $params = json_decode($body, true);
  763. // $providers = $this->getProvider('yikatong','RefillCallBack');
  764. // $ret = $providers->verify($params);
  765. // $resp = $providers->notify($params);
  766. }
  767. public function testSanti()
  768. {
  769. $providers = $this->getProvider('santi');
  770. // $resp = $providers->get_product(17801048874);
  771. // $resp = $providers->add(18500608333, 5, 1024, [
  772. // 'order_sn' => $this->make_sn(),
  773. // 'goods_id' => 7000,
  774. // 'product_code' => 'XYZ100751'
  775. // ]);
  776. $resp = $providers->query(['ch_trade_no' => '1631945759171581']);
  777. // $resp = $providers->balance();
  778. $body = '{"channelOrderNo":"49991631861285846684","extraData":"","orderNo":"1631861288127072","orderStatus":"4","providerResultCode":"3","providerResultReason":"\u5145\u503c\u6210\u529f","resultCode":"1000","resultMessage":"\u6210\u529f","sign":"472490783eaa82c76a1af8702881f04f"}';
  779. $params = json_decode($body, true);
  780. $providers = $this->getProvider('santi', 'RefillCallBack');
  781. $ret = $providers->verify($params);
  782. $resp = $providers->notify($params);
  783. }
  784. public function testSialan_tax()
  785. {
  786. // $providers = $this->getProvider('sialan_tax');
  787. // $resp = $providers->add(18500608333, 5, 100, [
  788. // 'order_sn' => $this->make_sn()
  789. // ]);
  790. // $resp = $providers->query(['order_sn' => '98871630991459034712', 'card_no' => 18500608333]);
  791. // $resp = $providers->balance();
  792. $body = '{"cpid":"23412","order_no":"21090713111223412478608977","mobile":"18500608333","amount":"100","status":"success","sz_order_no":"11010335O202109071311130276561","ret_para":"98871630991459034712","sign":"82cf6e08339f5b859e8946cc7c2a5e14"}';
  793. $params = json_decode($body, true);
  794. $providers = $this->getProvider('sialan_tax', 'RefillCallBack');
  795. $ret = $providers->verify($params);
  796. $resp = $providers->notify($params);
  797. }
  798. public function testYunchonggong_yd()
  799. {
  800. $providers = $this->getProvider('yunchonggong_yd');
  801. for ($i = 1; $i <= 5; $i++) {
  802. $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  803. }
  804. // $resp = $providers->query(['order_sn' => '34061631002071526340']);
  805. // $resp = $providers->balance();
  806. // $body = '{"szOrderId":"34061631002071526340","fSalePrice":"47.7","szAgentId":"200043","nFlag":"3","szVerifyString":"48a7329c13af06b5be1d2fdad706b22e","szPhoneNum":"13699279618","szRtnMsg":"","nDemo":"50"}';
  807. // $params = json_decode($body, true);
  808. // $providers = $this->getProvider('yunchonggong_yd','RefillCallBack');
  809. // $ret = $providers->verify($params);
  810. // $resp = $providers->notify($params);
  811. }
  812. public function testGuochuang_nation()
  813. {
  814. // $providers = $this->getProvider('guochuang_nation');
  815. // $resp = $providers->add(18500608333, 5, 1, ['order_sn' => $this->make_sn(), 'regin_no' => 1]);
  816. $body = '{"account":"18500608333","evidence":"N/A","evidenceType":"","id":"D2021090718185107657","inTime":"2021/09/07 18:19:05","money":"1","outerId":"65261631009929751933","status":"SUCCESS"}';
  817. $params['ts'] = 1631009945;
  818. $params['sign'] = 'C53F921EB5573EF4D0C757C5B5D4185D';
  819. $params['body'] = $body;
  820. $providers = $this->getProvider('guochuang_nation','RefillCallBack');
  821. $ret = $providers->verify($params);
  822. $resp = $providers->notify($params);
  823. }
  824. public function testTianyanman()
  825. {
  826. $providers = $this->getProvider('tianyanman');
  827. $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  828. // $resp = $providers->query(['order_sn' => '12191631078826857172', 'card_no' => 18500608333, 'card_type' => 5]);
  829. // $resp = $providers->balance();
  830. // $body = '{"amount":"30.00","orderNo":"12191631078826857172","supplierId":"48","orderId":"S20210908132721339071815348","notifyTime":"1631078841755","sign":"8a5676d4fbd1fd9a64385d71061be44a","discountAmount":"1.65","phoneNo":"18500608333","queryUrl":"","payType":"","ticketNo":"","company":"lt","status":"0"}';
  831. // $params = json_decode($body, true);
  832. // $providers = $this->getProvider('tianyanman','RefillCallBack');
  833. // $ret = $providers->verify($params);
  834. // $resp = $providers->notify($params);
  835. }
  836. public function testShimer()
  837. {
  838. $providers = $this->getProvider('shimier');
  839. // $resp = $providers->balance();
  840. $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  841. // $resp = $providers->query(['order_sn' => '56391631086657239320']);
  842. // $body = '{"orderId":"210908153756535112","appId":"b3k6DRwSOw","outOrderId":"56391631086657239320","sign":"86f9e783a3374463d546bedfc6920eff","orderStatus":"3","completeTime":"20210908154810","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  843. // $params = json_decode($body, true);
  844. // $providers = $this->getProvider('shimier','RefillCallBack');
  845. // $ret = $providers->verify($params);
  846. // $resp = $providers->notify($params);
  847. }
  848. public function testZhongst_mix()
  849. {
  850. // $providers = $this->getProvider('zhongst_mix');
  851. // $resp = $providers->balance();
  852. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  853. // $resp = $providers->query(['order_sn' => '46291631503985151158']);
  854. $body = '{"szOrderId":"46291631503985151158","fSalePrice":"29.85","szAgentId":"200053","nFlag":"2","szVerifyString":"be07db2c82b63bc2610eee3eac23245b","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"30"}';
  855. $params = json_decode($body, true);
  856. $providers = $this->getProvider('zhongst_mix','RefillCallBack');
  857. $ret = $providers->verify($params);
  858. $resp = $providers->notify($params);
  859. }
  860. public function testHangtong()
  861. {
  862. // $providers = $this->getProvider('hangtong');
  863. // $resp = $providers->balance();
  864. // $resp = $providers->add(13699279618, 4, 100, ['order_sn' => $this->make_sn()]);
  865. // $resp = $providers->query(['order_sn' => '68221631775122967358']);
  866. $body = '{"phone":"13699279618","orderNo":"F2109161452121045530","status":"success","otherNo":"68221631775122967358","msg":"提交/充值成功","ext":"524501553021467113"}';
  867. $params = json_decode($body, true);
  868. $providers = $this->getProvider('hangtong','RefillCallBack');
  869. $ret = $providers->verify($params);
  870. $resp = $providers->notify($params);
  871. }
  872. public function testJinfeng()
  873. {
  874. // $providers = $this->getProvider('jinfeng');
  875. // $resp = $providers->balance();
  876. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  877. // $resp = $providers->query(['order_sn' => '78561631769733386091']);
  878. $body = '{"orderNo":"F2109161322374838924","status":"003","consumerNo":"78561631769733386091","voucherNo":null,"mobile":"18500608333"}';
  879. $params = json_decode($body, true);
  880. $providers = $this->getProvider('jinfeng','RefillCallBack');
  881. $ret = $providers->verify($params);
  882. $resp = $providers->notify($params);
  883. }
  884. public function testDashang()
  885. {
  886. // $providers = $this->getProvider('dashang');
  887. // $resp = $providers->balance();
  888. // $resp = $providers->add(18074608795, 6, 50, ['order_sn' => $this->make_sn()]);
  889. // $resp = $providers->query(['order_sn' => '63101631784169445345']);
  890. $body = '{"userId":"80800346","bizId":"90290050","ejId":"90916171545126","downstreamSerialno":"67971631783703671946","status":"3","voucher":"","voucherType":"0","sign":"46b13acf67f271e2f85db189ab9e1391"}';
  891. $params = json_decode($body, true);
  892. $providers = $this->getProvider('dashang','RefillCallBack');
  893. $ret = $providers->verify($params);
  894. $resp = $providers->notify($params);
  895. }
  896. public function testYuanta()
  897. {
  898. $providers = $this->getProvider('yuanta');
  899. // $resp = $providers->balance();
  900. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  901. $resp = $providers->query(['order_sn' => '61501631786913519186']);
  902. // $body = '{"szOrderId":"61501631786913519186","fSalePrice":"45.75","szAgentId":"200029","nFlag":"2","szVerifyString":"3a580a84b477efa431d78b505fd7389e","szPhoneNum":"18500608333","szRtnMsg":"110103353072109161810250286803","nDemo":"50"}';
  903. // $params = json_decode($body, true);
  904. // $providers = $this->getProvider('yuanta','RefillCallBack');
  905. // $ret = $providers->verify($params);
  906. // $resp = $providers->notify($params);
  907. }
  908. public function testDuojing()
  909. {
  910. $providers = $this->getProvider('duojing');
  911. // $resp = $providers->balance();
  912. $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  913. // $resp = $providers->query(['order_sn' => '61501631786913519186']);
  914. }
  915. public function testMenggu()
  916. {
  917. // $providers = $this->getProvider('menggu','RefillOil');
  918. // $resp = $providers->add(1000111100021211884, 2, 500, ['order_sn' => $this->make_sn()]);
  919. // $resp = $providers->query(['order_sn' => '63021632301956855605']);
  920. $body = '{"orderId":"210922171242123506","appId":"1hqLCRUja7","outOrderId":"63021632301956855605","sign":"f3f0b48657bb4e3b993aa284159c6565","orderStatus":"2","completeTime":"20210922171306","orderDesc":"\u8ba2\u5355\u6210\u529f","ext1":"\u3010\u4e2d\u56fd\u77f3\u5316\u3011\u60a8\u5c3e\u53f7\u4e3a211884\u7684\u52a0\u6cb9\u5361\u4e8e09\u670822\u65e5 17\u65f612\u5206\u5145\u503c\u6210\u529f,\u91d1\u989d500\u5143,\u8ba2\u5355\u53f7:2521092217126714"}';
  921. $params = json_decode($body, true);
  922. $providers = $this->getProvider('menggu','RefillCallBack');
  923. $ret = $providers->verify($params);
  924. $resp = $providers->notify($params);
  925. }
  926. public function testMenggu_hf()
  927. {
  928. $providers = $this->getProvider('menggu_hf');
  929. // $resp = $providers->balance();
  930. $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  931. // $resp = $providers->query(['order_sn' => '24481632298991701065']);
  932. // $body = '{"orderId":"210922162318123069","appId":"1hqLCRUja7","outOrderId":"24481632298991701065","sign":"73faefba3e179641af0df6f59becce8f","orderStatus":"3","completeTime":"20210922162451","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  933. // $params = json_decode($body, true);
  934. // $providers = $this->getProvider('menggu_hf','RefillCallBack');
  935. // $ret = $providers->verify($params);
  936. // $resp = $providers->notify($params);
  937. }
  938. public function testAmingjd()
  939. {
  940. // $providers = new refill\amingjd\RefillPhone([]);
  941. // $resp = $providers->add(13699279618, 5, 30, ['order_sn' => $this->make_sn()]);
  942. // $resp = $providers->query(['order_sn' => '42301616475989518588']);
  943. $body = '{"order_id":"83321616478215494884","mchid":"10003","tel":"13699279618","price":"30.00","sign":"01c49620c155a80bc43cecc2b1651868","status":"0","out_order_id":"0"}';
  944. $params = json_decode($body, true);
  945. refill\RefillFactory::instance()->notify('amingjd', $params);
  946. }
  947. public function testAmingjdmanPhone()
  948. {
  949. $providers = new refill\amingjdman\RefillPhone([]);
  950. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  951. // $resp = $providers->query(['order_sn' => '82741619577673758623']);
  952. $body = '{"order_id":"82741619577673758623","mchid":"10045","tel":"13699279618","price":"30.00","sign":"2fe55fb4d4b2acc2e98137adb82fa57e","status":"0","out_order_id":"0"}';
  953. $params = json_decode($body, true);
  954. refill\RefillFactory::instance()->notify('amingjdman', $params);
  955. }
  956. public function testWeishengyWtPhone()
  957. {
  958. $providers = new refill\weishengywt\RefillPhone([]);
  959. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  960. // $resp = $providers->query(['order_sn' => '27681620538125370652']);
  961. $data = '{"szOrderId":"27681620538125370652","fSalePrice":"47.5","szAgentId":"200045","nFlag":"2","szVerifyString":"92fafec121b77518d539ed9f5005fdf9","szPhoneNum":"18500608333","szRtnMsg":"110103308032105091328520502948","nDemo":"50"}';
  962. $params = json_decode($data, true);
  963. refill\RefillFactory::instance()->notify('weishengywt', $params);
  964. }
  965. public function testWeishengyJDPhone()
  966. {
  967. $providers = new refill\weishengyjd\RefillPhone([]);
  968. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  969. // $resp = $providers->query(['order_sn' => '14261620887423822879']);
  970. $data = '{"szOrderId":"14261620887423822879","fSalePrice":"44.0","szAgentId":"200050","nFlag":"3","szVerifyString":"3cceef390602058e1d2fdde2e07636a4","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"50"}';
  971. $params = json_decode($data, true);
  972. refill\RefillFactory::instance()->notify('weishengyjd', $params);
  973. }
  974. public function testYeziPhone()
  975. {
  976. $providers = new refill\yezi\RefillPhone([]);
  977. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  978. // $resp = $providers->query(['order_sn' => '35261620988265145105']);
  979. $data = '{"mchid":"10147","order_sn":"35261620988265145105","amount":"50.00","cardno":"18500608333","trade_no":"6363570674332280422825","idcard":"","card_name":"","official_sn":"","message":"","state":"CANCEL","sign":"b79f2ddbb5b7eef98f414585a5bd2cde"}';
  980. $params = json_decode($data, true);
  981. refill\RefillFactory::instance()->notify('yezi', $params);
  982. }
  983. public function testWeishengysixPhone()
  984. {
  985. $providers = new refill\weishengysix\RefillPhone([]);
  986. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  987. // $resp = $providers->query(['order_sn' => '17171624434289348649']);
  988. $data = '{"szOrderId":"17171624434289348649","fSalePrice":"44.5","szAgentId":"200074","nFlag":"2","szVerifyString":"fa5735090199d97e6a50e7f3083be111","szPhoneNum":"18500608333","szRtnMsg":"AW2021062315464045A27","nDemo":"50"}';
  989. $params = json_decode($data, true);
  990. refill\RefillFactory::instance()->notify('weishengysix', $params);
  991. }
  992. public function testHaohaoOil()
  993. {
  994. $providers = new refill\haohao\RefillOil([]);
  995. // $resp = $providers->add(1000111100021211884, 2, 100, ['order_sn' => $this->make_sn()]);
  996. $data['amount'] = 20000;
  997. $data['mchId'] = 467253;
  998. $data['mchOrderNo'] = '5514850674656058146707';
  999. $data['mobile'] = '';
  1000. $data['sign'] = 'F282D68972A437F3CEB3516BB2FDD19A';
  1001. $data['operator'] = 4;
  1002. $data['number'] = '1000113200020348885';
  1003. $data['thirdOrderNo'] = '2317184088901537792';
  1004. $data['directStatus'] = 5;
  1005. // $input = json_decode($data, true);
  1006. refill\RefillFactory::instance()->notify('haohao',$data);
  1007. }
  1008. public function testJuzhuoOil()
  1009. {
  1010. $providers = new refill\juzhuo\RefillOil([]);
  1011. // $resp = $providers->add(1000111100021211884, 2, 200, ['order_sn' => $this->make_sn()]);
  1012. // $resp = $providers->query(['order_sn' => '20121621578185774451']);
  1013. // $data = '{"channelsort":"OIL_CARD","channelno":"185176855832","onlystr":"20121621578185774451","channel":"JD","sign":"34dce9329fef7997c134987247ac6ee1","amt":"200","notifyurl":"https:\/\/www.xyzshops.cn\/mobile\/signature.php","cardtype":"Sinoepc","cardno":"1000111100021211884","orgid":"6095171500","account":"","status":"2"}';
  1014. // $input = json_decode($data, true);
  1015. $data['channelsort'] = 'OIL_CARD';
  1016. $data['channelno'] = '';
  1017. $data['onlystr'] = '0772770675248490450497';
  1018. $data['channel'] = 'JD';
  1019. $data['sign'] = '4a9f113bfa4aa2d155de7136ca0afe2d';
  1020. $data['amt'] = '100';
  1021. $data['notifyurl'] = 'http://121.89.212.167/racc/callback/lingzh/juzhuo.php';
  1022. $data['cardtype'] = 'Sinoepc';
  1023. $data['cardno'] = '1000113200029532754';
  1024. $data['orgid'] = '6095171500';
  1025. $data['account'] = '';
  1026. $data['status'] = '3';
  1027. refill\RefillFactory::instance()->notify('juzhuo',$data);
  1028. }
  1029. public function testZeheng()
  1030. {
  1031. $providers = new refill\zeheng\RefillOil([]);
  1032. // $resp = $providers->add(1000111100021211884, mtopcard\SinopecCard, 100, ['order_sn' => $this->make_sn()]);
  1033. // $resp = $providers->query(['order_sn' => '45951620814813332604']);
  1034. $data = '{"extOrderId":"45951620814813332604","orderId":"R2021051218240000192928","salePrice":"96.8000","sign":"0d6b9641eaf8d36ecba82cfefc6aa307","state":"4"}';
  1035. $input = json_decode($data, true);
  1036. refill\RefillFactory::instance()->notify('zeheng',$input);
  1037. }
  1038. public function testXiaoniu()
  1039. {
  1040. $providers = $this->getProvider('xiaoniu','RefillOil');
  1041. // $resp = $providers->add(1000111100021211884, mtopcard\SinopecCard, 500, ['order_sn' => $this->make_sn()]);
  1042. // $resp = $providers->query(['order_sn' => '39911625819031601073']);
  1043. // $data = '{"content":"\u3010\u4e2d\u56fd\u77f3\u5316\u3011\u60a8\u5c3e\u53f7\u4e3a211884\u7684\u52a0\u6cb9\u5361\u4e8e07\u670809\u65e5 16\u65f630\u5206\u5145\u503c\u6210\u529f,\u91d1\u989d500\u5143,\u8ba2\u5355\u53f7:2521070916304172","realAmt":"490.0000","status":"1","timestamp":"20210709163042","sign":"110aaae89243c9ed2d6aa4d753597224","orderNo":"XN20210709162351796707722","mOrderNo":"39911625819031601073"}';
  1044. // $input = json_decode($data, true);
  1045. // refill\RefillFactory::instance()->notify('xiaoniu',$input);
  1046. $resp = $providers->balance();
  1047. }
  1048. public function testYingdian()
  1049. {
  1050. $providers = new refill\yingdian\RefillOil([]);
  1051. // $resp = $providers->add(1000111100021211884, mtopcard\SinopecCard, 200, ['order_sn' => $this->make_sn()]);
  1052. // $resp = $providers->query(['order_sn' => '94691626688509004979']);
  1053. $resp = $providers->query(['order_sn' => '45671626687631917892']);
  1054. $data = '{"orderNo":"94691626688509004979","vouchers":"[\"2421071918070053\"]","orderId":"63400811-e877-11eb-a89f-00163e147a9b","spOrderNo":"052423YK241720210719175503603473","status":"SUCCESS"}';
  1055. $input = json_decode($data, true);
  1056. // refill\RefillFactory::instance()->notify('yingdian',$input);
  1057. }
  1058. public function testZhenqi()
  1059. {
  1060. $providers = new refill\zhenqi\RefillPhone([]);
  1061. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1062. // $resp = $providers->query(['order_sn' => '42611626267945146350']);
  1063. // $data = '{"out_trade_no":"14001626266194932132","create_time":"1626266201","sp_order_no":"110103353232107142044550619272","status":"1","sign":"3C2F8ED40EEB9151D2117E2DA1FA64AA"}';
  1064. // $input = json_decode($data, true);
  1065. // refill\RefillFactory::instance()->notify('zhenqi',$input);
  1066. $resp = $providers->balance();
  1067. }
  1068. public function testYunsuoyaofs()
  1069. {
  1070. $providers = new refill\yunsuoyaofs\RefillPhone([]);
  1071. // $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1072. // $resp = $providers->query(['order_sn' => '85681626322286098163']);
  1073. // $data = '{"orderid":"AMU21071512111544162","sporderid":"85681626322286098163","userid":"10002671","merchantsubmittime":"20210715121132","resultno":"9","parvalue":"50","remark1":"","payno":"","fundbalance":"-47.7","sign":"45ECFF26E84F7DC3BFFDCFAFF3B1E561"}';
  1074. // $input = json_decode($data, true);
  1075. // refill\RefillFactory::instance()->notify('yunsuoyaofs',$input);
  1076. $resp = $providers->balance();
  1077. }
  1078. public function testZhenqi1m()
  1079. {
  1080. $providers = new refill\zhenqi1m\RefillPhone([]);
  1081. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1082. // $resp = $providers->query(['order_sn' => '45611626334593130605']);
  1083. // $data = '{"out_trade_no":"45611626334593130605","create_time":"1626334606","sp_order_no":"202107152200117311004426885635","status":"1","sign":"CF8EB902F60B76591C898C991361BB4D"}';
  1084. // $input = json_decode($data, true);
  1085. // refill\RefillFactory::instance()->notify('zhenqi1m',$input);
  1086. $resp = $providers->balance();
  1087. }
  1088. public function testHongxudayz()
  1089. {
  1090. $providers = new refill\hongxudayz\RefillPhone([]);
  1091. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1092. // $resp = $providers->query(['order_sn' => '78221626445316011524']);
  1093. $data = '{"sale_value":"29.76","supply_id":"18789504","order_status":"0","mer_oid":"78221626445316011524","phone_no":"18500608333","mer_id":"yzhfcz","sale_discount":"0.992","sign":"51696429B62E74266516326279C2C97B","cp_id":"","product_no":"HFLTBJ_****00003000","product_face":"30","cp_ctype":""}';
  1094. $input = json_decode($data, true);
  1095. refill\RefillFactory::instance()->notify('hongxudayz',$input);
  1096. }
  1097. public function testHongxudagy()
  1098. {
  1099. $providers = new refill\hongxudagy\RefillPhone([]);
  1100. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1101. // $resp = $providers->query(['order_sn' => '86521626446475240639']);
  1102. // $data = '{"sale_value":"29.76","supply_id":"18790079","order_status":"0","mer_oid":"86521626446475240639","phone_no":"18500608333","mer_id":"bjgyfl","sale_discount":"0.992","sign":"9BDA608364D4E08C653E8C6798151AC2","cp_id":"","product_no":"HFLTBJ_****00003000","product_face":"30","cp_ctype":""}';
  1103. // $input = json_decode($data, true);
  1104. // refill\RefillFactory::instance()->notify('hongxudagy',$input);
  1105. $resp = $providers->balance();
  1106. }
  1107. public function testHongxudayz996()
  1108. {
  1109. $providers = new refill\hongxudayz996\RefillPhone([]);
  1110. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1111. // $resp = $providers->query(['order_sn' => '73691626753698522472']);
  1112. $data = '{"sale_value":"29.88","supply_id":"18888477","order_status":"3","mer_oid":"73691626753698522472","phone_no":"18500608333","mer_id":"bjyz2","sale_discount":"0.996","sign":"8E98EA2B6B81D832EBA8F89611A3F9B9","cp_id":"","product_no":"HFLTBJ_****00003000","product_face":"30","cp_ctype":""}';
  1113. $input = json_decode($data, true);
  1114. refill\RefillFactory::instance()->notify('hongxudayz996',$input);
  1115. }
  1116. public function testHongxudagy996()
  1117. {
  1118. $providers = new refill\hongxudagy996\RefillPhone([]);
  1119. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1120. // $resp = $providers->query(['order_sn' => '87681626758209689412']);
  1121. $data = '{"sale_value":"29.88","supply_id":"18889758","order_status":"3","mer_oid":"87681626758209689412","phone_no":"18500608333","mer_id":"bjgy2","sale_discount":"0.996","sign":"0CBA5B8F34D40914CB86CC74BE8EF15B","cp_id":"","product_no":"HFLTBJ_****00003000","product_face":"30","cp_ctype":""}';
  1122. $input = json_decode($data, true);
  1123. refill\RefillFactory::instance()->notify('hongxudagy996',$input);
  1124. }
  1125. public function testYunchonggong()
  1126. {
  1127. $providers = new refill\yunchonggong\RefillPhone([]);
  1128. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1129. // $resp = $providers->query(['order_sn' => '96481626678323726593']);
  1130. // $data = '{"szOrderId":"96481626678323726593","fSalePrice":"28.5","szAgentId":"200009","nFlag":"2","szVerifyString":"3f9cdc789c61646cf13079ee0464c6a0","szPhoneNum":"18500608333","szRtnMsg":"110103353092107191505440605544","nDemo":"30"}';
  1131. // $input = json_decode($data, true);
  1132. // refill\RefillFactory::instance()->notify('yunchonggong',$input);
  1133. $resp = $providers->balance();
  1134. }
  1135. public function testBingdht()
  1136. {
  1137. $providers = new refill\bingdht\RefillPhone([]);
  1138. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1139. // $resp = $providers->query(['order_sn' => '62491626761331174794']);
  1140. // $data = '{"szOrderId":"62491626761331174794","fSalePrice":"45.25","szAgentId":"200044","nFlag":"3","szVerifyString":"46745191d31b16ee7978a7f5554357d6","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"50"}';
  1141. // $input = json_decode($data, true);
  1142. // refill\RefillFactory::instance()->notify('bingdht',$input);
  1143. $resp = $providers->balance();
  1144. }
  1145. public function testYuecheng()
  1146. {
  1147. $providers = new refill\yuecheng\RefillPhone([]);
  1148. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1149. // $resp = $providers->query(['order_sn' => '45101626776884387650']);
  1150. $data = '{"ste":"0","cpid":"982100572516571","sign":"E0347851C8395B4FC08DA51FC650ABDA","dm":"49.6500","pid":"HFLTBJ_****00005000","oid":"45101626776884387650","sid":"200014603779","ct":"","tf":"50.0000","nb":"1","cardinfo":"","salevalue":"49.6500","pn":"18500608333","cid":"gyhf"}';
  1151. $input = json_decode($data, true);
  1152. refill\RefillFactory::instance()->notify('yuecheng',$input);
  1153. }
  1154. public function testPrice()
  1155. {
  1156. $amounts = [10, 20, 30, 50, 100, 200, 300, 500];
  1157. $rate = 0.994;
  1158. foreach ($amounts as $amount) {
  1159. $price[] = $amount * $rate;
  1160. }
  1161. }
  1162. public function testCallbackDir()
  1163. {
  1164. $path = "/callback";
  1165. $file = "/mobile/callback/refill_call.php";
  1166. $basename = basename($file);
  1167. $tmp = "{$path}/{$basename}.php";
  1168. return file_exists($tmp);
  1169. }
  1170. public function testWeisPhone()
  1171. {
  1172. $providers = new refill\weisyd\RefillPhone([]);
  1173. $resp = $providers->add(17801048874, 4, 10, ['order_sn' => $this->make_sn()]);
  1174. }
  1175. public function testXcPhone()
  1176. {
  1177. $providers = new refill\xc\RefillPhone([]);
  1178. $resp = $providers->add(13699279618, 5, 100, ['order_sn' => $this->make_sn()]);
  1179. // $resp = $providers->query(['order_sn' => '87961616926444043617']);
  1180. $params['pay_orderid'] = '87961616926444043617';
  1181. $params['pay_iphone'] = '18500608333';
  1182. $params['pay_money'] = '100';
  1183. $params['wt_orderid'] = '202103281816121070';
  1184. $params['status'] = '1';
  1185. $params['sign'] = 'f7be2e859a5a6dc7b1a8273361617752';
  1186. // refill\RefillFactory::instance()->notify('xc',$params);
  1187. }
  1188. public function testAfandPhone()
  1189. {
  1190. $providers = new refill\afand\RefillPhone([]);
  1191. // for ($i = 3; $i > 0; --$i) {
  1192. $resp = $providers->query(['order_sn' => '540668612768904780']);
  1193. // }
  1194. }
  1195. public function testAfandengPhone()
  1196. {
  1197. $providers = new refill\afandeng\RefillPhone([]);
  1198. // for ($i = 5; $i > 0; --$i) {
  1199. $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1200. // }
  1201. // $resp = $providers->query(['order_sn' => '20941616115610023539']);
  1202. // $params['usr'] = 'afandeng';
  1203. // $params['ord'] = '20941616115610023539';
  1204. // $params['state'] = '2';
  1205. // $params['bz'] = '';
  1206. // $params['sgn'] = 'BA2C9D379C3EB648A0B7AAB3A21A3F6A';
  1207. // refill\RefillFactory::instance()->notify('afandeng',$params);
  1208. }
  1209. public function testWantongPhone()
  1210. {
  1211. $providers = new refill\wantong\RefillPhone([]);
  1212. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1213. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1214. $resp = $providers->query(['order_sn' => '26061618988575301841']);
  1215. $data = '{"uid":"97396885","order_no":"26061618988575301841","mobile_order_no":"","phone_number":"13699279618","face_value":"3000","status":"9","sign":"1a019202656cf4feffe715025fab01bf"}';
  1216. $input = json_decode($data, true);
  1217. // refill\RefillFactory::instance()->notify('wantong',$input);
  1218. }
  1219. public function testXunyinPhone()
  1220. {
  1221. $providers = new refill\xunyin\RefillPhone([]);
  1222. // $resp = $providers->add(17703711950, 6, 30, ['order_sn' => $this->make_sn()]);
  1223. // $resp = $providers->query(['order_sn' => '76831617176125893158']);
  1224. // $xml = '<Order><cpid>8417</cpid><orderid>40591617173295524057</orderid><order_no>14784226</order_no><msg>充值中</msg><Code>0000</Code><Cards/></Order>';
  1225. // $resp = $providers->xmlToArray($xml);
  1226. // if ($resp['Code'] === '0000') {
  1227. // return [true, $resp['order_no'], false];
  1228. // } else {
  1229. // return [false, $resp['msg'], false];
  1230. // }
  1231. // $params['ext'] = '';
  1232. // $params['code'] = '8888';
  1233. // $params['sign'] = '428ac223cf3a1f6f3d382aac754e8e17';
  1234. // $params['statemes'] = '成功';
  1235. // $params['id'] = '76831617176125893158';
  1236. // $params['userid'] = '8417';
  1237. // $params['operatorid'] = '1000000083421033115583773201';
  1238. // $params['status'] = 'SUCCESS';
  1239. // refill\RefillFactory::instance()->notify('xunyin',$params);
  1240. $resp = $providers->balance();
  1241. }
  1242. public function testFenshengPhone()
  1243. {
  1244. $file = BASE_HELPER_RAPI_PATH . "/qianqian/RefillPhone.php";
  1245. if(!file_exists($file)){
  1246. Log::record("provider api file={$file} not exist.",Log::DEBUG);
  1247. return false;
  1248. } else {
  1249. require_once($file);
  1250. Log::record("file={$file} load success.",Log::DEBUG);
  1251. }
  1252. $providers = new refill\qianqian\RefillPhone([]);
  1253. $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1254. // $resp = $providers->query(['order_sn' => '27511617764278021035']);
  1255. // $datas = '[{"orderNo":"F2104071058069438461","status":"001","consumerNo":"27511617764278021035","voucherNo":"510490688023364042","mobile":"13699279618"}]';
  1256. // $datas = json_decode($datas,true);
  1257. // foreach ($datas as $data) {
  1258. // refill\RefillFactory::instance()->notify('fensheng',$data);
  1259. // }
  1260. }
  1261. public function testQianqianPhone()
  1262. {
  1263. $providers = new refill\qianqian\RefillPhone([]);
  1264. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1265. // $resp = $providers->query(['order_sn' => '27511617764278021035']);
  1266. // $datas = '[{"orderNo":"F2104071058069438461","status":"001","consumerNo":"27511617764278021035","voucherNo":"510490688023364042","mobile":"13699279618"}]';
  1267. // $datas = json_decode($datas,true);
  1268. // foreach ($datas as $data) {
  1269. // refill\RefillFactory::instance()->notify('fensheng',$data);
  1270. // }
  1271. $resp = $providers->balance();
  1272. }
  1273. public function testQianqianmanPhone()
  1274. {
  1275. $providers = new refill\qianqianman\RefillPhone([]);
  1276. // $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1277. // $resp = $providers->query(['order_sn' => '72011621236975003462']);
  1278. $data = '{"orderNo":"F2105171538062539442","status":"019","consumerNo":"72011621236975003462","voucherNo":null,"mobile":"13699279618"}';
  1279. $input = json_decode($data, true);
  1280. refill\RefillFactory::instance()->notify('qianqianman',$input);
  1281. }
  1282. public function testRiyingPhone()
  1283. {
  1284. $providers = new refill\riying\RefillPhone([]);
  1285. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1286. $resp = $providers->query(['ch_trade_no' => '2021041311120213187423105022']);
  1287. $data = '{"UserId":"10050","SysOrderId":"2021041311120213187423105022","OrderId":"15641618283518423567","State":"4","Timestamp":"1618283565746","VoucherType":"1","VoucherContent":"511009928000087852","Sign":"a6ec70a3ea42baae941528398c6d0a43"}';
  1288. $input = json_decode($data, true);
  1289. // refill\RefillFactory::instance()->notify('riying',$input);
  1290. }
  1291. public function testWeishengyPhone()
  1292. {
  1293. $providers = new refill\weishengy\RefillPhone([]);
  1294. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1295. // $resp = $providers->query(['order_sn' => '15551618590601301527']);
  1296. $data = '{"masId":"699270071532654592","oids":"158877719094,166090529155,158887187476","orderNo":"62411618635377880788","orderPrice":"150.00","phone":"18500608333","sign":"3EC10A32FC4CCC976048E1164D0FCBF6","status":"1","time":"1618643281063","type":"2"}';
  1297. $input = json_decode($data, true);
  1298. refill\RefillFactory::instance()->notify('weishengy',$input);
  1299. }
  1300. public function testWailingPhone()
  1301. {
  1302. $providers = new refill\wailing\RefillPhone([]);
  1303. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1304. $resp = $providers->query(['order_sn' => '73241618543784045618']);
  1305. $data = '{"order_id":"73241618543784045618","mchid":"10045","tel":"13699279618","price":"30.00","sign":"4991de3e40f14c198b8c194455ea021b","status":"0","out_order_id":"0"}';
  1306. $input = json_decode($data, true);
  1307. // refill\RefillFactory::instance()->notify('wailing',$input);
  1308. }
  1309. public function testShengyingPhone()
  1310. {
  1311. $providers = new refill\shengying\RefillPhone([]);
  1312. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1313. $resp = $providers->query(['order_sn' => '37571618805115582483']);
  1314. $data = '{"TaskID":"129636","Mobile":"13699279618","Status":"4","ReportTime":"2021-04-19T12:06:16.050","ReportCode":"1:511531522026586295","OutTradeNo":"37571618805115582483","ReceiptNum":"511531522026586295","Sign":"a7f46a988bc8483091d94130804e5078"}';
  1315. $input = json_decode($data, true);
  1316. // refill\RefillFactory::instance()->notify('shengying',$input);
  1317. }
  1318. public function testYunlingPhone()
  1319. {
  1320. $providers = new refill\yunling\RefillPhone([]);
  1321. // $resp = $providers->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  1322. // $resp = $providers->query(['order_sn' => '73791623147517199719']);
  1323. // $data = '{"orderid":"EAF21060818183032772","sporderid":"73791623147517199719","userid":"10002504","merchantsubmittime":"20210608181912","resultno":"1","parvalue":"30","remark1":"1000000083421060818483137636","payno":"1000000083421060818483137636","fundbalance":"-28.59","sign":"8D77517AC3905ED88BF79EE789A5FA86"}';
  1324. // $input = json_decode($data, true);
  1325. // refill\RefillFactory::instance()->notify('yunling',$input);
  1326. $resp = $providers->balance();
  1327. }
  1328. public function testZhongstPhone()
  1329. {
  1330. $providers = new refill\zhongst\RefillPhone([]);
  1331. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1332. // $resp = $providers->query(['order_sn' => '48941618981770389271']);
  1333. // $data = ' {"szOrderId":"66571619060147539784","fSalePrice":"46.5","szAgentId":"200030","nFlag":"2","szVerifyString":"c1e88701b89a4887996822d708bed5f5","szPhoneNum":"13699279618","szRtnMsg":"161122673971","nDemo":"50"}';
  1334. // $input = json_decode($data, true);
  1335. // refill\RefillFactory::instance()->notify('zhongst',$input);
  1336. $resp = $providers->balance();
  1337. }
  1338. public function testXunaoPhone()
  1339. {
  1340. $providers = new refill\xunao\RefillPhone([]);
  1341. // $resp = $providers->add(18074608795, 6, 10, ['order_sn' => $this->make_sn()]);
  1342. // $resp = $providers->query(['order_sn' => '40021619431386253803', 'card_no' => 18074608795, 'card_type' => 6]);
  1343. // $data = '{"amount":"10.00","orderNo":"40021619431386253803","supplierId":"10","orderId":"S20210426180311761051424910","notifyTime":"1619431456411","sign":"c4eef22091831104be7ae95a0292c703","discountAmount":"0.50","phoneNo":"18074608795","queryUrl":"https:\/\/www.189.cn\/client\/wap\/wapproject\/wapclient\/feecharge\/feecharge_result.html?sessionid=f633d8a270aa4e5892d0f7ca6f09e95e","payType":"alipay","ticketNo":"1000000083421042618356072935","company":"dx","status":"2"}';
  1344. // $input = json_decode($data, true);
  1345. // refill\RefillFactory::instance()->notify('xunao',$input);
  1346. $resp = $providers->balance();
  1347. }
  1348. public function testYonghePhone()
  1349. {
  1350. $providers = new refill\yonghe\RefillPhone([]);
  1351. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1352. // $resp = $providers->query(['order_sn' => '20461619597297972685']);
  1353. // $data = '{"szOrderId":"20461619597297972685","fSalePrice":"29.955","szAgentId":"200115","nFlag":"2","szVerifyString":"b5c292a13c5e67a9b850eb37239682ae","szPhoneNum":"13699279618","szRtnMsg":"2021042822001139701437383521","nDemo":"30"}';
  1354. // $input = json_decode($data, true);
  1355. // refill\RefillFactory::instance()->notify('yonghe',$input);
  1356. $resp = $providers->balance();
  1357. }
  1358. public function testJumiPhone()
  1359. {
  1360. $providers = new refill\jumikc\RefillPhone([]);
  1361. // $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1362. // $resp = $providers->query(['order_sn' => '12161619768293529384']);
  1363. // $data = '{"order_no":"12161619768293529384","channel_order_no":"C2104300338227862125","status":1,"money":"50.00","cost_money":"48.60","mch_no":210303112631,"account":"13699279618","official_sn":"","sign":"efa99b969f318ef934d8120ccfc77c3e"}';
  1364. // $input = json_decode($data, true);
  1365. // refill\RefillFactory::instance()->notify('jumi',$input);
  1366. $resp = $providers->balance();
  1367. }
  1368. public function testJumiOil()
  1369. {
  1370. $providers = new refill\jumi\RefillOil([]);
  1371. // $resp = $providers->add(1000111100021211884, 2, 100, ['order_sn' => $this->make_sn()]);
  1372. // $resp = $providers->query(['order_sn' => '29021620617872685187']);
  1373. $data = '{"order_no":"29021620617872685187","channel_order_no":"C2105101138061082025","status":1,"money":"100.00","cost_money":"98.00","mch_no":210303112631,"account":"1000111100021211884","official_sn":"","sign":"0914807052a04282aeb855f459fcc7b7"}';
  1374. $input = json_decode($data, true);
  1375. refill\RefillFactory::instance()->notify('jumi',$input);
  1376. }
  1377. public function testFengyePhone()
  1378. {
  1379. $providers = new refill\fengye\RefillPhone([]);
  1380. // $resp = $providers->add(18074608795, 6, 50, ['order_sn' => $this->make_sn()]);
  1381. // $resp = $providers->query(['order_sn' => '53511620355988978053', 'card_no' => 18074608795, 'card_type' => 6]);
  1382. $data = '{"amount":"50.00","orderNo":"53511620355988978053","supplierId":"13","orderId":"S20210507105309202749918513","notifyTime":"1620356062365","sign":"371260b007f2e64d86873ce3ede67fa3","discountAmount":"2.50","phoneNo":"18074608795","queryUrl":"https:\/\/www.189.cn\/client\/wap\/wapproject\/wapclient\/feecharge\/feecharge_result.html?sessionid=e896e66c2e134ba3b469b26df34d12d1","payType":"wechat","ticketNo":"1000000083421050710397228882","company":"dx","status":"2"}';
  1383. $input = json_decode($data, true);
  1384. refill\RefillFactory::instance()->notify('fengye',$input);
  1385. }
  1386. public function testYunsuoyaoPhone()
  1387. {
  1388. $providers = new refill\yunsuoyao\RefillPhone([]);
  1389. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1390. // $resp = $providers->query(['order_sn' => '20431621331092296201']);
  1391. // $data = '{"orderid":"RLU21051817441937847","sporderid":"20431621331092296201","userid":"10002501","merchantsubmittime":"20210518174858","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-28.74","sign":"426EAC103B79505BAE7AB3F16886F1A8"}';
  1392. // $input = json_decode($data, true);
  1393. // refill\RefillFactory::instance()->notify('yunsuoyao',$input);
  1394. $resp = $providers->balance();
  1395. }
  1396. public function testAfdPhone()
  1397. {
  1398. $providers = new refill\afd\RefillPhone([]);
  1399. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1400. // $resp = $providers->query(['order_sn' => '71001621233525947994']);
  1401. $data = '{"code":"000","merchantorderId":"71001621233525947994","platformorderid":"aab01693204b95c4df1268313","orderid":"经度110103308082105171438580570638","rechargeno":"18500608333","amount":"50.00","payamount":"47.40000","rechargestate":"99","createtime":"2021-05-17 14:38:29","sign":"62d9af5833e1bf489998a0425107573f"}';
  1402. $input = json_decode($data, true);
  1403. refill\RefillFactory::instance()->notify('afd',$input);
  1404. }
  1405. public function testLuqianPhone()
  1406. {
  1407. $providers = new refill\luqian\RefillPhone([]);
  1408. // $resp = $providers->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  1409. $resp = $providers->query(['order_sn' => '2829660672500596314764']);
  1410. $data = '{"amount":"100","charge_type":"0","code":"1","partner_id":"38","phone":"18500608333","sign":"c2c86cccc73fa991a63c369e683c91f2","partner_order_no":"34101618897099329575","official_order_id":"110103308072104201338340278420"}';
  1411. $input = json_decode($data, true);
  1412. // refill\RefillFactory::instance()->notify('luqian',$input);
  1413. }
  1414. public function testAfandfsPhone()
  1415. {
  1416. $providers = new refill\afandfs\RefillPhone([]);
  1417. // $resp = $providers->add(15139608757, 4, 30, ['order_sn' => $this->make_sn()]);
  1418. // $resp = $providers->query(['order_sn' => '65101618975926761630']);
  1419. // $data = '{"amount":"30","charge_type":"2","code":"1","partner_id":"52","phone":"15139608757","sign":"a7f54c1ac3e1af72f9fc849086cc4bec","partner_order_no":"65101618975926761630","official_order_id":"20210421113256628350"}';
  1420. // $input = json_decode($data, true);
  1421. // refill\RefillFactory::instance()->notify('afandfs',$input);
  1422. $resp = $providers->balance();
  1423. }
  1424. public function testYunlingfsPhone()
  1425. {
  1426. $providers = new refill\yunlingfs\RefillPhone([]);
  1427. // $resp = $providers->add(15139608757, 4, 50, ['order_sn' => $this->make_sn()]);
  1428. // $resp = $providers->query(['order_sn' => '79251623739433607563']);
  1429. // $data = '{"orderid":"BGC21061514434393910","sporderid":"79251623739433607563","userid":"10002543","merchantsubmittime":"20210615144434","resultno":"1","parvalue":"50","remark1":"20210615144420321813","payno":"20210615144420321813","fundbalance":"-47.65","sign":"6B9B7C15A3F9CBC773562327B6744B1E"}';
  1430. // $input = json_decode($data, true);
  1431. // refill\RefillFactory::instance()->notify('yunlingfs',$input);
  1432. $resp = $providers->balance();
  1433. }
  1434. public function testTianchengPhone()
  1435. {
  1436. $providers = new refill\tiancheng\RefillPhone([]);
  1437. // $resp = $providers->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  1438. // $resp = $providers->query(['order_sn' => '15301619399212504464']);
  1439. // $data = ' {"result":"fail","msg":"0","order":"null","phone_no":"13699279618","amount":"10","op_no":"84801619340283980506","settle":"0","sign":"D64039ED791920B08BDA9DD95700C0E6"}';
  1440. // $input = json_decode($data, true);
  1441. // refill\RefillFactory::instance()->notify('tiancheng',$input);
  1442. $resp = $providers->balance();
  1443. }
  1444. public function testLingzhPhone()
  1445. {
  1446. $providers = new refill\lingzh\RefillPhone([]);
  1447. // $resp = $providers->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  1448. // $resp = $providers->query(['order_sn' => '59911615124025101286']);
  1449. $resp = $providers->balance();
  1450. // $input['usr'] = 1;
  1451. // $input['ord'] = '52741615119546453690';
  1452. // $input['bz'] = '';
  1453. // $input['state'] = 2;
  1454. // $input['sgn'] = 'FFCBB75C307154DD306F4EC75BB69A6D';
  1455. // refill\RefillFactory::instance()->notify('lingzh',$input);
  1456. }
  1457. public function testAfandnewPhone()
  1458. {
  1459. $providers = new refill\afandnew\RefillPhone([]);
  1460. // $resp = $providers->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  1461. // $resp = $providers->query(['order_sn' => '45371617101073876975', 'ch_trade_no' => '33018443659736309']);
  1462. $params = '{"amount":"100","carrierOrderNo":null,"mobile":"18500608333","orderNo":"45371617101073876975","orderStatus":3,"sign":"8DE392AD6B4730AD9EE0FC2B95BBDF17","tradeNo":"33018443659736309"}';
  1463. $input = json_decode($params, true);
  1464. refill\RefillFactory::instance()->notify('afandnew', $input);
  1465. }
  1466. public function testYifaPhone()
  1467. {
  1468. $providers = new refill\yifa\RefillPhone([]);
  1469. $resp = $providers->add(15120035568, 5, 50, ['order_sn' => $this->make_sn()]);
  1470. }
  1471. public function testTianjtOil()
  1472. {
  1473. $cardno = 1000111100021211884;
  1474. $providers = new refill\tianjt\RefillOil([]);
  1475. $resp = $providers->add($cardno, 2, 500, ['order_sn' => $this->make_sn()]);
  1476. }
  1477. public function testWeitPhone()
  1478. {
  1479. $providers = new refill\weit\RefillPhone([]);
  1480. for ($i = 0; $i <= 10; $i++) {
  1481. $resp = $providers->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  1482. }
  1483. }
  1484. public function testWeitCB()
  1485. {
  1486. $params['sign'] = 'af820c33472f4b571fa0c48483dfb975';
  1487. $params['status'] = 0;
  1488. $params['price'] = 30;
  1489. $params['op_order_id'] = '';
  1490. $params['mch_order_id'] = '900664281823957221';
  1491. $params['pt_order_id'] = '2021011802434412825405218901';
  1492. $params['pay_type'] = '';
  1493. $params['tel'] = 18500608333;
  1494. $params['mchid'] = 10014;
  1495. $resp = http_request($this->mReqHost . "/mobile/refill_weit.php", $params, 'POST');
  1496. }
  1497. public function testYifaCB()
  1498. {
  1499. $body = '{"app_id":"e4a61b2acf1119c72c1ed9b61781494e","nonce_str":"OQMEBRQWJGPKOWYUXDVPTNMLEQJHXFWG","timestamp":1610275083,"order_sn":"161027325773032634","coder_order_sn":"60641610273255214687","isp_order_sn":null,"phone":"15120035568","amount":"94.000","discount":"0.9400","create_time":"2021-01-10 18:07:42","recharge_time":"","status":"fail","channel_id":3,"sign":"47278AD74EFA7F5FC8DE3A6D362C409B"}';
  1500. $input = json_decode($body, true);
  1501. refill\RefillFactory::instance()->notify('yifa', $input);
  1502. }
  1503. public function testBjbQuery()
  1504. {
  1505. $providers = new refill\bjb\RefillPhone([]);
  1506. $refill_info = ['order_sn' => 110667993758599771, 'ch_trade_no' => 499, 'card_no' => 1000111200005252927];
  1507. $resp = $providers->query($refill_info);
  1508. }
  1509. public function testXcQuery()
  1510. {
  1511. $providers = new refill\xc\RefillPhone([]);
  1512. $refill_info = ['order_sn' => 950663423236726632, 'ch_trade_no' => 499, 'card_no' => 1000111200005252927];
  1513. $resp = $providers->query($refill_info);
  1514. }
  1515. public function testTianjtQuery()
  1516. {
  1517. $providers = new refill\tianjt\RefillOil([]);
  1518. $refill_info = ['order_sn' => 680665862267622221, 'ch_trade_no' => 499, 'card_no' => 1000111200005252927];
  1519. $resp = $providers->query($refill_info);
  1520. }
  1521. public function testSaihuOil()
  1522. {
  1523. $providers = new refill\saihu\RefillOil([]);
  1524. $resp = $providers->add(1000111100021211884, 2, 100, ['order_sn' => $this->make_sn()]);
  1525. }
  1526. public function testBdtOil()
  1527. {
  1528. $providers = new refill\bdt\RefillOil([]);
  1529. $resp = $providers->add(1000111100021211884, 2, 100, ['order_sn' => '200229600556618886']);
  1530. }
  1531. public function testGFTDOil()
  1532. {
  1533. $providers = new refill\gftd\RefillOil([]);
  1534. $resp = $providers->add(1000111100020445281, mtopcard\SinopecCard, 100, ['order_sn' => $this->make_sn()]);
  1535. }
  1536. public function testYichangtOil()
  1537. {
  1538. $providers = new refill\yichangt\RefillOil([]);
  1539. $resp = $providers->add(1000111100021211884, mtopcard\SinopecCard, 200, ['order_sn' => $this->make_sn()]);
  1540. // $resp = $providers->query(['order_sn' => '87591620379260314044']);
  1541. $data = '{"appid":"app570259129507","order_id":"M202105077888184428723706","merchant_order_id":"82231620378877155624","status":"3","cash":"100","time":"1620378961450","nonce":"2fad56d59a9f46d896c15b0cff74bc","signature":"57a6d24ec376b58bb433cfcf8528d53cb276eac8"}';
  1542. $input = json_decode($data, true);
  1543. // refill\RefillFactory::instance()->notify('yichangt',$input);
  1544. }
  1545. public function testGFTDCB()
  1546. {
  1547. $data = '{"channelOrderNumber":"79091610959059372019","orderNumber":"GYFL1610959060397001","message":"充值成功","storage":"881036222bd8f067ff47d248c75f4c8d","voucher":"","status":101}';
  1548. $url = "http://192.168.1.220/mobile/refill_gftd.php?" . $data;
  1549. $resp = http_post_data($url, $data, ['Content-Type: application/json;charset=UTF-8;', 'Accept:application/json;charset=UTF-8;']);
  1550. }
  1551. public function testJiecPhone()
  1552. {
  1553. $providers = new refill\jiec\RefillPhone([]);
  1554. $resp = $providers->add('18500608333', 5, 30, ['order_sn' => $this->make_sn()]);
  1555. }
  1556. public function testBxtwtCB()
  1557. {
  1558. $data = '{"order_number":18219726,"shipping_status":4,"shipping_status_desc":"发货失败","shipping_status_message":"","sign":"863b4d972f2a4d39a9af7396879116c4","voucher":"","vouchertype":"","voucherurl":"","tradeNo":"100662475851197741"}';
  1559. }
  1560. public function testTianjtJDVerify()
  1561. {
  1562. $data = 'onlystr=920661883198026632&sign=533151e3f0dff5f507786aabc37b18f7&amt=100&notifyurl=https%3A%2F%2Fwww.xyzshops.cn%2Fmobile%2Frefill_tianjt.php&jdno&cardtype=Sinoepc&batchid=26106&cardno=1000111100020654226&orgid=1590993600&status=3';
  1563. $url = "http://192.168.1.220/mobile/refill_tianjt.php?" . $data;
  1564. $resp = http_request($url);
  1565. }
  1566. public function testSuhcPDD()
  1567. {
  1568. $data = 'onlystr=820663525320005221&pddno&sign=4b1e8645f7541ced34855779448d9d52&amt=100&notifyurl=https%3A%2F%2Fwww.xyzshops.cn%2Fmobile%2Frefill_suhcpdd.php&cardtype=Sinoepc&batchid=3&cardno=1000111100020445281&orgid=1590993600&status=2';
  1569. $url = "https://www.xyzshops.cn/mobile/refill_suhcpdd.php?" . $data;
  1570. $resp = http_request($url);
  1571. }
  1572. public function testSuhcTMVerify()
  1573. {
  1574. $data = 'onlystr=180662473867058221&sign=5ff5f95d54a89e78dbb49923f6b20c08&amt=100&notifyurl=https%3A%2F%2Fwww.xyzshops.cn%2Fmobile%2Frefill_suhctm.php&cardtype=Sinoepc&batchid=3&cardno=1000111100020445281&orgid=1590993600&status=3';
  1575. $url = "https://www.xyzshops.cn/mobile/refill_suhctm.php?" . $data;
  1576. $resp = http_request($url);
  1577. }
  1578. public function testBeixtVerify()
  1579. {
  1580. $data = '{"order_number":18219726,"shipping_status":4,"shipping_status_desc":"发货失败","shipping_status_message":"","sign":"863b4d972f2a4d39a9af7396879116c4","voucher":"","vouchertype":"","voucherurl":"","tradeNo":"100662475851197741"}';
  1581. $url = "https://www.xyzshops.cn/mobile/refill_bxtwt.php";
  1582. $headers = ['Content-Type: application/json'];
  1583. $resp = http_post_data($url, $data, $headers);
  1584. }
  1585. public function testInput()
  1586. {
  1587. $input = fopen("php://input", "rw");
  1588. file_put_contents($input, 'xxxx');
  1589. $content = file_get_contents('php://input');
  1590. }
  1591. public function testUrl()
  1592. {
  1593. $data = 'onlystr=190661874318128632&sign=9eb60765c356341fd41c9bec6526f46a&amt=1000&notifyurl=https%3A%2F%2Fwww.xyzshops.cn%2Fmobile%2Frefill_suhc.php&jdno&cardtype=Sinoepc&batchid=25940&cardno=1000111100012304048&orgid=1590993600&status=2';
  1594. $params = preg_split('/&/', $data);
  1595. foreach ($params as $pair) {
  1596. $kv = explode('=', $pair);
  1597. $count = count($kv);
  1598. if ($count === 1) {
  1599. $key = $kv[0];
  1600. $val = "";
  1601. } elseif ($count === 2) {
  1602. $key = $kv[0];
  1603. $val = $kv[1];
  1604. } else {
  1605. continue;
  1606. }
  1607. Log::record("{$key}:{$val}", Log::DEBUG);
  1608. }
  1609. }
  1610. public function testAddoil()
  1611. {
  1612. $url = $this->mReqHost . "/mobile/index.php";
  1613. $notifyurl = 'http://121.89.196.45/mobile/signature.php';
  1614. $params = ['mchid' => $this->mMchid,
  1615. 'cardno' => '1000111100020445281',
  1616. 'amount' => "100",
  1617. "act" => "refill",
  1618. "op" => "add",
  1619. 'order_sn' => $this->make_sn(),
  1620. 'notifyurl' => $notifyurl];
  1621. $resp = $this->send_md5($url, $params);
  1622. Log::record($resp, Log::DEBUG);
  1623. }
  1624. public function testBalance()
  1625. {
  1626. $url = $this->mReqHost . "/mobile/index.php";
  1627. $params = ['mchid' => 1092,
  1628. "act" => "refill",
  1629. "op" => "balance"];
  1630. $resp = $this->send_md5($url, $params);
  1631. Log::record($resp, Log::DEBUG);
  1632. }
  1633. public function testNotify()
  1634. {
  1635. $params = [
  1636. "mchid" => 10202,
  1637. "order_sn" => '21090216132600003_11675',
  1638. "amount" => '30.00',//intval($refill_info['refill_amount'] + 0.05),
  1639. "cardno" => 18639492164,
  1640. "trade_no" => 8693160683914496896438,
  1641. "idcard" => "",
  1642. "card_name" => "",
  1643. 'official_sn' => "",
  1644. 'message' => "匹配不到合适的充值通道",
  1645. "state" => 'CANCEL'];
  1646. $sign = $this->md5_sign($params,'KxK9f3yaBDOXVwvuOKDozvQ9Mt1CoqRX');
  1647. $notify_url = 'https://openapi-gateway-test.bbinsure.cn/ants_charge/v1/charge/order/notify/yeziOrderNew/1140';
  1648. $resp = http_request($notify_url, $params, 'POST');
  1649. }
  1650. public function testAddPhoe()
  1651. {
  1652. $url = $this->mReqHost . "/mobile/index.php";
  1653. $params = ['mchid' => $this->mMchid,
  1654. 'cardno' => '',
  1655. 'amount' => 100,
  1656. "act" => "refill",
  1657. "op" => "add",
  1658. 'order_sn' => '',
  1659. 'notifyurl' => "https://www.baoyung.com/api/unionservice/yezicharge"];
  1660. Log::record(json_encode($params), Log::DEBUG);
  1661. // $resp = $this->send_md5($url, $params);
  1662. }
  1663. public function testProxyHelper()
  1664. {
  1665. $phone = '13911129867';
  1666. $amount = 100;
  1667. $url = $this->mReqHost . "/mobile/index.php";
  1668. $params = ['mchid' => $this->mMchid,
  1669. 'cardno' => $phone,
  1670. 'amount' => $amount,
  1671. "act" => "refill",
  1672. "op" => "add",
  1673. 'order_sn' => $this->make_sn(),
  1674. 'notifyurl' => "https://xxx"];
  1675. $proxy = new refill_proxy("xxx");
  1676. $resp = $proxy->send($url, $params);
  1677. }
  1678. public function testGoods()
  1679. {
  1680. $req_url = $this->mReqHost . '/mobile/index.php';
  1681. $params = ['mchid' => $this->mMchid,
  1682. "act" => "refill",
  1683. "op" => "goods"];
  1684. $resp = $this->send_md5($req_url, $params);
  1685. }
  1686. public function testQueryFactory()
  1687. {
  1688. refill\RefillFactory::instance()->query(295);
  1689. }
  1690. public function testQuery()
  1691. {
  1692. //$req_url = 'https://www.xyzshops.cn/mobile/index.php';
  1693. // $notifyurl = 'https://www.xyzshops.cn/mobile/signature.php';
  1694. $req_url = BASE_SITE_URL . '/mobile/index.php';
  1695. $notifyurl = 'https://www.xyzshops.cn/mobile/signature.php';
  1696. $params = ['mchid' => 1,
  1697. "act" => "refill",
  1698. "op" => "query",
  1699. 'order_sn' => "13281476"];
  1700. $resp = $this->send_md5($req_url, $params);
  1701. }
  1702. public function testRemoveSession()
  1703. {
  1704. $resp = http_request(BASE_SITE_URL . "/mobile/signature.php", [], 'POST');
  1705. }
  1706. public function testTianjtCB()
  1707. {
  1708. // $notifyurl = BASE_SITE_URL . "/mobile/refill_tianjt.php";
  1709. $notifyurl = "https://www.xyzshops.cn/mobile/refill_tianjt.php";
  1710. // $notifyurl = "https%3A%2F%2Fwww.xyzshops.cn%2Fmobile%2Frefill_tianjt.php";
  1711. $params = ['onlystr' => '690665858589475818',
  1712. 'amt' => 1000,
  1713. 'jdno' => '',
  1714. 'notifyurl' => $notifyurl,
  1715. 'cardtype' => 'Sinoepc',
  1716. 'batchid' => 30589,
  1717. 'cardno' => '1000113300007993287',
  1718. 'orgid' => '1590993600',
  1719. 'status' => 3];
  1720. $sign = $this->md5_sign($params);
  1721. $params['sign'] = $sign;
  1722. $resp = http_request($notifyurl, $params, 'POST');
  1723. Log::record($resp, Log::DEBUG);
  1724. }
  1725. public function testBJBCB()
  1726. {
  1727. $params = [
  1728. 'usr' => '13699279618',
  1729. 'ord' => '710662733975412771',
  1730. 'state' => '2',
  1731. 'bz' => '',
  1732. 'sgn' => 'AC9AFD254DE682D8440A97CA68B992DA'
  1733. ];
  1734. $resp = http_request("https://www.xyzshops.cn/mobile/refill_bjb.php", $params, 'POST');
  1735. }
  1736. public function testJiecCB()
  1737. {
  1738. $params['result'] = 'fail';
  1739. $params['msg'] = '0';
  1740. $params['order'] = 'null';
  1741. $params['phone_no'] = '18500608333';
  1742. $params['amount'] = '30.00';
  1743. $params['op_no'] = '800663597981819221';
  1744. $params['sign'] = '2510046895e8e12322c8a32547905ee9';
  1745. $resp = http_request($this->mReqHost . "/mobile/refill_jiec.php", $params, 'POST');
  1746. }
  1747. public function testZFKJ()
  1748. {
  1749. //带签名参数:mchid=1090&act=refill&op=add&cardno=100112121212212133
  1750. //&amount=10&order_sn=PH2012261356569433&
  1751. //notifyurl=https%3A%2F%2Fqzcz.edusahoo.com.cn%2Findex%2Findex%2Fcallback
  1752. //&sign=4a3ac5f9706e64aa70c6cab0fc5839d3
  1753. $params = ['mchid' => 1090,
  1754. 'cardno' => '100112121212212133',
  1755. 'amount' => '10',
  1756. "act" => "refill",
  1757. "op" => "add",
  1758. 'order_sn' => 'PH2012261356569433',
  1759. 'notifyurl' => 'https://qzcz.edusahoo.com.cn/index/index/callback'];
  1760. $resp = $this->send_md5(BASE_SITE_URL . '/mobile/index.php', $params);
  1761. }
  1762. protected function check_empty($value)
  1763. {
  1764. if (!isset($value))
  1765. return true;
  1766. if ($value === null)
  1767. return true;
  1768. if (trim($value) === "")
  1769. return true;
  1770. return false;
  1771. }
  1772. public function testcreateSign()
  1773. {
  1774. $params['act'] = 'refill';
  1775. $params['amount'] = '30';
  1776. $params['cardno'] = '18111516552';
  1777. $params['mchid'] = '10179';
  1778. $params['notifyurl'] = 'http://czapi2.1jinb.net/YeZiHCCallBackOrderServlet';
  1779. $params['op'] = 'add';
  1780. $params['order_sn'] = 'JFNOR10835056877';
  1781. $sign = $this->md5_sign($params);
  1782. }
  1783. public function testCheckphone()
  1784. {
  1785. $check = function ($phone) {
  1786. $url = 'https://mobileempty.shumaidata.com/mobileempty';
  1787. $params['mobile'] = $phone;
  1788. $headers = array();
  1789. array_push($headers, "Authorization:APPCODE " . '8f92d951293f4d2ea48ff86d5a70c537');
  1790. $resp = http_request($url, $params, 'GET', false, $headers);
  1791. $resp = json_decode($resp, true);
  1792. if ($resp['success'] == true && $resp['code'] == 200) {
  1793. Log::record("data phone:{$phone} , status : {$resp['data']['status']}", Log::DEBUG);
  1794. if (in_array($resp['data']['status'], [0, 3, 4, 5])) {
  1795. return false;
  1796. }
  1797. } else {
  1798. Log::record("data phone:{$phone} , 不支持的号段", Log::DEBUG);
  1799. }
  1800. };
  1801. $check(17801048874);
  1802. }
  1803. public function testCtSign()
  1804. {
  1805. $params['amount'] = '10.00';
  1806. $params['message'] = '余额不足支付订单';
  1807. $params['cardno'] = 18345531094;
  1808. $params['mchid'] = 10197;
  1809. $params['trade_no'] = '2068550683809271439468';
  1810. $params['state'] = 'CANCEL';
  1811. $params['order_sn'] = '20210901110059907C414UF7GCIG9491';
  1812. $sign = $this->md5_sign($params,'bac87b788087457e92a5319413c603a3');
  1813. }
  1814. private function md5_sign($params,$key = '')
  1815. {
  1816. ksort($params);
  1817. $body = "";
  1818. $i = 0;
  1819. foreach ($params as $k => $v) {
  1820. if (false === $this->check_empty($v) && "@" != substr($v, 0, 1)) {
  1821. if ($i == 0) {
  1822. $body .= "{$k}" . "=" . urlencode($v);
  1823. } else {
  1824. $body .= "&" . "{$k}" . "=" . urlencode($v);
  1825. }
  1826. $i++;
  1827. }
  1828. }
  1829. $body .= "&key={$key}";
  1830. return md5($body);
  1831. }
  1832. public function testCallMech()
  1833. {
  1834. $logic = Logic('queue');
  1835. $logic->NotifyMerchantComplete(['order_id' => 18171, 'manual' => true]);
  1836. }
  1837. //docker-compose run phpcli php /var/www/html/phpunit-9.2.5.phar --filter "/(TestRefill::testCallMech)( .*)?$/" --test-suffix TestRefill.php /var/www/html/test
  1838. private function send($url, $params)
  1839. {
  1840. $mchid = $params['mchid'];
  1841. $pri_key = BASE_DATA_PATH . "/api/merchant/key/{$mchid}_pri.pem";
  1842. $key = file_get_contents($pri_key);
  1843. $pri = openssl_get_privatekey($key);
  1844. $body = $this->body($params);
  1845. openssl_sign($body, $signed, $pri);
  1846. $sign = base64_encode($signed);
  1847. $params['sign'] = $sign;
  1848. $resp = http_request($url, $params, 'POST');
  1849. Log::record("resp:{$resp}", Log::DEBUG);
  1850. }
  1851. private function send_md5($url, $params)
  1852. {
  1853. $body = $this->body($params);
  1854. $body .= "&key={$this->mKey}";
  1855. $params['sign'] = md5($body);
  1856. $resp = http_request($url, $params, 'POST');
  1857. Log::record("resp:{$resp}", Log::DEBUG);
  1858. return $resp;
  1859. }
  1860. public function testCardType()
  1861. {
  1862. $cardno = '1000111100021211884';
  1863. $ret = preg_match('/^1[0-9]{18}$/', $cardno, $matches);
  1864. }
  1865. public function testMtrand()
  1866. {
  1867. }
  1868. public function testHttpRefill()
  1869. {
  1870. $mchid = '000001';
  1871. $pri_key = BASE_DATA_PATH . "/api/merchant/key/{$mchid}_pri.pem";
  1872. $key = file_get_contents($pri_key);
  1873. $pri = openssl_get_privatekey($key);
  1874. $params = ['MCHID' => $mchid, 'cardno' => '1000111100021211884', 'amt' => "100", "act" => "refill", "op" => "addoil"];
  1875. $body = $this->body($params);
  1876. openssl_sign($body, $signed, $pri);
  1877. $sign = base64_encode($signed);
  1878. $params['sign'] = $sign;
  1879. $resp = http_request(BASE_SITE_URL . "/mobile/index.php", $params, 'POST');
  1880. }
  1881. private function body($params)
  1882. {
  1883. ksort($params);
  1884. $body = "";
  1885. $i = 0;
  1886. foreach ($params as $k => $v) {
  1887. if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
  1888. if ($i == 0) {
  1889. $body .= "{$k}" . "=" . urlencode($v);
  1890. } else {
  1891. $body .= "&" . "{$k}" . "=" . urlencode($v);
  1892. }
  1893. $i++;
  1894. }
  1895. }
  1896. return $body;
  1897. }
  1898. private function checkEmpty($value)
  1899. {
  1900. if (!isset($value))
  1901. return true;
  1902. if ($value === null)
  1903. return true;
  1904. if (trim($value) === "")
  1905. return true;
  1906. return false;
  1907. }
  1908. public function testKsort()
  1909. {
  1910. $age = ["Peter" => "35", "Ben" => "37", "Joe" => "43"];
  1911. ksort($age);
  1912. foreach ($age as $x => $x_value) {
  1913. echo "Key=" . $x . ", Value=" . $x_value;
  1914. echo "<br>";
  1915. }
  1916. }
  1917. public function testip()
  1918. {
  1919. $model_merchant = Model('merchant');
  1920. $merchant_info = $model_merchant->getMerchantInfo(['mchid' => 1]);
  1921. $ipwhitelist = unserialize($merchant_info['ip_white_list']);
  1922. $res = json_encode($ipwhitelist);
  1923. }
  1924. //测试向内部店提交订单,可先屏蔽其它充值通道
  1925. public function testAddoilToInnerStore()
  1926. {
  1927. $url = $this->mReqHost . "/mobile/index.php";
  1928. $notifyurl = BASE_SITE_URL . '/mobile/signature.php';
  1929. $params = ['mchid' => 1,
  1930. 'cardno' => '1000111100020445281',
  1931. 'amount' => "1000",
  1932. "act" => "refill",
  1933. "op" => "add",
  1934. 'order_sn' => $this->make_sn(),
  1935. 'notifyurl' => $notifyurl];
  1936. $resp = $this->send_md5($url, $params);
  1937. Log::record($resp, Log::DEBUG);
  1938. }
  1939. public function testRefillInnerCB()
  1940. {
  1941. $params = ['state_type' => 'order_cancel', 'order_id' => 311, 'channel_name' => 'lx'];
  1942. $resp = http_request(BASE_SITE_URL . '/mobile/refill_inner.php', $params, 'POST');
  1943. }
  1944. public function testArgs()
  1945. {
  1946. Log::record($_SERVER['argv'], Log::DEBUG);
  1947. }
  1948. public function testCall()
  1949. {
  1950. $order_id = 14974;
  1951. QueueClient::async_push("NotifyMerchantComplete", ['order_id' => $order_id, 'manual' => true], 10);
  1952. }
  1953. public function testSyncconfig()
  1954. {
  1955. $name_val_cfg = function ($items) {
  1956. $result = [];
  1957. foreach ($items as $item) {
  1958. $name = $item->name();
  1959. $result[$name] = $item;
  1960. }
  1961. return $result;
  1962. };
  1963. $name_val_row = function ($items) {
  1964. $result = [];
  1965. foreach ($items as $item) {
  1966. $name = $item['name'];
  1967. $result[$name] = $item;
  1968. }
  1969. return $result;
  1970. };
  1971. $match = function ($all, $cur) {
  1972. $insert = [];
  1973. foreach ($all as $key => $value) {
  1974. if (!array_key_exists($key, $cur)) {
  1975. $insert[] = $key;
  1976. }
  1977. }
  1978. return $insert;
  1979. };
  1980. $inserter = function ($mod, $type, $names) {
  1981. foreach ($names as $name) {
  1982. $data = ['name' => $name, 'type' => $type];
  1983. $mod->insert($data);
  1984. }
  1985. };
  1986. $providers = refill\RefillFactory::instance()->providers();
  1987. $oils = $name_val_cfg($providers['oil']);
  1988. $phones = $name_val_cfg($providers['phone']);
  1989. $mod_prov = Model('refill_provider');
  1990. $oil_items = $mod_prov->getProviderList(['type' => 1]);
  1991. $oil_items = $name_val_row($oil_items);
  1992. $oil_inserts = $match($oils, $oil_items);
  1993. $phone_items = $mod_prov->getProviderList(['type' => 2]);
  1994. $phone_items = $name_val_row($phone_items);
  1995. $phone_inserts = $match($phones, $phone_items);
  1996. $inserter($mod_prov, 1, $oil_inserts);
  1997. $inserter($mod_prov, 2, $phone_inserts);
  1998. }
  1999. public function testStat()
  2000. {
  2001. $model_refill_order = Model('refill_order');
  2002. $stat = Model('')->table('refill_order,vr_order')->join('inner')
  2003. ->on('refill_order.order_id=vr_order.order_id')
  2004. ->field('sum(refill_amount) as refill_amounts , sum(channel_amount) as channel_amounts , sum(mch_amount) as mch_amounts')
  2005. ->where([])->select();
  2006. }
  2007. public function testRefillGoods()
  2008. {
  2009. $goods = refill\RefillFactory::instance()->goods();
  2010. }
  2011. private function make_mobile()
  2012. {
  2013. $no = "1" . mt_rand(3000000000, 3999999999);
  2014. return $no;
  2015. }
  2016. private function refill_info($card_no, $card_type)
  2017. {
  2018. $data = rcache($card_no, 'cardrefill-');
  2019. if (empty($data)) {
  2020. $mod_topcard = Model('topcard');
  2021. $ret = $mod_topcard->get_card($card_no);
  2022. if (empty($ret)) {
  2023. $bind_phone = $this->make_mobile();
  2024. $mod_topcard->add($card_no, $card_type, time(), $bind_phone);
  2025. $data['bind_phone'] = $bind_phone;
  2026. $data['refill_time'] = time();
  2027. $data['times'] = 0;
  2028. wcache($card_no, $data, 'cardrefill-');
  2029. } else {
  2030. $val = $ret[0];
  2031. $data['bind_phone'] = $val['bind_phone'];
  2032. $data['refill_time'] = time();
  2033. $data['times'] = 0;
  2034. }
  2035. }
  2036. return $data;
  2037. }
  2038. public function testGetMobile()
  2039. {
  2040. $card_no = '1000119000001679247';
  2041. $card_type = 1;
  2042. $info = $this->refill_info($card_no, $card_type);
  2043. }
  2044. private function check_mchorder($mchid, $mch_order)
  2045. {
  2046. if (empty($mch_order)) {
  2047. return true;
  2048. } else {
  2049. $refill_order = Model('refill_order');
  2050. $ret = $refill_order->getOrderInfo(['mchid' => $mchid, 'mch_order' => $mch_order]);
  2051. return empty($ret);
  2052. }
  2053. }
  2054. public function testCheckMchorder()
  2055. {
  2056. $ret = $this->check_mchorder(1, '13281475');
  2057. }
  2058. public function testMakemobile()
  2059. {
  2060. $mobile = refill\util::make_mobile();
  2061. $ret = refill\util::set_black('1000111100020445281');
  2062. }
  2063. public function testLoadBlack()
  2064. {
  2065. $path = BASE_DATA_PATH . "/log";
  2066. $names = ['20210119-mobile.log',
  2067. '20210120-mobile.log', '20210121-mobile.log', '20210122-mobile.log', '20210123-mobile.log',
  2068. '20210124-mobile.log', '20210125-mobile.log'];
  2069. foreach ($names as $name) {
  2070. $file_name = $path . "/" . $name;
  2071. refill\util::black_from_log($file_name);
  2072. }
  2073. }
  2074. public function testStats()
  2075. {
  2076. $date = date('Y-m-d', time());
  2077. $today = strtotime("{$date}");
  2078. $times_begin = function ($start) {
  2079. $times = [];
  2080. $begin = $start;
  2081. for ($i = 0; $i < 7; $i++) {
  2082. $times[] = $begin;
  2083. $begin -= 86400;
  2084. }
  2085. return $times;
  2086. };
  2087. $reader = function ($mchid, $time) {
  2088. $cond['mchid'] = $mchid;
  2089. $cond['inner_status'] = 0;
  2090. $cond['refill_order.order_time'] = ['between', [$time, $time + 86400 - 1]];
  2091. $items = Model('')->table('refill_order,vr_order')->join('inner')
  2092. ->on('refill_order.order_id=vr_order.order_id')
  2093. ->field('count(*) as order_count, vr_order.order_state, sum(mch_amount) as mch_amounts')
  2094. ->group('vr_order.order_state')
  2095. ->where($cond)->select();
  2096. return $items;
  2097. };
  2098. $begins = $times_begin($today);
  2099. $mchid = 10096;
  2100. // $states = rcache($this->mchid() , 'refillstat-');
  2101. $states = unserialize($states ?? "");
  2102. if (empty($states)) $states = [];
  2103. $result = [];
  2104. $cache = [];
  2105. foreach ($begins as $begin) {
  2106. if (array_key_exists($begin, $states)) {
  2107. $item = $states[$begin];
  2108. } else {
  2109. $item = $reader($mchid, $begin);
  2110. }
  2111. $result[$begin] = $item;
  2112. //判断item 中充值中的状态是否为0,为0的情况下放进cache
  2113. $cache = $item;
  2114. }
  2115. wcache($this->mchid(), $cache, 'refillstat-');
  2116. return $result;
  2117. }
  2118. public function testNotifyx()
  2119. {
  2120. $mch_cache = rcache("merchant-notify", 'refill-');
  2121. $caches = empty($mch_cache['data']) ? [] : unserialize($mch_cache['data']);
  2122. $new_caches = [];
  2123. $merchants = Model('merchant')->getMerchantList([], '', '', 'merchant.*,member.available_predeposit', "0,1000");
  2124. foreach ($merchants as $merchant) {
  2125. $mchid = $merchant['mchid'];
  2126. $phone = $merchant['contact_phone'] ?? "";
  2127. $available_pd = intval($merchant['available_predeposit']);
  2128. $alarm_pd = intval($merchant['alarm_amount']) < 10000 ? 10000 : intval($merchant['alarm_amount']);
  2129. if (array_key_exists($mchid, $caches)) {
  2130. $mch_cache = $caches[$mchid];
  2131. } else {
  2132. $mch_cache = ['last_time' => 0, 'send_count' => 0];
  2133. }
  2134. if (!empty($phone) && ($available_pd < $alarm_pd)) {
  2135. $counts = $mch_cache['send_count'];
  2136. if (($mch_cache['last_time'] + 300 < time()) && $counts < 5) {
  2137. $mch_cache = ['last_time' => time(), 'send_count' => $counts + 1];
  2138. QueueClient::push('sendSMS', ['mobile' => $merchant['contact_phone'],
  2139. 'type' => 'balance_warning', 'datas' => [date("m月d日H时"), $merchant['available_predeposit']]]);
  2140. }
  2141. } else {
  2142. $mch_cache = ['last_time' => 0, 'send_count' => 0];
  2143. }
  2144. $new_caches[$mchid] = $mch_cache;
  2145. }
  2146. wcache("merchant-notify", ['data' => serialize($new_caches)], 'refill-');
  2147. }
  2148. public function testReadChannel()
  2149. {
  2150. refill\RefillFactory::instance()->read_channel();
  2151. }
  2152. public function testAllow()
  2153. {
  2154. $allow = refill\RefillFactory::instance()->allow(10096, 1, 100);
  2155. }
  2156. public function testCheckData()
  2157. {
  2158. $str = '|2|110667993758599771-充值失败|';
  2159. // $str = '0|提交成功|-36557.7400';
  2160. // if(preg_match( '/^-*[0-9]{1,3}\|[\x{4e00}-\x{9fa5}]+\|-*[0-9]+\.*[0-9]+$/u',$str,$matches)) {
  2161. // return true;
  2162. // }
  2163. // if(preg_match('/^[0-3]\|[0-9]+-*[\x{4e00}-\x{9fa5}]+\|[0-9]*$/u',$str,$matches)){
  2164. // return true;
  2165. // }
  2166. // return false;
  2167. $resp = ltrim($str, '|');
  2168. $resp = explode('|', $resp);
  2169. if (count($resp) != 3) {
  2170. return [false, '返回值错误'];
  2171. }
  2172. }
  2173. public function testErrre()
  2174. {
  2175. $line = '[13 2021-01-24 16:07:03] DEBUG: type = application/json;charset=utf-8, content={"channelOrderNumber":"610664819621371793","orderNumber":"GYFL1611475621525437","message":"充值失败","signature":"6c28c15b9ce2b2243742ecebbd929ac5","status":109}';
  2176. $ret = preg_match('/[\w\W]+"channelOrderNumber":"(?P<order_sn>[^"]+)"[\w\W]+"message":"(?P<message>[\x{4e00}-\x{9fa5}]+)"[\w\W]+"status":109/u', $line, $matches);
  2177. }
  2178. public function testExpolode()
  2179. {
  2180. $x = "HTTP-504";
  2181. [$type,$code] = explode('-',$x);
  2182. }
  2183. public function testMchctl()
  2184. {
  2185. $ctl = new refill\mchctl();
  2186. }
  2187. public function testAsyncadd()
  2188. {
  2189. $x = \refill\util::async_add(['xxxx' => 1],4);
  2190. }
  2191. private function getProvider($name,$type = 'RefillPhone')
  2192. {
  2193. $file = BASE_HELPER_RAPI_PATH . "/$name/{$type}.php";
  2194. if(!file_exists($file)){
  2195. Log::record("provider api file={$file} not exist.",Log::DEBUG);
  2196. return false;
  2197. } else {
  2198. require_once($file);
  2199. Log::record("file={$file} load success.",Log::DEBUG);
  2200. }
  2201. $class_name = "refill\\{$name}\\{$type}";
  2202. if (class_exists($class_name, false)) {
  2203. $caller = new $class_name([]);
  2204. return $caller;
  2205. } else {
  2206. $error = "Base Error: class {$class_name} isn't exists!";
  2207. Log::record($error, Log::ERR);
  2208. return false;
  2209. }
  2210. }
  2211. public function testOrderExist()
  2212. {
  2213. $refill_order = Model('refill_order');
  2214. $ret = $refill_order->exist(10116,'Yzb20210825111251415');
  2215. }
  2216. public function testRGoods()
  2217. {
  2218. $goods_list = refill\RefillFactory::instance()->goods();
  2219. }
  2220. }
  2221. //docker-compose run phpcli php /var/www/html/phpunit-9.2.5.phar --filter "/(TestRefill::testLoadBlack)( .*)?$/" --test-suffix TestRefill.php /var/www/html/test
  2222. //docker-compose -f ./docker-compose-dev.yml run phpcli php /var/www/html/phpunit-9.2.5.phar --filter "/(TestRefill::testCall)( .*)?$/" --test-suffix TestRefill.php /var/www/html/test