TestRefill.php 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565
  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' => '24731632377651122245']);
  914. $body = '{"appKey":"30000419","number":"56521092314142544365","orderId":"24731632377651122245","mobile":"18500608333","reason":"","amount":"50.00","actualAmount":"49.85","createdAt":"2021-09-23 14:14:25","status":"SUCCESS","sign":"8D7A526CF3F6C1279BD1819028B7683A"}';
  915. $params = json_decode($body, true);
  916. $providers = $this->getProvider('duojing','RefillCallBack');
  917. $ret = $providers->verify($params);
  918. $resp = $providers->notify($params);
  919. }
  920. public function testMenggu()
  921. {
  922. // $providers = $this->getProvider('menggu','RefillOil');
  923. // $resp = $providers->add(1000111100021211884, 2, 500, ['order_sn' => $this->make_sn()]);
  924. // $resp = $providers->query(['order_sn' => '63021632301956855605']);
  925. $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"}';
  926. $params = json_decode($body, true);
  927. $providers = $this->getProvider('menggu','RefillCallBack');
  928. $ret = $providers->verify($params);
  929. $resp = $providers->notify($params);
  930. }
  931. public function testMenggu_hf()
  932. {
  933. $providers = $this->getProvider('menggu_hf');
  934. // $resp = $providers->balance();
  935. $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  936. // $resp = $providers->query(['order_sn' => '24481632298991701065']);
  937. // $body = '{"orderId":"210922162318123069","appId":"1hqLCRUja7","outOrderId":"24481632298991701065","sign":"73faefba3e179641af0df6f59becce8f","orderStatus":"3","completeTime":"20210922162451","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  938. // $params = json_decode($body, true);
  939. // $providers = $this->getProvider('menggu_hf','RefillCallBack');
  940. // $ret = $providers->verify($params);
  941. // $resp = $providers->notify($params);
  942. }
  943. public function testAmingjd()
  944. {
  945. // $providers = new refill\amingjd\RefillPhone([]);
  946. // $resp = $providers->add(13699279618, 5, 30, ['order_sn' => $this->make_sn()]);
  947. // $resp = $providers->query(['order_sn' => '42301616475989518588']);
  948. $body = '{"order_id":"83321616478215494884","mchid":"10003","tel":"13699279618","price":"30.00","sign":"01c49620c155a80bc43cecc2b1651868","status":"0","out_order_id":"0"}';
  949. $params = json_decode($body, true);
  950. refill\RefillFactory::instance()->notify('amingjd', $params);
  951. }
  952. public function testAmingjdmanPhone()
  953. {
  954. $providers = new refill\amingjdman\RefillPhone([]);
  955. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  956. // $resp = $providers->query(['order_sn' => '82741619577673758623']);
  957. $body = '{"order_id":"82741619577673758623","mchid":"10045","tel":"13699279618","price":"30.00","sign":"2fe55fb4d4b2acc2e98137adb82fa57e","status":"0","out_order_id":"0"}';
  958. $params = json_decode($body, true);
  959. refill\RefillFactory::instance()->notify('amingjdman', $params);
  960. }
  961. public function testWeishengyWtPhone()
  962. {
  963. $providers = new refill\weishengywt\RefillPhone([]);
  964. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  965. // $resp = $providers->query(['order_sn' => '27681620538125370652']);
  966. $data = '{"szOrderId":"27681620538125370652","fSalePrice":"47.5","szAgentId":"200045","nFlag":"2","szVerifyString":"92fafec121b77518d539ed9f5005fdf9","szPhoneNum":"18500608333","szRtnMsg":"110103308032105091328520502948","nDemo":"50"}';
  967. $params = json_decode($data, true);
  968. refill\RefillFactory::instance()->notify('weishengywt', $params);
  969. }
  970. public function testWeishengyJDPhone()
  971. {
  972. $providers = new refill\weishengyjd\RefillPhone([]);
  973. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  974. // $resp = $providers->query(['order_sn' => '14261620887423822879']);
  975. $data = '{"szOrderId":"14261620887423822879","fSalePrice":"44.0","szAgentId":"200050","nFlag":"3","szVerifyString":"3cceef390602058e1d2fdde2e07636a4","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"50"}';
  976. $params = json_decode($data, true);
  977. refill\RefillFactory::instance()->notify('weishengyjd', $params);
  978. }
  979. public function testYeziPhone()
  980. {
  981. $providers = new refill\yezi\RefillPhone([]);
  982. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  983. // $resp = $providers->query(['order_sn' => '35261620988265145105']);
  984. $data = '{"mchid":"10147","order_sn":"35261620988265145105","amount":"50.00","cardno":"18500608333","trade_no":"6363570674332280422825","idcard":"","card_name":"","official_sn":"","message":"","state":"CANCEL","sign":"b79f2ddbb5b7eef98f414585a5bd2cde"}';
  985. $params = json_decode($data, true);
  986. refill\RefillFactory::instance()->notify('yezi', $params);
  987. }
  988. public function testWeishengysixPhone()
  989. {
  990. $providers = new refill\weishengysix\RefillPhone([]);
  991. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  992. // $resp = $providers->query(['order_sn' => '17171624434289348649']);
  993. $data = '{"szOrderId":"17171624434289348649","fSalePrice":"44.5","szAgentId":"200074","nFlag":"2","szVerifyString":"fa5735090199d97e6a50e7f3083be111","szPhoneNum":"18500608333","szRtnMsg":"AW2021062315464045A27","nDemo":"50"}';
  994. $params = json_decode($data, true);
  995. refill\RefillFactory::instance()->notify('weishengysix', $params);
  996. }
  997. public function testHaohaoOil()
  998. {
  999. $providers = new refill\haohao\RefillOil([]);
  1000. // $resp = $providers->add(1000111100021211884, 2, 100, ['order_sn' => $this->make_sn()]);
  1001. $data['amount'] = 20000;
  1002. $data['mchId'] = 467253;
  1003. $data['mchOrderNo'] = '5514850674656058146707';
  1004. $data['mobile'] = '';
  1005. $data['sign'] = 'F282D68972A437F3CEB3516BB2FDD19A';
  1006. $data['operator'] = 4;
  1007. $data['number'] = '1000113200020348885';
  1008. $data['thirdOrderNo'] = '2317184088901537792';
  1009. $data['directStatus'] = 5;
  1010. // $input = json_decode($data, true);
  1011. refill\RefillFactory::instance()->notify('haohao',$data);
  1012. }
  1013. public function testJuzhuoOil()
  1014. {
  1015. $providers = new refill\juzhuo\RefillOil([]);
  1016. // $resp = $providers->add(1000111100021211884, 2, 200, ['order_sn' => $this->make_sn()]);
  1017. // $resp = $providers->query(['order_sn' => '20121621578185774451']);
  1018. // $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"}';
  1019. // $input = json_decode($data, true);
  1020. $data['channelsort'] = 'OIL_CARD';
  1021. $data['channelno'] = '';
  1022. $data['onlystr'] = '0772770675248490450497';
  1023. $data['channel'] = 'JD';
  1024. $data['sign'] = '4a9f113bfa4aa2d155de7136ca0afe2d';
  1025. $data['amt'] = '100';
  1026. $data['notifyurl'] = 'http://121.89.212.167/racc/callback/lingzh/juzhuo.php';
  1027. $data['cardtype'] = 'Sinoepc';
  1028. $data['cardno'] = '1000113200029532754';
  1029. $data['orgid'] = '6095171500';
  1030. $data['account'] = '';
  1031. $data['status'] = '3';
  1032. refill\RefillFactory::instance()->notify('juzhuo',$data);
  1033. }
  1034. public function testZeheng()
  1035. {
  1036. $providers = new refill\zeheng\RefillOil([]);
  1037. // $resp = $providers->add(1000111100021211884, mtopcard\SinopecCard, 100, ['order_sn' => $this->make_sn()]);
  1038. // $resp = $providers->query(['order_sn' => '45951620814813332604']);
  1039. $data = '{"extOrderId":"45951620814813332604","orderId":"R2021051218240000192928","salePrice":"96.8000","sign":"0d6b9641eaf8d36ecba82cfefc6aa307","state":"4"}';
  1040. $input = json_decode($data, true);
  1041. refill\RefillFactory::instance()->notify('zeheng',$input);
  1042. }
  1043. public function testXiaoniu()
  1044. {
  1045. $providers = $this->getProvider('xiaoniu','RefillOil');
  1046. // $resp = $providers->add(1000111100021211884, mtopcard\SinopecCard, 500, ['order_sn' => $this->make_sn()]);
  1047. // $resp = $providers->query(['order_sn' => '39911625819031601073']);
  1048. // $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"}';
  1049. // $input = json_decode($data, true);
  1050. // refill\RefillFactory::instance()->notify('xiaoniu',$input);
  1051. $resp = $providers->balance();
  1052. }
  1053. public function testYingdian()
  1054. {
  1055. $providers = new refill\yingdian\RefillOil([]);
  1056. // $resp = $providers->add(1000111100021211884, mtopcard\SinopecCard, 200, ['order_sn' => $this->make_sn()]);
  1057. // $resp = $providers->query(['order_sn' => '94691626688509004979']);
  1058. $resp = $providers->query(['order_sn' => '45671626687631917892']);
  1059. $data = '{"orderNo":"94691626688509004979","vouchers":"[\"2421071918070053\"]","orderId":"63400811-e877-11eb-a89f-00163e147a9b","spOrderNo":"052423YK241720210719175503603473","status":"SUCCESS"}';
  1060. $input = json_decode($data, true);
  1061. // refill\RefillFactory::instance()->notify('yingdian',$input);
  1062. }
  1063. public function testZhenqi()
  1064. {
  1065. $providers = new refill\zhenqi\RefillPhone([]);
  1066. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1067. // $resp = $providers->query(['order_sn' => '42611626267945146350']);
  1068. // $data = '{"out_trade_no":"14001626266194932132","create_time":"1626266201","sp_order_no":"110103353232107142044550619272","status":"1","sign":"3C2F8ED40EEB9151D2117E2DA1FA64AA"}';
  1069. // $input = json_decode($data, true);
  1070. // refill\RefillFactory::instance()->notify('zhenqi',$input);
  1071. $resp = $providers->balance();
  1072. }
  1073. public function testYunsuoyaofs()
  1074. {
  1075. $providers = new refill\yunsuoyaofs\RefillPhone([]);
  1076. // $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1077. // $resp = $providers->query(['order_sn' => '85681626322286098163']);
  1078. // $data = '{"orderid":"AMU21071512111544162","sporderid":"85681626322286098163","userid":"10002671","merchantsubmittime":"20210715121132","resultno":"9","parvalue":"50","remark1":"","payno":"","fundbalance":"-47.7","sign":"45ECFF26E84F7DC3BFFDCFAFF3B1E561"}';
  1079. // $input = json_decode($data, true);
  1080. // refill\RefillFactory::instance()->notify('yunsuoyaofs',$input);
  1081. $resp = $providers->balance();
  1082. }
  1083. public function testZhenqi1m()
  1084. {
  1085. $providers = new refill\zhenqi1m\RefillPhone([]);
  1086. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1087. // $resp = $providers->query(['order_sn' => '45611626334593130605']);
  1088. // $data = '{"out_trade_no":"45611626334593130605","create_time":"1626334606","sp_order_no":"202107152200117311004426885635","status":"1","sign":"CF8EB902F60B76591C898C991361BB4D"}';
  1089. // $input = json_decode($data, true);
  1090. // refill\RefillFactory::instance()->notify('zhenqi1m',$input);
  1091. $resp = $providers->balance();
  1092. }
  1093. public function testHongxudayz()
  1094. {
  1095. $providers = new refill\hongxudayz\RefillPhone([]);
  1096. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1097. // $resp = $providers->query(['order_sn' => '78221626445316011524']);
  1098. $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":""}';
  1099. $input = json_decode($data, true);
  1100. refill\RefillFactory::instance()->notify('hongxudayz',$input);
  1101. }
  1102. public function testHongxudagy()
  1103. {
  1104. $providers = new refill\hongxudagy\RefillPhone([]);
  1105. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1106. // $resp = $providers->query(['order_sn' => '86521626446475240639']);
  1107. // $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":""}';
  1108. // $input = json_decode($data, true);
  1109. // refill\RefillFactory::instance()->notify('hongxudagy',$input);
  1110. $resp = $providers->balance();
  1111. }
  1112. public function testHongxudayz996()
  1113. {
  1114. $providers = new refill\hongxudayz996\RefillPhone([]);
  1115. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1116. // $resp = $providers->query(['order_sn' => '73691626753698522472']);
  1117. $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":""}';
  1118. $input = json_decode($data, true);
  1119. refill\RefillFactory::instance()->notify('hongxudayz996',$input);
  1120. }
  1121. public function testHongxudagy996()
  1122. {
  1123. $providers = new refill\hongxudagy996\RefillPhone([]);
  1124. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1125. // $resp = $providers->query(['order_sn' => '87681626758209689412']);
  1126. $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":""}';
  1127. $input = json_decode($data, true);
  1128. refill\RefillFactory::instance()->notify('hongxudagy996',$input);
  1129. }
  1130. public function testYunchonggong()
  1131. {
  1132. $providers = new refill\yunchonggong\RefillPhone([]);
  1133. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1134. // $resp = $providers->query(['order_sn' => '96481626678323726593']);
  1135. // $data = '{"szOrderId":"96481626678323726593","fSalePrice":"28.5","szAgentId":"200009","nFlag":"2","szVerifyString":"3f9cdc789c61646cf13079ee0464c6a0","szPhoneNum":"18500608333","szRtnMsg":"110103353092107191505440605544","nDemo":"30"}';
  1136. // $input = json_decode($data, true);
  1137. // refill\RefillFactory::instance()->notify('yunchonggong',$input);
  1138. $resp = $providers->balance();
  1139. }
  1140. public function testBingdht()
  1141. {
  1142. $providers = new refill\bingdht\RefillPhone([]);
  1143. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1144. // $resp = $providers->query(['order_sn' => '62491626761331174794']);
  1145. // $data = '{"szOrderId":"62491626761331174794","fSalePrice":"45.25","szAgentId":"200044","nFlag":"3","szVerifyString":"46745191d31b16ee7978a7f5554357d6","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"50"}';
  1146. // $input = json_decode($data, true);
  1147. // refill\RefillFactory::instance()->notify('bingdht',$input);
  1148. $resp = $providers->balance();
  1149. }
  1150. public function testYuecheng()
  1151. {
  1152. $providers = new refill\yuecheng\RefillPhone([]);
  1153. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1154. // $resp = $providers->query(['order_sn' => '45101626776884387650']);
  1155. $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"}';
  1156. $input = json_decode($data, true);
  1157. refill\RefillFactory::instance()->notify('yuecheng',$input);
  1158. }
  1159. public function testPrice()
  1160. {
  1161. $amounts = [10, 20, 30, 50, 100, 200, 300, 500];
  1162. $rate = 0.994;
  1163. foreach ($amounts as $amount) {
  1164. $price[] = $amount * $rate;
  1165. }
  1166. }
  1167. public function testCallbackDir()
  1168. {
  1169. $path = "/callback";
  1170. $file = "/mobile/callback/refill_call.php";
  1171. $basename = basename($file);
  1172. $tmp = "{$path}/{$basename}.php";
  1173. return file_exists($tmp);
  1174. }
  1175. public function testWeisPhone()
  1176. {
  1177. $providers = new refill\weisyd\RefillPhone([]);
  1178. $resp = $providers->add(17801048874, 4, 10, ['order_sn' => $this->make_sn()]);
  1179. }
  1180. public function testXcPhone()
  1181. {
  1182. $providers = new refill\xc\RefillPhone([]);
  1183. $resp = $providers->add(13699279618, 5, 100, ['order_sn' => $this->make_sn()]);
  1184. // $resp = $providers->query(['order_sn' => '87961616926444043617']);
  1185. $params['pay_orderid'] = '87961616926444043617';
  1186. $params['pay_iphone'] = '18500608333';
  1187. $params['pay_money'] = '100';
  1188. $params['wt_orderid'] = '202103281816121070';
  1189. $params['status'] = '1';
  1190. $params['sign'] = 'f7be2e859a5a6dc7b1a8273361617752';
  1191. // refill\RefillFactory::instance()->notify('xc',$params);
  1192. }
  1193. public function testAfandPhone()
  1194. {
  1195. $providers = new refill\afand\RefillPhone([]);
  1196. // for ($i = 3; $i > 0; --$i) {
  1197. $resp = $providers->query(['order_sn' => '540668612768904780']);
  1198. // }
  1199. }
  1200. public function testAfandengPhone()
  1201. {
  1202. $providers = new refill\afandeng\RefillPhone([]);
  1203. // for ($i = 5; $i > 0; --$i) {
  1204. $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1205. // }
  1206. // $resp = $providers->query(['order_sn' => '20941616115610023539']);
  1207. // $params['usr'] = 'afandeng';
  1208. // $params['ord'] = '20941616115610023539';
  1209. // $params['state'] = '2';
  1210. // $params['bz'] = '';
  1211. // $params['sgn'] = 'BA2C9D379C3EB648A0B7AAB3A21A3F6A';
  1212. // refill\RefillFactory::instance()->notify('afandeng',$params);
  1213. }
  1214. public function testWantongPhone()
  1215. {
  1216. $providers = new refill\wantong\RefillPhone([]);
  1217. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1218. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1219. $resp = $providers->query(['order_sn' => '26061618988575301841']);
  1220. $data = '{"uid":"97396885","order_no":"26061618988575301841","mobile_order_no":"","phone_number":"13699279618","face_value":"3000","status":"9","sign":"1a019202656cf4feffe715025fab01bf"}';
  1221. $input = json_decode($data, true);
  1222. // refill\RefillFactory::instance()->notify('wantong',$input);
  1223. }
  1224. public function testXunyinPhone()
  1225. {
  1226. $providers = new refill\xunyin\RefillPhone([]);
  1227. // $resp = $providers->add(17703711950, 6, 30, ['order_sn' => $this->make_sn()]);
  1228. // $resp = $providers->query(['order_sn' => '76831617176125893158']);
  1229. // $xml = '<Order><cpid>8417</cpid><orderid>40591617173295524057</orderid><order_no>14784226</order_no><msg>充值中</msg><Code>0000</Code><Cards/></Order>';
  1230. // $resp = $providers->xmlToArray($xml);
  1231. // if ($resp['Code'] === '0000') {
  1232. // return [true, $resp['order_no'], false];
  1233. // } else {
  1234. // return [false, $resp['msg'], false];
  1235. // }
  1236. // $params['ext'] = '';
  1237. // $params['code'] = '8888';
  1238. // $params['sign'] = '428ac223cf3a1f6f3d382aac754e8e17';
  1239. // $params['statemes'] = '成功';
  1240. // $params['id'] = '76831617176125893158';
  1241. // $params['userid'] = '8417';
  1242. // $params['operatorid'] = '1000000083421033115583773201';
  1243. // $params['status'] = 'SUCCESS';
  1244. // refill\RefillFactory::instance()->notify('xunyin',$params);
  1245. $resp = $providers->balance();
  1246. }
  1247. public function testFenshengPhone()
  1248. {
  1249. $file = BASE_HELPER_RAPI_PATH . "/qianqian/RefillPhone.php";
  1250. if(!file_exists($file)){
  1251. Log::record("provider api file={$file} not exist.",Log::DEBUG);
  1252. return false;
  1253. } else {
  1254. require_once($file);
  1255. Log::record("file={$file} load success.",Log::DEBUG);
  1256. }
  1257. $providers = new refill\qianqian\RefillPhone([]);
  1258. $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1259. // $resp = $providers->query(['order_sn' => '27511617764278021035']);
  1260. // $datas = '[{"orderNo":"F2104071058069438461","status":"001","consumerNo":"27511617764278021035","voucherNo":"510490688023364042","mobile":"13699279618"}]';
  1261. // $datas = json_decode($datas,true);
  1262. // foreach ($datas as $data) {
  1263. // refill\RefillFactory::instance()->notify('fensheng',$data);
  1264. // }
  1265. }
  1266. public function testQianqianPhone()
  1267. {
  1268. $providers = new refill\qianqian\RefillPhone([]);
  1269. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1270. // $resp = $providers->query(['order_sn' => '27511617764278021035']);
  1271. // $datas = '[{"orderNo":"F2104071058069438461","status":"001","consumerNo":"27511617764278021035","voucherNo":"510490688023364042","mobile":"13699279618"}]';
  1272. // $datas = json_decode($datas,true);
  1273. // foreach ($datas as $data) {
  1274. // refill\RefillFactory::instance()->notify('fensheng',$data);
  1275. // }
  1276. $resp = $providers->balance();
  1277. }
  1278. public function testQianqianmanPhone()
  1279. {
  1280. $providers = new refill\qianqianman\RefillPhone([]);
  1281. // $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1282. // $resp = $providers->query(['order_sn' => '72011621236975003462']);
  1283. $data = '{"orderNo":"F2105171538062539442","status":"019","consumerNo":"72011621236975003462","voucherNo":null,"mobile":"13699279618"}';
  1284. $input = json_decode($data, true);
  1285. refill\RefillFactory::instance()->notify('qianqianman',$input);
  1286. }
  1287. public function testRiyingPhone()
  1288. {
  1289. $providers = new refill\riying\RefillPhone([]);
  1290. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1291. $resp = $providers->query(['ch_trade_no' => '2021041311120213187423105022']);
  1292. $data = '{"UserId":"10050","SysOrderId":"2021041311120213187423105022","OrderId":"15641618283518423567","State":"4","Timestamp":"1618283565746","VoucherType":"1","VoucherContent":"511009928000087852","Sign":"a6ec70a3ea42baae941528398c6d0a43"}';
  1293. $input = json_decode($data, true);
  1294. // refill\RefillFactory::instance()->notify('riying',$input);
  1295. }
  1296. public function testWeishengyPhone()
  1297. {
  1298. $providers = new refill\weishengy\RefillPhone([]);
  1299. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1300. // $resp = $providers->query(['order_sn' => '15551618590601301527']);
  1301. $data = '{"masId":"699270071532654592","oids":"158877719094,166090529155,158887187476","orderNo":"62411618635377880788","orderPrice":"150.00","phone":"18500608333","sign":"3EC10A32FC4CCC976048E1164D0FCBF6","status":"1","time":"1618643281063","type":"2"}';
  1302. $input = json_decode($data, true);
  1303. refill\RefillFactory::instance()->notify('weishengy',$input);
  1304. }
  1305. public function testWailingPhone()
  1306. {
  1307. $providers = new refill\wailing\RefillPhone([]);
  1308. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1309. $resp = $providers->query(['order_sn' => '73241618543784045618']);
  1310. $data = '{"order_id":"73241618543784045618","mchid":"10045","tel":"13699279618","price":"30.00","sign":"4991de3e40f14c198b8c194455ea021b","status":"0","out_order_id":"0"}';
  1311. $input = json_decode($data, true);
  1312. // refill\RefillFactory::instance()->notify('wailing',$input);
  1313. }
  1314. public function testShengyingPhone()
  1315. {
  1316. $providers = new refill\shengying\RefillPhone([]);
  1317. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1318. $resp = $providers->query(['order_sn' => '37571618805115582483']);
  1319. $data = '{"TaskID":"129636","Mobile":"13699279618","Status":"4","ReportTime":"2021-04-19T12:06:16.050","ReportCode":"1:511531522026586295","OutTradeNo":"37571618805115582483","ReceiptNum":"511531522026586295","Sign":"a7f46a988bc8483091d94130804e5078"}';
  1320. $input = json_decode($data, true);
  1321. // refill\RefillFactory::instance()->notify('shengying',$input);
  1322. }
  1323. public function testYunlingPhone()
  1324. {
  1325. $providers = new refill\yunling\RefillPhone([]);
  1326. // $resp = $providers->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  1327. // $resp = $providers->query(['order_sn' => '73791623147517199719']);
  1328. // $data = '{"orderid":"EAF21060818183032772","sporderid":"73791623147517199719","userid":"10002504","merchantsubmittime":"20210608181912","resultno":"1","parvalue":"30","remark1":"1000000083421060818483137636","payno":"1000000083421060818483137636","fundbalance":"-28.59","sign":"8D77517AC3905ED88BF79EE789A5FA86"}';
  1329. // $input = json_decode($data, true);
  1330. // refill\RefillFactory::instance()->notify('yunling',$input);
  1331. $resp = $providers->balance();
  1332. }
  1333. public function testZhongstPhone()
  1334. {
  1335. $providers = new refill\zhongst\RefillPhone([]);
  1336. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1337. // $resp = $providers->query(['order_sn' => '48941618981770389271']);
  1338. // $data = ' {"szOrderId":"66571619060147539784","fSalePrice":"46.5","szAgentId":"200030","nFlag":"2","szVerifyString":"c1e88701b89a4887996822d708bed5f5","szPhoneNum":"13699279618","szRtnMsg":"161122673971","nDemo":"50"}';
  1339. // $input = json_decode($data, true);
  1340. // refill\RefillFactory::instance()->notify('zhongst',$input);
  1341. $resp = $providers->balance();
  1342. }
  1343. public function testXunaoPhone()
  1344. {
  1345. $providers = new refill\xunao\RefillPhone([]);
  1346. // $resp = $providers->add(18074608795, 6, 10, ['order_sn' => $this->make_sn()]);
  1347. // $resp = $providers->query(['order_sn' => '40021619431386253803', 'card_no' => 18074608795, 'card_type' => 6]);
  1348. // $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"}';
  1349. // $input = json_decode($data, true);
  1350. // refill\RefillFactory::instance()->notify('xunao',$input);
  1351. $resp = $providers->balance();
  1352. }
  1353. public function testYonghePhone()
  1354. {
  1355. $providers = new refill\yonghe\RefillPhone([]);
  1356. // $resp = $providers->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1357. // $resp = $providers->query(['order_sn' => '20461619597297972685']);
  1358. // $data = '{"szOrderId":"20461619597297972685","fSalePrice":"29.955","szAgentId":"200115","nFlag":"2","szVerifyString":"b5c292a13c5e67a9b850eb37239682ae","szPhoneNum":"13699279618","szRtnMsg":"2021042822001139701437383521","nDemo":"30"}';
  1359. // $input = json_decode($data, true);
  1360. // refill\RefillFactory::instance()->notify('yonghe',$input);
  1361. $resp = $providers->balance();
  1362. }
  1363. public function testJumiPhone()
  1364. {
  1365. $providers = new refill\jumikc\RefillPhone([]);
  1366. // $resp = $providers->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1367. // $resp = $providers->query(['order_sn' => '12161619768293529384']);
  1368. // $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"}';
  1369. // $input = json_decode($data, true);
  1370. // refill\RefillFactory::instance()->notify('jumi',$input);
  1371. $resp = $providers->balance();
  1372. }
  1373. public function testJumiOil()
  1374. {
  1375. $providers = new refill\jumi\RefillOil([]);
  1376. // $resp = $providers->add(1000111100021211884, 2, 100, ['order_sn' => $this->make_sn()]);
  1377. // $resp = $providers->query(['order_sn' => '29021620617872685187']);
  1378. $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"}';
  1379. $input = json_decode($data, true);
  1380. refill\RefillFactory::instance()->notify('jumi',$input);
  1381. }
  1382. public function testFengyePhone()
  1383. {
  1384. $providers = new refill\fengye\RefillPhone([]);
  1385. // $resp = $providers->add(18074608795, 6, 50, ['order_sn' => $this->make_sn()]);
  1386. // $resp = $providers->query(['order_sn' => '53511620355988978053', 'card_no' => 18074608795, 'card_type' => 6]);
  1387. $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"}';
  1388. $input = json_decode($data, true);
  1389. refill\RefillFactory::instance()->notify('fengye',$input);
  1390. }
  1391. public function testYunsuoyaoPhone()
  1392. {
  1393. $providers = new refill\yunsuoyao\RefillPhone([]);
  1394. // $resp = $providers->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1395. // $resp = $providers->query(['order_sn' => '20431621331092296201']);
  1396. // $data = '{"orderid":"RLU21051817441937847","sporderid":"20431621331092296201","userid":"10002501","merchantsubmittime":"20210518174858","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-28.74","sign":"426EAC103B79505BAE7AB3F16886F1A8"}';
  1397. // $input = json_decode($data, true);
  1398. // refill\RefillFactory::instance()->notify('yunsuoyao',$input);
  1399. $resp = $providers->balance();
  1400. }
  1401. public function testAfdPhone()
  1402. {
  1403. $providers = new refill\afd\RefillPhone([]);
  1404. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1405. // $resp = $providers->query(['order_sn' => '71001621233525947994']);
  1406. $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"}';
  1407. $input = json_decode($data, true);
  1408. refill\RefillFactory::instance()->notify('afd',$input);
  1409. }
  1410. public function testLuqianPhone()
  1411. {
  1412. $providers = new refill\luqian\RefillPhone([]);
  1413. // $resp = $providers->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  1414. $resp = $providers->query(['order_sn' => '2829660672500596314764']);
  1415. $data = '{"amount":"100","charge_type":"0","code":"1","partner_id":"38","phone":"18500608333","sign":"c2c86cccc73fa991a63c369e683c91f2","partner_order_no":"34101618897099329575","official_order_id":"110103308072104201338340278420"}';
  1416. $input = json_decode($data, true);
  1417. // refill\RefillFactory::instance()->notify('luqian',$input);
  1418. }
  1419. public function testAfandfsPhone()
  1420. {
  1421. $providers = new refill\afandfs\RefillPhone([]);
  1422. // $resp = $providers->add(15139608757, 4, 30, ['order_sn' => $this->make_sn()]);
  1423. // $resp = $providers->query(['order_sn' => '65101618975926761630']);
  1424. // $data = '{"amount":"30","charge_type":"2","code":"1","partner_id":"52","phone":"15139608757","sign":"a7f54c1ac3e1af72f9fc849086cc4bec","partner_order_no":"65101618975926761630","official_order_id":"20210421113256628350"}';
  1425. // $input = json_decode($data, true);
  1426. // refill\RefillFactory::instance()->notify('afandfs',$input);
  1427. $resp = $providers->balance();
  1428. }
  1429. public function testYunlingfsPhone()
  1430. {
  1431. $providers = new refill\yunlingfs\RefillPhone([]);
  1432. // $resp = $providers->add(15139608757, 4, 50, ['order_sn' => $this->make_sn()]);
  1433. // $resp = $providers->query(['order_sn' => '79251623739433607563']);
  1434. // $data = '{"orderid":"BGC21061514434393910","sporderid":"79251623739433607563","userid":"10002543","merchantsubmittime":"20210615144434","resultno":"1","parvalue":"50","remark1":"20210615144420321813","payno":"20210615144420321813","fundbalance":"-47.65","sign":"6B9B7C15A3F9CBC773562327B6744B1E"}';
  1435. // $input = json_decode($data, true);
  1436. // refill\RefillFactory::instance()->notify('yunlingfs',$input);
  1437. $resp = $providers->balance();
  1438. }
  1439. public function testTianchengPhone()
  1440. {
  1441. $providers = new refill\tiancheng\RefillPhone([]);
  1442. // $resp = $providers->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  1443. // $resp = $providers->query(['order_sn' => '15301619399212504464']);
  1444. // $data = ' {"result":"fail","msg":"0","order":"null","phone_no":"13699279618","amount":"10","op_no":"84801619340283980506","settle":"0","sign":"D64039ED791920B08BDA9DD95700C0E6"}';
  1445. // $input = json_decode($data, true);
  1446. // refill\RefillFactory::instance()->notify('tiancheng',$input);
  1447. $resp = $providers->balance();
  1448. }
  1449. public function testLingzhPhone()
  1450. {
  1451. $providers = new refill\lingzh\RefillPhone([]);
  1452. // $resp = $providers->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  1453. // $resp = $providers->query(['order_sn' => '59911615124025101286']);
  1454. $resp = $providers->balance();
  1455. // $input['usr'] = 1;
  1456. // $input['ord'] = '52741615119546453690';
  1457. // $input['bz'] = '';
  1458. // $input['state'] = 2;
  1459. // $input['sgn'] = 'FFCBB75C307154DD306F4EC75BB69A6D';
  1460. // refill\RefillFactory::instance()->notify('lingzh',$input);
  1461. }
  1462. public function testAfandnewPhone()
  1463. {
  1464. $providers = new refill\afandnew\RefillPhone([]);
  1465. // $resp = $providers->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  1466. // $resp = $providers->query(['order_sn' => '45371617101073876975', 'ch_trade_no' => '33018443659736309']);
  1467. $params = '{"amount":"100","carrierOrderNo":null,"mobile":"18500608333","orderNo":"45371617101073876975","orderStatus":3,"sign":"8DE392AD6B4730AD9EE0FC2B95BBDF17","tradeNo":"33018443659736309"}';
  1468. $input = json_decode($params, true);
  1469. refill\RefillFactory::instance()->notify('afandnew', $input);
  1470. }
  1471. public function testYifaPhone()
  1472. {
  1473. $providers = new refill\yifa\RefillPhone([]);
  1474. $resp = $providers->add(15120035568, 5, 50, ['order_sn' => $this->make_sn()]);
  1475. }
  1476. public function testTianjtOil()
  1477. {
  1478. $cardno = 1000111100021211884;
  1479. $providers = new refill\tianjt\RefillOil([]);
  1480. $resp = $providers->add($cardno, 2, 500, ['order_sn' => $this->make_sn()]);
  1481. }
  1482. public function testWeitPhone()
  1483. {
  1484. $providers = new refill\weit\RefillPhone([]);
  1485. for ($i = 0; $i <= 10; $i++) {
  1486. $resp = $providers->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  1487. }
  1488. }
  1489. public function testWeitCB()
  1490. {
  1491. $params['sign'] = 'af820c33472f4b571fa0c48483dfb975';
  1492. $params['status'] = 0;
  1493. $params['price'] = 30;
  1494. $params['op_order_id'] = '';
  1495. $params['mch_order_id'] = '900664281823957221';
  1496. $params['pt_order_id'] = '2021011802434412825405218901';
  1497. $params['pay_type'] = '';
  1498. $params['tel'] = 18500608333;
  1499. $params['mchid'] = 10014;
  1500. $resp = http_request($this->mReqHost . "/mobile/refill_weit.php", $params, 'POST');
  1501. }
  1502. public function testYifaCB()
  1503. {
  1504. $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"}';
  1505. $input = json_decode($body, true);
  1506. refill\RefillFactory::instance()->notify('yifa', $input);
  1507. }
  1508. public function testBjbQuery()
  1509. {
  1510. $providers = new refill\bjb\RefillPhone([]);
  1511. $refill_info = ['order_sn' => 110667993758599771, 'ch_trade_no' => 499, 'card_no' => 1000111200005252927];
  1512. $resp = $providers->query($refill_info);
  1513. }
  1514. public function testXcQuery()
  1515. {
  1516. $providers = new refill\xc\RefillPhone([]);
  1517. $refill_info = ['order_sn' => 950663423236726632, 'ch_trade_no' => 499, 'card_no' => 1000111200005252927];
  1518. $resp = $providers->query($refill_info);
  1519. }
  1520. public function testTianjtQuery()
  1521. {
  1522. $providers = new refill\tianjt\RefillOil([]);
  1523. $refill_info = ['order_sn' => 680665862267622221, 'ch_trade_no' => 499, 'card_no' => 1000111200005252927];
  1524. $resp = $providers->query($refill_info);
  1525. }
  1526. public function testSaihuOil()
  1527. {
  1528. $providers = new refill\saihu\RefillOil([]);
  1529. $resp = $providers->add(1000111100021211884, 2, 100, ['order_sn' => $this->make_sn()]);
  1530. }
  1531. public function testBdtOil()
  1532. {
  1533. $providers = new refill\bdt\RefillOil([]);
  1534. $resp = $providers->add(1000111100021211884, 2, 100, ['order_sn' => '200229600556618886']);
  1535. }
  1536. public function testGFTDOil()
  1537. {
  1538. $providers = new refill\gftd\RefillOil([]);
  1539. $resp = $providers->add(1000111100020445281, mtopcard\SinopecCard, 100, ['order_sn' => $this->make_sn()]);
  1540. }
  1541. public function testYichangtOil()
  1542. {
  1543. $providers = new refill\yichangt\RefillOil([]);
  1544. $resp = $providers->add(1000111100021211884, mtopcard\SinopecCard, 200, ['order_sn' => $this->make_sn()]);
  1545. // $resp = $providers->query(['order_sn' => '87591620379260314044']);
  1546. $data = '{"appid":"app570259129507","order_id":"M202105077888184428723706","merchant_order_id":"82231620378877155624","status":"3","cash":"100","time":"1620378961450","nonce":"2fad56d59a9f46d896c15b0cff74bc","signature":"57a6d24ec376b58bb433cfcf8528d53cb276eac8"}';
  1547. $input = json_decode($data, true);
  1548. // refill\RefillFactory::instance()->notify('yichangt',$input);
  1549. }
  1550. public function testGFTDCB()
  1551. {
  1552. $data = '{"channelOrderNumber":"79091610959059372019","orderNumber":"GYFL1610959060397001","message":"充值成功","storage":"881036222bd8f067ff47d248c75f4c8d","voucher":"","status":101}';
  1553. $url = "http://192.168.1.220/mobile/refill_gftd.php?" . $data;
  1554. $resp = http_post_data($url, $data, ['Content-Type: application/json;charset=UTF-8;', 'Accept:application/json;charset=UTF-8;']);
  1555. }
  1556. public function testJiecPhone()
  1557. {
  1558. $providers = new refill\jiec\RefillPhone([]);
  1559. $resp = $providers->add('18500608333', 5, 30, ['order_sn' => $this->make_sn()]);
  1560. }
  1561. public function testBxtwtCB()
  1562. {
  1563. $data = '{"order_number":18219726,"shipping_status":4,"shipping_status_desc":"发货失败","shipping_status_message":"","sign":"863b4d972f2a4d39a9af7396879116c4","voucher":"","vouchertype":"","voucherurl":"","tradeNo":"100662475851197741"}';
  1564. }
  1565. public function testTianjtJDVerify()
  1566. {
  1567. $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';
  1568. $url = "http://192.168.1.220/mobile/refill_tianjt.php?" . $data;
  1569. $resp = http_request($url);
  1570. }
  1571. public function testSuhcPDD()
  1572. {
  1573. $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';
  1574. $url = "https://www.xyzshops.cn/mobile/refill_suhcpdd.php?" . $data;
  1575. $resp = http_request($url);
  1576. }
  1577. public function testSuhcTMVerify()
  1578. {
  1579. $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';
  1580. $url = "https://www.xyzshops.cn/mobile/refill_suhctm.php?" . $data;
  1581. $resp = http_request($url);
  1582. }
  1583. public function testBeixtVerify()
  1584. {
  1585. $data = '{"order_number":18219726,"shipping_status":4,"shipping_status_desc":"发货失败","shipping_status_message":"","sign":"863b4d972f2a4d39a9af7396879116c4","voucher":"","vouchertype":"","voucherurl":"","tradeNo":"100662475851197741"}';
  1586. $url = "https://www.xyzshops.cn/mobile/refill_bxtwt.php";
  1587. $headers = ['Content-Type: application/json'];
  1588. $resp = http_post_data($url, $data, $headers);
  1589. }
  1590. public function testInput()
  1591. {
  1592. $input = fopen("php://input", "rw");
  1593. file_put_contents($input, 'xxxx');
  1594. $content = file_get_contents('php://input');
  1595. }
  1596. public function testUrl()
  1597. {
  1598. $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';
  1599. $params = preg_split('/&/', $data);
  1600. foreach ($params as $pair) {
  1601. $kv = explode('=', $pair);
  1602. $count = count($kv);
  1603. if ($count === 1) {
  1604. $key = $kv[0];
  1605. $val = "";
  1606. } elseif ($count === 2) {
  1607. $key = $kv[0];
  1608. $val = $kv[1];
  1609. } else {
  1610. continue;
  1611. }
  1612. Log::record("{$key}:{$val}", Log::DEBUG);
  1613. }
  1614. }
  1615. public function testAddoil()
  1616. {
  1617. $url = $this->mReqHost . "/mobile/index.php";
  1618. $notifyurl = 'http://121.89.196.45/mobile/signature.php';
  1619. $params = ['mchid' => $this->mMchid,
  1620. 'cardno' => '1000111100020445281',
  1621. 'amount' => "100",
  1622. "act" => "refill",
  1623. "op" => "add",
  1624. 'order_sn' => $this->make_sn(),
  1625. 'notifyurl' => $notifyurl];
  1626. $resp = $this->send_md5($url, $params);
  1627. Log::record($resp, Log::DEBUG);
  1628. }
  1629. public function testBalance()
  1630. {
  1631. $url = $this->mReqHost . "/mobile/index.php";
  1632. $params = ['mchid' => 1092,
  1633. "act" => "refill",
  1634. "op" => "balance"];
  1635. $resp = $this->send_md5($url, $params);
  1636. Log::record($resp, Log::DEBUG);
  1637. }
  1638. public function testNotify()
  1639. {
  1640. $params = [
  1641. "mchid" => 10202,
  1642. "order_sn" => '21090216132600003_11675',
  1643. "amount" => '30.00',//intval($refill_info['refill_amount'] + 0.05),
  1644. "cardno" => 18639492164,
  1645. "trade_no" => 8693160683914496896438,
  1646. "idcard" => "",
  1647. "card_name" => "",
  1648. 'official_sn' => "",
  1649. 'message' => "匹配不到合适的充值通道",
  1650. "state" => 'CANCEL'];
  1651. $sign = $this->md5_sign($params,'KxK9f3yaBDOXVwvuOKDozvQ9Mt1CoqRX');
  1652. $notify_url = 'https://openapi-gateway-test.bbinsure.cn/ants_charge/v1/charge/order/notify/yeziOrderNew/1140';
  1653. $resp = http_request($notify_url, $params, 'POST');
  1654. }
  1655. public function testAddPhoe()
  1656. {
  1657. $url = $this->mReqHost . "/mobile/index.php";
  1658. $params = ['mchid' => $this->mMchid,
  1659. 'cardno' => '',
  1660. 'amount' => 100,
  1661. "act" => "refill",
  1662. "op" => "add",
  1663. 'order_sn' => '',
  1664. 'notifyurl' => "https://www.baoyung.com/api/unionservice/yezicharge"];
  1665. Log::record(json_encode($params), Log::DEBUG);
  1666. // $resp = $this->send_md5($url, $params);
  1667. }
  1668. public function testProxyHelper()
  1669. {
  1670. $phone = '13911129867';
  1671. $amount = 100;
  1672. $url = $this->mReqHost . "/mobile/index.php";
  1673. $params = ['mchid' => $this->mMchid,
  1674. 'cardno' => $phone,
  1675. 'amount' => $amount,
  1676. "act" => "refill",
  1677. "op" => "add",
  1678. 'order_sn' => $this->make_sn(),
  1679. 'notifyurl' => "https://xxx"];
  1680. $proxy = new refill_proxy("xxx");
  1681. $resp = $proxy->send($url, $params);
  1682. }
  1683. public function testGoods()
  1684. {
  1685. $req_url = $this->mReqHost . '/mobile/index.php';
  1686. $params = ['mchid' => $this->mMchid,
  1687. "act" => "refill",
  1688. "op" => "goods"];
  1689. $resp = $this->send_md5($req_url, $params);
  1690. }
  1691. public function testQueryFactory()
  1692. {
  1693. refill\RefillFactory::instance()->query(295);
  1694. }
  1695. public function testQuery()
  1696. {
  1697. //$req_url = 'https://www.xyzshops.cn/mobile/index.php';
  1698. // $notifyurl = 'https://www.xyzshops.cn/mobile/signature.php';
  1699. $req_url = BASE_SITE_URL . '/mobile/index.php';
  1700. $notifyurl = 'https://www.xyzshops.cn/mobile/signature.php';
  1701. $params = ['mchid' => 1,
  1702. "act" => "refill",
  1703. "op" => "query",
  1704. 'order_sn' => "13281476"];
  1705. $resp = $this->send_md5($req_url, $params);
  1706. }
  1707. public function testRemoveSession()
  1708. {
  1709. $resp = http_request(BASE_SITE_URL . "/mobile/signature.php", [], 'POST');
  1710. }
  1711. public function testTianjtCB()
  1712. {
  1713. // $notifyurl = BASE_SITE_URL . "/mobile/refill_tianjt.php";
  1714. $notifyurl = "https://www.xyzshops.cn/mobile/refill_tianjt.php";
  1715. // $notifyurl = "https%3A%2F%2Fwww.xyzshops.cn%2Fmobile%2Frefill_tianjt.php";
  1716. $params = ['onlystr' => '690665858589475818',
  1717. 'amt' => 1000,
  1718. 'jdno' => '',
  1719. 'notifyurl' => $notifyurl,
  1720. 'cardtype' => 'Sinoepc',
  1721. 'batchid' => 30589,
  1722. 'cardno' => '1000113300007993287',
  1723. 'orgid' => '1590993600',
  1724. 'status' => 3];
  1725. $sign = $this->md5_sign($params);
  1726. $params['sign'] = $sign;
  1727. $resp = http_request($notifyurl, $params, 'POST');
  1728. Log::record($resp, Log::DEBUG);
  1729. }
  1730. public function testBJBCB()
  1731. {
  1732. $params = [
  1733. 'usr' => '13699279618',
  1734. 'ord' => '710662733975412771',
  1735. 'state' => '2',
  1736. 'bz' => '',
  1737. 'sgn' => 'AC9AFD254DE682D8440A97CA68B992DA'
  1738. ];
  1739. $resp = http_request("https://www.xyzshops.cn/mobile/refill_bjb.php", $params, 'POST');
  1740. }
  1741. public function testJiecCB()
  1742. {
  1743. $params['result'] = 'fail';
  1744. $params['msg'] = '0';
  1745. $params['order'] = 'null';
  1746. $params['phone_no'] = '18500608333';
  1747. $params['amount'] = '30.00';
  1748. $params['op_no'] = '800663597981819221';
  1749. $params['sign'] = '2510046895e8e12322c8a32547905ee9';
  1750. $resp = http_request($this->mReqHost . "/mobile/refill_jiec.php", $params, 'POST');
  1751. }
  1752. public function testZFKJ()
  1753. {
  1754. //带签名参数:mchid=1090&act=refill&op=add&cardno=100112121212212133
  1755. //&amount=10&order_sn=PH2012261356569433&
  1756. //notifyurl=https%3A%2F%2Fqzcz.edusahoo.com.cn%2Findex%2Findex%2Fcallback
  1757. //&sign=4a3ac5f9706e64aa70c6cab0fc5839d3
  1758. $params = ['mchid' => 1090,
  1759. 'cardno' => '100112121212212133',
  1760. 'amount' => '10',
  1761. "act" => "refill",
  1762. "op" => "add",
  1763. 'order_sn' => 'PH2012261356569433',
  1764. 'notifyurl' => 'https://qzcz.edusahoo.com.cn/index/index/callback'];
  1765. $resp = $this->send_md5(BASE_SITE_URL . '/mobile/index.php', $params);
  1766. }
  1767. protected function check_empty($value)
  1768. {
  1769. if (!isset($value))
  1770. return true;
  1771. if ($value === null)
  1772. return true;
  1773. if (trim($value) === "")
  1774. return true;
  1775. return false;
  1776. }
  1777. public function testcreateSign()
  1778. {
  1779. $params['act'] = 'refill';
  1780. $params['amount'] = '30';
  1781. $params['cardno'] = '18111516552';
  1782. $params['mchid'] = '10179';
  1783. $params['notifyurl'] = 'http://czapi2.1jinb.net/YeZiHCCallBackOrderServlet';
  1784. $params['op'] = 'add';
  1785. $params['order_sn'] = 'JFNOR10835056877';
  1786. $sign = $this->md5_sign($params);
  1787. }
  1788. public function testCheckphone()
  1789. {
  1790. $check = function ($phone) {
  1791. $url = 'https://mobileempty.shumaidata.com/mobileempty';
  1792. $params['mobile'] = $phone;
  1793. $headers = array();
  1794. array_push($headers, "Authorization:APPCODE " . '8f92d951293f4d2ea48ff86d5a70c537');
  1795. $resp = http_request($url, $params, 'GET', false, $headers);
  1796. $resp = json_decode($resp, true);
  1797. if ($resp['success'] == true && $resp['code'] == 200) {
  1798. Log::record("data phone:{$phone} , status : {$resp['data']['status']}", Log::DEBUG);
  1799. if (in_array($resp['data']['status'], [0, 3, 4, 5])) {
  1800. return false;
  1801. }
  1802. } else {
  1803. Log::record("data phone:{$phone} , 不支持的号段", Log::DEBUG);
  1804. }
  1805. };
  1806. $check(17801048874);
  1807. }
  1808. public function testCtSign()
  1809. {
  1810. $params['amount'] = '10.00';
  1811. $params['message'] = '余额不足支付订单';
  1812. $params['cardno'] = 18345531094;
  1813. $params['mchid'] = 10197;
  1814. $params['trade_no'] = '2068550683809271439468';
  1815. $params['state'] = 'CANCEL';
  1816. $params['order_sn'] = '20210901110059907C414UF7GCIG9491';
  1817. $sign = $this->md5_sign($params,'bac87b788087457e92a5319413c603a3');
  1818. }
  1819. private function md5_sign($params,$key = '')
  1820. {
  1821. ksort($params);
  1822. $body = "";
  1823. $i = 0;
  1824. foreach ($params as $k => $v) {
  1825. if (false === $this->check_empty($v) && "@" != substr($v, 0, 1)) {
  1826. if ($i == 0) {
  1827. $body .= "{$k}" . "=" . urlencode($v);
  1828. } else {
  1829. $body .= "&" . "{$k}" . "=" . urlencode($v);
  1830. }
  1831. $i++;
  1832. }
  1833. }
  1834. $body .= "&key={$key}";
  1835. return md5($body);
  1836. }
  1837. public function testCallMech()
  1838. {
  1839. $logic = Logic('queue');
  1840. $logic->NotifyMerchantComplete(['order_id' => 18171, 'manual' => true]);
  1841. }
  1842. //docker-compose run phpcli php /var/www/html/phpunit-9.2.5.phar --filter "/(TestRefill::testCallMech)( .*)?$/" --test-suffix TestRefill.php /var/www/html/test
  1843. private function send($url, $params)
  1844. {
  1845. $mchid = $params['mchid'];
  1846. $pri_key = BASE_DATA_PATH . "/api/merchant/key/{$mchid}_pri.pem";
  1847. $key = file_get_contents($pri_key);
  1848. $pri = openssl_get_privatekey($key);
  1849. $body = $this->body($params);
  1850. openssl_sign($body, $signed, $pri);
  1851. $sign = base64_encode($signed);
  1852. $params['sign'] = $sign;
  1853. $resp = http_request($url, $params, 'POST');
  1854. Log::record("resp:{$resp}", Log::DEBUG);
  1855. }
  1856. private function send_md5($url, $params)
  1857. {
  1858. $body = $this->body($params);
  1859. $body .= "&key={$this->mKey}";
  1860. $params['sign'] = md5($body);
  1861. $resp = http_request($url, $params, 'POST');
  1862. Log::record("resp:{$resp}", Log::DEBUG);
  1863. return $resp;
  1864. }
  1865. public function testCardType()
  1866. {
  1867. $cardno = '1000111100021211884';
  1868. $ret = preg_match('/^1[0-9]{18}$/', $cardno, $matches);
  1869. }
  1870. public function testMtrand()
  1871. {
  1872. }
  1873. public function testHttpRefill()
  1874. {
  1875. $mchid = '000001';
  1876. $pri_key = BASE_DATA_PATH . "/api/merchant/key/{$mchid}_pri.pem";
  1877. $key = file_get_contents($pri_key);
  1878. $pri = openssl_get_privatekey($key);
  1879. $params = ['MCHID' => $mchid, 'cardno' => '1000111100021211884', 'amt' => "100", "act" => "refill", "op" => "addoil"];
  1880. $body = $this->body($params);
  1881. openssl_sign($body, $signed, $pri);
  1882. $sign = base64_encode($signed);
  1883. $params['sign'] = $sign;
  1884. $resp = http_request(BASE_SITE_URL . "/mobile/index.php", $params, 'POST');
  1885. }
  1886. private function body($params)
  1887. {
  1888. ksort($params);
  1889. $body = "";
  1890. $i = 0;
  1891. foreach ($params as $k => $v) {
  1892. if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
  1893. if ($i == 0) {
  1894. $body .= "{$k}" . "=" . urlencode($v);
  1895. } else {
  1896. $body .= "&" . "{$k}" . "=" . urlencode($v);
  1897. }
  1898. $i++;
  1899. }
  1900. }
  1901. return $body;
  1902. }
  1903. private function checkEmpty($value)
  1904. {
  1905. if (!isset($value))
  1906. return true;
  1907. if ($value === null)
  1908. return true;
  1909. if (trim($value) === "")
  1910. return true;
  1911. return false;
  1912. }
  1913. public function testKsort()
  1914. {
  1915. $age = ["Peter" => "35", "Ben" => "37", "Joe" => "43"];
  1916. ksort($age);
  1917. foreach ($age as $x => $x_value) {
  1918. echo "Key=" . $x . ", Value=" . $x_value;
  1919. echo "<br>";
  1920. }
  1921. }
  1922. public function testip()
  1923. {
  1924. $model_merchant = Model('merchant');
  1925. $merchant_info = $model_merchant->getMerchantInfo(['mchid' => 1]);
  1926. $ipwhitelist = unserialize($merchant_info['ip_white_list']);
  1927. $res = json_encode($ipwhitelist);
  1928. }
  1929. //测试向内部店提交订单,可先屏蔽其它充值通道
  1930. public function testAddoilToInnerStore()
  1931. {
  1932. $url = $this->mReqHost . "/mobile/index.php";
  1933. $notifyurl = BASE_SITE_URL . '/mobile/signature.php';
  1934. $params = ['mchid' => 1,
  1935. 'cardno' => '1000111100020445281',
  1936. 'amount' => "1000",
  1937. "act" => "refill",
  1938. "op" => "add",
  1939. 'order_sn' => $this->make_sn(),
  1940. 'notifyurl' => $notifyurl];
  1941. $resp = $this->send_md5($url, $params);
  1942. Log::record($resp, Log::DEBUG);
  1943. }
  1944. public function testRefillInnerCB()
  1945. {
  1946. $params = ['state_type' => 'order_cancel', 'order_id' => 311, 'channel_name' => 'lx'];
  1947. $resp = http_request(BASE_SITE_URL . '/mobile/refill_inner.php', $params, 'POST');
  1948. }
  1949. public function testArgs()
  1950. {
  1951. Log::record($_SERVER['argv'], Log::DEBUG);
  1952. }
  1953. public function testCall()
  1954. {
  1955. $order_id = 14974;
  1956. QueueClient::async_push("NotifyMerchantComplete", ['order_id' => $order_id, 'manual' => true], 10);
  1957. }
  1958. public function testSyncconfig()
  1959. {
  1960. $name_val_cfg = function ($items) {
  1961. $result = [];
  1962. foreach ($items as $item) {
  1963. $name = $item->name();
  1964. $result[$name] = $item;
  1965. }
  1966. return $result;
  1967. };
  1968. $name_val_row = function ($items) {
  1969. $result = [];
  1970. foreach ($items as $item) {
  1971. $name = $item['name'];
  1972. $result[$name] = $item;
  1973. }
  1974. return $result;
  1975. };
  1976. $match = function ($all, $cur) {
  1977. $insert = [];
  1978. foreach ($all as $key => $value) {
  1979. if (!array_key_exists($key, $cur)) {
  1980. $insert[] = $key;
  1981. }
  1982. }
  1983. return $insert;
  1984. };
  1985. $inserter = function ($mod, $type, $names) {
  1986. foreach ($names as $name) {
  1987. $data = ['name' => $name, 'type' => $type];
  1988. $mod->insert($data);
  1989. }
  1990. };
  1991. $providers = refill\RefillFactory::instance()->providers();
  1992. $oils = $name_val_cfg($providers['oil']);
  1993. $phones = $name_val_cfg($providers['phone']);
  1994. $mod_prov = Model('refill_provider');
  1995. $oil_items = $mod_prov->getProviderList(['type' => 1]);
  1996. $oil_items = $name_val_row($oil_items);
  1997. $oil_inserts = $match($oils, $oil_items);
  1998. $phone_items = $mod_prov->getProviderList(['type' => 2]);
  1999. $phone_items = $name_val_row($phone_items);
  2000. $phone_inserts = $match($phones, $phone_items);
  2001. $inserter($mod_prov, 1, $oil_inserts);
  2002. $inserter($mod_prov, 2, $phone_inserts);
  2003. }
  2004. public function testStat()
  2005. {
  2006. $model_refill_order = Model('refill_order');
  2007. $stat = Model('')->table('refill_order,vr_order')->join('inner')
  2008. ->on('refill_order.order_id=vr_order.order_id')
  2009. ->field('sum(refill_amount) as refill_amounts , sum(channel_amount) as channel_amounts , sum(mch_amount) as mch_amounts')
  2010. ->where([])->select();
  2011. }
  2012. public function testRefillGoods()
  2013. {
  2014. $goods = refill\RefillFactory::instance()->goods();
  2015. }
  2016. private function make_mobile()
  2017. {
  2018. $no = "1" . mt_rand(3000000000, 3999999999);
  2019. return $no;
  2020. }
  2021. private function refill_info($card_no, $card_type)
  2022. {
  2023. $data = rcache($card_no, 'cardrefill-');
  2024. if (empty($data)) {
  2025. $mod_topcard = Model('topcard');
  2026. $ret = $mod_topcard->get_card($card_no);
  2027. if (empty($ret)) {
  2028. $bind_phone = $this->make_mobile();
  2029. $mod_topcard->add($card_no, $card_type, time(), $bind_phone);
  2030. $data['bind_phone'] = $bind_phone;
  2031. $data['refill_time'] = time();
  2032. $data['times'] = 0;
  2033. wcache($card_no, $data, 'cardrefill-');
  2034. } else {
  2035. $val = $ret[0];
  2036. $data['bind_phone'] = $val['bind_phone'];
  2037. $data['refill_time'] = time();
  2038. $data['times'] = 0;
  2039. }
  2040. }
  2041. return $data;
  2042. }
  2043. public function testGetMobile()
  2044. {
  2045. $card_no = '1000119000001679247';
  2046. $card_type = 1;
  2047. $info = $this->refill_info($card_no, $card_type);
  2048. }
  2049. private function check_mchorder($mchid, $mch_order)
  2050. {
  2051. if (empty($mch_order)) {
  2052. return true;
  2053. } else {
  2054. $refill_order = Model('refill_order');
  2055. $ret = $refill_order->getOrderInfo(['mchid' => $mchid, 'mch_order' => $mch_order]);
  2056. return empty($ret);
  2057. }
  2058. }
  2059. public function testCheckMchorder()
  2060. {
  2061. $ret = $this->check_mchorder(1, '13281475');
  2062. }
  2063. public function testMakemobile()
  2064. {
  2065. $mobile = refill\util::make_mobile();
  2066. $ret = refill\util::set_black('1000111100020445281');
  2067. }
  2068. public function testLoadBlack()
  2069. {
  2070. $path = BASE_DATA_PATH . "/log";
  2071. $names = ['20210119-mobile.log',
  2072. '20210120-mobile.log', '20210121-mobile.log', '20210122-mobile.log', '20210123-mobile.log',
  2073. '20210124-mobile.log', '20210125-mobile.log'];
  2074. foreach ($names as $name) {
  2075. $file_name = $path . "/" . $name;
  2076. refill\util::black_from_log($file_name);
  2077. }
  2078. }
  2079. public function testStats()
  2080. {
  2081. $date = date('Y-m-d', time());
  2082. $today = strtotime("{$date}");
  2083. $times_begin = function ($start) {
  2084. $times = [];
  2085. $begin = $start;
  2086. for ($i = 0; $i < 7; $i++) {
  2087. $times[] = $begin;
  2088. $begin -= 86400;
  2089. }
  2090. return $times;
  2091. };
  2092. $reader = function ($mchid, $time) {
  2093. $cond['mchid'] = $mchid;
  2094. $cond['inner_status'] = 0;
  2095. $cond['refill_order.order_time'] = ['between', [$time, $time + 86400 - 1]];
  2096. $items = Model('')->table('refill_order,vr_order')->join('inner')
  2097. ->on('refill_order.order_id=vr_order.order_id')
  2098. ->field('count(*) as order_count, vr_order.order_state, sum(mch_amount) as mch_amounts')
  2099. ->group('vr_order.order_state')
  2100. ->where($cond)->select();
  2101. return $items;
  2102. };
  2103. $begins = $times_begin($today);
  2104. $mchid = 10096;
  2105. // $states = rcache($this->mchid() , 'refillstat-');
  2106. $states = unserialize($states ?? "");
  2107. if (empty($states)) $states = [];
  2108. $result = [];
  2109. $cache = [];
  2110. foreach ($begins as $begin) {
  2111. if (array_key_exists($begin, $states)) {
  2112. $item = $states[$begin];
  2113. } else {
  2114. $item = $reader($mchid, $begin);
  2115. }
  2116. $result[$begin] = $item;
  2117. //判断item 中充值中的状态是否为0,为0的情况下放进cache
  2118. $cache = $item;
  2119. }
  2120. wcache($this->mchid(), $cache, 'refillstat-');
  2121. return $result;
  2122. }
  2123. public function testNotifyx()
  2124. {
  2125. $mch_cache = rcache("merchant-notify", 'refill-');
  2126. $caches = empty($mch_cache['data']) ? [] : unserialize($mch_cache['data']);
  2127. $new_caches = [];
  2128. $merchants = Model('merchant')->getMerchantList([], '', '', 'merchant.*,member.available_predeposit', "0,1000");
  2129. foreach ($merchants as $merchant) {
  2130. $mchid = $merchant['mchid'];
  2131. $phone = $merchant['contact_phone'] ?? "";
  2132. $available_pd = intval($merchant['available_predeposit']);
  2133. $alarm_pd = intval($merchant['alarm_amount']) < 10000 ? 10000 : intval($merchant['alarm_amount']);
  2134. if (array_key_exists($mchid, $caches)) {
  2135. $mch_cache = $caches[$mchid];
  2136. } else {
  2137. $mch_cache = ['last_time' => 0, 'send_count' => 0];
  2138. }
  2139. if (!empty($phone) && ($available_pd < $alarm_pd)) {
  2140. $counts = $mch_cache['send_count'];
  2141. if (($mch_cache['last_time'] + 300 < time()) && $counts < 5) {
  2142. $mch_cache = ['last_time' => time(), 'send_count' => $counts + 1];
  2143. QueueClient::push('sendSMS', ['mobile' => $merchant['contact_phone'],
  2144. 'type' => 'balance_warning', 'datas' => [date("m月d日H时"), $merchant['available_predeposit']]]);
  2145. }
  2146. } else {
  2147. $mch_cache = ['last_time' => 0, 'send_count' => 0];
  2148. }
  2149. $new_caches[$mchid] = $mch_cache;
  2150. }
  2151. wcache("merchant-notify", ['data' => serialize($new_caches)], 'refill-');
  2152. }
  2153. public function testReadChannel()
  2154. {
  2155. refill\RefillFactory::instance()->read_channel();
  2156. }
  2157. public function testAllow()
  2158. {
  2159. $allow = refill\RefillFactory::instance()->allow(10096, 1, 100);
  2160. }
  2161. public function testCheckData()
  2162. {
  2163. $str = '|2|110667993758599771-充值失败|';
  2164. // $str = '0|提交成功|-36557.7400';
  2165. // if(preg_match( '/^-*[0-9]{1,3}\|[\x{4e00}-\x{9fa5}]+\|-*[0-9]+\.*[0-9]+$/u',$str,$matches)) {
  2166. // return true;
  2167. // }
  2168. // if(preg_match('/^[0-3]\|[0-9]+-*[\x{4e00}-\x{9fa5}]+\|[0-9]*$/u',$str,$matches)){
  2169. // return true;
  2170. // }
  2171. // return false;
  2172. $resp = ltrim($str, '|');
  2173. $resp = explode('|', $resp);
  2174. if (count($resp) != 3) {
  2175. return [false, '返回值错误'];
  2176. }
  2177. }
  2178. public function testErrre()
  2179. {
  2180. $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}';
  2181. $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);
  2182. }
  2183. public function testExpolode()
  2184. {
  2185. $x = "HTTP-504";
  2186. [$type,$code] = explode('-',$x);
  2187. }
  2188. public function testMchctl()
  2189. {
  2190. $ctl = new refill\mchctl();
  2191. }
  2192. public function testAsyncadd()
  2193. {
  2194. $x = \refill\util::async_add(['xxxx' => 1],4);
  2195. }
  2196. private function getProvider($name,$type = 'RefillPhone')
  2197. {
  2198. $file = BASE_HELPER_RAPI_PATH . "/$name/{$type}.php";
  2199. if(!file_exists($file)){
  2200. Log::record("provider api file={$file} not exist.",Log::DEBUG);
  2201. return false;
  2202. } else {
  2203. require_once($file);
  2204. Log::record("file={$file} load success.",Log::DEBUG);
  2205. }
  2206. $class_name = "refill\\{$name}\\{$type}";
  2207. if (class_exists($class_name, false)) {
  2208. $caller = new $class_name([]);
  2209. return $caller;
  2210. } else {
  2211. $error = "Base Error: class {$class_name} isn't exists!";
  2212. Log::record($error, Log::ERR);
  2213. return false;
  2214. }
  2215. }
  2216. public function testOrderExist()
  2217. {
  2218. $refill_order = Model('refill_order');
  2219. $ret = $refill_order->exist(10116,'Yzb20210825111251415');
  2220. }
  2221. public function testRGoods()
  2222. {
  2223. $goods_list = refill\RefillFactory::instance()->goods();
  2224. }
  2225. }
  2226. //docker-compose run phpcli php /var/www/html/phpunit-9.2.5.phar --filter "/(TestRefill::testLoadBlack)( .*)?$/" --test-suffix TestRefill.php /var/www/html/test
  2227. //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