TestRefill.php 196 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116
  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 function testIsDay()
  35. {
  36. $ret = refill\functional::isDay();
  37. }
  38. public static function setUpBeforeClass(): void
  39. {
  40. Base::run_util();
  41. refill\RefillFactory::instance();
  42. }
  43. public function testMerchantPrice()
  44. {
  45. $price = new refill\merchant_price();
  46. }
  47. public function testCallBack()
  48. {
  49. $params = [
  50. "mchid" => 10193,
  51. "order_sn" => 'open1632462013152110599086',
  52. "amount" => '100.0000',//intval($refill_info['refill_amount'] + 0.05),
  53. "cardno" => 18505101761,
  54. "trade_no" => '4034130685806092699201',
  55. "idcard" => $refill_info['idcard'] ?? "",
  56. "card_name" => $refill_info['card_name'] ?? "",
  57. 'official_sn' => '110103353072109241341340249560',
  58. 'message' => '',
  59. "state" => 'SUCCESS'
  60. ];
  61. $params['sign'] = $this->md5_sign($params, '0a845c18fbefaa121f36169ab8c880f3');
  62. $notify_url = 'http://v3.biyingniao.com/web/yezi/v2/straight_url?from=equityOpen';
  63. $resp = http_request($notify_url, $params, 'POST');
  64. }
  65. public function testFactory()
  66. {
  67. $provider = refill\RefillFactory::instance();
  68. }
  69. private function make_sn()
  70. {
  71. return mt_rand(1000, 9999)
  72. . sprintf('%010d', time())
  73. . sprintf('%06d', (float)microtime() * 1000000);
  74. }
  75. public function testRandomMobile()
  76. {
  77. $no = "1" . mt_rand(1, 9999999999);
  78. Log::record("phone no={$no}", Log::DEBUG);
  79. }
  80. public function testBJBAddPhone()
  81. {
  82. $provider = new refill\bjb\RefillPhone([]);
  83. for ($i = 3; $i > 0; --$i) {
  84. $resp = $provider->add(13911129867, 4, 10, ['order_sn' => $this->make_sn()]);
  85. $resp = $provider->add(18500608333, 4, 10, ['order_sn' => $this->make_sn()]);
  86. $resp = $provider->add(18510683168, 4, 10, ['order_sn' => $this->make_sn()]);
  87. $resp = $provider->add(18513846008, 4, 10, ['order_sn' => $this->make_sn()]);
  88. $resp = $provider->add(18518237398, 4, 10, ['order_sn' => $this->make_sn()]);
  89. }
  90. }
  91. public function testOilticket()
  92. {
  93. $provider = new refill\bjb\RefillPhone([]);
  94. }
  95. public function testBjbRet()
  96. {
  97. $resp = '0|提交成功|14936.8600';
  98. $resp = explode('|', $resp);
  99. }
  100. public function testIpWhiteList()
  101. {
  102. $x = serialize(['47.99.57.105']);
  103. $ips = unserialize('a:1:{i:0;s:12:"47.99.57.105";}');
  104. if (!empty($ips)) {
  105. $addr = '47.99.57.105';
  106. Log::record("request ip:{$addr}", Log::DEBUG);
  107. if (!in_array($addr, $ips)) {
  108. throw new Exception("请求地址不在白名单中");
  109. }
  110. }
  111. }
  112. public function testBaizePhone()
  113. {
  114. $provider = new refill\baizeyd\RefillPhone([]);
  115. // $resp = $provider->add(17801048874, 5, 10, ['order_sn' => $this->make_sn()]);
  116. $resp = $provider->query(['order_sn' => '930668700375312006']);
  117. // $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';
  118. // $input = $this->parse_request($str);
  119. // $input['amount'] = 10.00;
  120. // $input['orderId'] = '92391614943913061206';
  121. // $input['phone'] = 17801048874;
  122. // $input['payTime'] = '2021-03-05 19:31:55';
  123. // $input['sign'] = 'bef6ae50319fb1e8cb3f21302f0abef8';
  124. // $input['appKey'] = 'uECmTOFAY6RPCTtI';
  125. // $input['payUrl'] = '';
  126. // $input['statusDes'] = '支付失败';
  127. // $input['status'] = 7;
  128. // refill\RefillFactory::instance()->notify('baizeyd',$input);
  129. }
  130. private function parse_request($squery)
  131. {
  132. if (empty($squery)) return [];
  133. $result = [];
  134. $params = preg_split('/&/', $squery);
  135. foreach ($params as $pair) {
  136. if (empty($pair)) continue;
  137. $kv = explode('=', $pair);
  138. $count = count($kv);
  139. if ($count === 1) {
  140. $key = $kv[0];
  141. $val = "";
  142. } elseif ($count === 2) {
  143. $key = $kv[0];
  144. $val = urldecode($kv[1]);
  145. } else {
  146. continue;
  147. }
  148. if (!empty($key)) {
  149. $result[$key] = $val;
  150. }
  151. }
  152. return $result;
  153. }
  154. public function testAmPhone()
  155. {
  156. // $provider = new refill\aming\RefillPhone([]);
  157. // $resp = $provider->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  158. $input['result'] = 'fail';
  159. $input['msg'] = 0;
  160. $input['order'] = 'null';
  161. $input['phone_no'] = 18500608333;
  162. $input['sign'] = 'c925ad19c63c3eb36ffc52d938e24604';
  163. $input['amount'] = '10.00';
  164. $input['op_no'] = '42601615096072517841';
  165. refill\RefillFactory::instance()->notify('aming', $input);
  166. }
  167. public function testBhcPhone()
  168. {
  169. $provider = new refill\binghc\RefillPhone([]);
  170. $resp = $provider->query(['order_sn' => 250668618955902006]);
  171. // $input['result'] = 'fail';
  172. // $input['msg'] = 0;
  173. // $input['order'] = 'null';
  174. // $input['phone_no'] = 18500608333;
  175. // $input['sign'] = 'c3aa38ee07cd1b69bfd5ead56f6da8d6';
  176. // $input['amount'] = '10.00';
  177. // $input['op_no'] = '24061615096361999002';
  178. // refill\RefillFactory::instance()->notify('binghc',$input);
  179. }
  180. public function testRuishunPhone()
  181. {
  182. // $provider = new refill\ruishun\RefillPhone([]);
  183. // $resp = $provider->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  184. $input['result'] = 'fail';
  185. $input['msg'] = 0;
  186. $input['order'] = null;
  187. $input['phone_no'] = 18500608333;
  188. $input['sign'] = 'e234f7d1c0458ca236f53a0008436b46';
  189. $input['amount'] = "10.00";
  190. $input['op_no'] = '76361615095403188513';
  191. refill\RefillFactory::instance()->notify('ruishun', $input);
  192. }
  193. public function testWuchenPhone()
  194. {
  195. $provider = new refill\wuchen\RefillPhone([]);
  196. // $resp = $provider->add('13699279618', 5, 30, ['order_sn' => $this->make_sn()]);
  197. $resp = $provider->query(['order_sn' => '790668630498425006']);
  198. // $input['app_id'] = '70016';
  199. // $input['message'] = 'fail';
  200. // $input['order_sn'] = '43101615277293035501';
  201. // $input['platform_order_id'] = '';
  202. // $input['sign'] = '5ea59f8ac51a518f2c622824d7db2a04';
  203. // $input['state'] = "fail";
  204. // $input['sys_sn'] = '202103091608231836913889';
  205. // $input['timestamp'] = '1615277361';
  206. // refill\RefillFactory::instance()->notify('wuchen',$input);
  207. }
  208. public function testYibaoPhone()
  209. {
  210. $provider = new refill\yibao\RefillPhone([]);
  211. // $resp = $provider->add('13699279618', 5, 30, ['order_sn' => $this->make_sn()]);
  212. $resp = $provider->query(['ch_trade_no' => '31215002972142736']);
  213. // $str = '{"amount":"30","carrierOrderNo":null,"mobile":"13699279618","orderNo":"27961615532426088043","orderStatus":3,"sign":"012BA0B093A0473D7DD1634A8356DCB1","tradeNo":"31215002972142736"}';
  214. // $data = json_decode($str,true);
  215. // refill\RefillFactory::instance()->notify('yibao',$data);
  216. }
  217. public function testAmingydPhone()
  218. {
  219. $provider = new refill\amingyd\RefillPhone([]);
  220. // $resp = $provider->add('13699279618', 5, 30, ['order_sn' => $this->make_sn()]);
  221. $resp = $provider->query(['order_sn' => '15421615627436792938']);
  222. // $str = '{"orderId":"15421615627436792938","amount":3000,"appKey":"40695059","timestamp":1615627503,"status":3,"operatorId":"508353854027968617","sign":"2A0562319ED4845AB9E3812A58F0B425"}';
  223. // $data = json_decode($str,true);
  224. // refill\RefillFactory::instance()->notify('amingyd',$data);
  225. }
  226. public function testChukaPhone()
  227. {
  228. $provider = new refill\chuka\RefillPhone([]);
  229. // $resp = $provider->add('18500608333', 5, 20, ['order_sn' => $this->make_sn()]);
  230. // $resp = $provider->query(['order_sn' => '92161616314884175179']);
  231. $params['customerId'] = '101787';
  232. $params['orderno'] = 'C1616314888506705492';
  233. $params['tmporder'] = '92161616314884175179';
  234. $params['code'] = '1';
  235. $params['number'] = '18500608333';
  236. $params['money'] = '20';
  237. $params['amount'] = '0';
  238. refill\RefillFactory::instance()->notify('chuka', $params);
  239. }
  240. public function testLegouPhone()
  241. {
  242. $provider = new refill\legou\RefillPhone([]);
  243. // $resp = $provider->add('18500608333', 5, 30, ['order_sn' => '200649600557718881' , 'order_id' => 247 , 'buyer_id' => 52667]);
  244. $resp = $provider->query(['order_sn' => '200649600557718881', 'order_id' => 247]);
  245. $params['username'] = 'lzdc';
  246. $params['orderNumber'] = '690653407667699667';
  247. $params['cardNumber'] = '18500608333';
  248. $params['orderMoney'] = '30.0';
  249. $params['orderPay'] = '1.0';
  250. $params['resultCode'] = '2';
  251. $params['rechargeDesc'] = '{"rechargeStatus":600200,"rechargeDesc":"充值成功"}';
  252. $params['rechargeVoucher'] = '100407307092103291444050244599';
  253. $params['sign'] = 'c054884422a8c3749cbfda0e82b9af70';
  254. // refill\RefillFactory::instance()->notify('legou',$params);
  255. }
  256. public function testFeinimoshu()
  257. {
  258. $provider = new refill\feinimoshu\RefillOil([]);
  259. // $resp = $provider->query(['order_sn' => '3708210680873565742704']);
  260. $resp = $provider->balance();
  261. }
  262. public function testFeinimoshu_hf()
  263. {
  264. $provider = new refill\feinimoshu_hf\RefillPhone([]);
  265. // $resp = $provider->query(['order_sn' => '3708210680873565742704']);
  266. $resp = $provider->balance();
  267. }
  268. public function testFeiniaoPhone()
  269. {
  270. $provider = new refill\feiniao\RefillPhone([]);
  271. // $order_sn = $this->make_sn();
  272. // Log::record($order_sn, Log::DEBUG);
  273. // $resp = $provider->add('13699279618', 4, 50, ['order_sn' => $order_sn]);
  274. $resp = $provider->query(['order_sn' => '28641617178590981824']);
  275. $params['result'] = 'fail';
  276. $params['msg'] = '0';
  277. $params['order'] = 'null';
  278. $params['phone_no'] = '18500608333';
  279. $params['amount'] = '100.00';
  280. $params['op_no'] = '64591617090761169983';
  281. $params['settle'] = '0';
  282. $params['sign'] = '907d2640f96e8d78d59202d090ddb470';
  283. // refill\RefillFactory::instance()->notify('feiniao',$params);
  284. }
  285. public function testTongyPhone()
  286. {
  287. $provider = new refill\tongy\RefillPhone([]);
  288. // $resp = $provider->add('18500608333', 5, 30, ['order_sn' => '690653407667699667', 'order_id' => 248, 'buyer_id' => 52667]);
  289. // $params['UserId'] = '100857';
  290. // $params['ShopId'] = '300000';
  291. // $params['SysOrderId'] = '21070215141210085700010';
  292. // $params['OrderId'] = '9241650678554051429291';
  293. // $params['State'] = '5';
  294. // $params['Timestamp'] = '1625210740472';
  295. // $params['sign'] = 'C5C4E888A3B678470071CDA6DC31719D';
  296. // $params['ParValue'] = '100.0000';
  297. // $params['VoucherType'] = '';
  298. // $params['VoucherContent'] = '';
  299. // $params['CreateTime'] = '2021-07-02 15:14:12';
  300. // $params['CompleteTime'] = '2021-07-02 15:25:40';
  301. // refill\RefillFactory::instance()->notify('tongy',$params);
  302. $resp = $provider->balance();
  303. }
  304. public function testWeiyiPhone()
  305. {
  306. $provider = new refill\weiyi\RefillPhone([]);
  307. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  308. // $resp = $provider->query(['order_sn' => '90401621489214002876']);
  309. $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"}';
  310. $params = json_decode($body, true);
  311. refill\RefillFactory::instance()->notify('weiyi', $params);
  312. }
  313. public function testWeiyimanPhone()
  314. {
  315. $provider = new refill\weiyiman\RefillPhone([]);
  316. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  317. // $resp = $provider->query(['order_sn' => '47591620898269370373']);
  318. $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"}';
  319. $params = json_decode($data, true);
  320. refill\RefillFactory::instance()->notify('weiyiman', $params);
  321. }
  322. public function testWeiyiWtPhone()
  323. {
  324. $provider = new refill\weiyiwt\RefillPhone([]);
  325. // $resp = $provider->add(18074608795, 6, 50, ['order_sn' => $this->make_sn()]);
  326. // $resp = $provider->query(['order_sn' => '38451621924366009924']);
  327. $body = '{"szOrderId":"38451621924366009924","fSalePrice":"47.25","szAgentId":"200016","nFlag":"2","szVerifyString":"a0b5bfc0bbf6c121a4cd74d9ecb2427d","szPhoneNum":"18074608795","szRtnMsg":"1000000083421052514441119833","nDemo":"50"}';
  328. $params = json_decode($body, true);
  329. refill\RefillFactory::instance()->notify('weiyiwt', $params);
  330. }
  331. public function testXiaochuangPhone()
  332. {
  333. $provider = new refill\xiaochuang\RefillPhone([]);
  334. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  335. // $resp = $provider->query(['order_sn' => '84891623028826872085']);
  336. // $body = '{"fail_msg":"","order_sn":"84891623028826872085","order_status":"4","p_order_sn":"2021060709203558011797441162","sign":"E842203C3CA48E924D60B1B56AB93C3B"}';
  337. // $params = json_decode($body , true);
  338. // refill\RefillFactory::instance()->notify('xiaochuang',$params);
  339. $resp = $provider->balance();
  340. }
  341. public function testYintengPhone()
  342. {
  343. $provider = new refill\yinteng\RefillPhone([]);
  344. // $resp = $provider->add(18074608795, 6, 50, ['order_sn' => $this->make_sn()]);
  345. // $resp = $provider->query(['order_sn' => '49631623737966351874']);
  346. // $data = '{"szOrderId":"49631623737966351874","fSalePrice":"47.35","szAgentId":"200009","nFlag":"2","szVerifyString":"01c5fafb1d67175f0533b69a762286e8","szPhoneNum":"18074608795","szRtnMsg":"1000000083421061514495400262","nDemo":"50"}';
  347. // $params = json_decode($data , true);
  348. // refill\RefillFactory::instance()->notify('yinteng',$params);
  349. $resp = $provider->balance();
  350. }
  351. public function testMoxjPhone()
  352. {
  353. $provider = new refill\moxj\RefillPhone([]);
  354. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  355. $resp = $provider->query(['order_sn' => '91131623906171663147']);
  356. $data = '{"result":"fail","msg":"0","order":"null","phone_no":"18500608333","amount":"50.0","op_no":"84901623900668776864","sign":"896b54914a07b814573d7f6cc403848a"}';
  357. $params = json_decode($data, true);
  358. // refill\RefillFactory::instance()->notify('moxj',$params);
  359. }
  360. public function testMoxj_fsPhone()
  361. {
  362. $provider = new refill\moxj_fs\RefillPhone([]);
  363. // $resp = $provider->add(15139608757, 4, 100, ['order_sn' => $this->make_sn()]);
  364. // $resp = $provider->query(['order_sn' => '42741624242693157165']);
  365. // $data = '{"amount":"100","charge_type":"2","code":"1","partner_id":"58","phone":"15139608757","sign":"30d193dba4101e50851ed0efabb75fb1","partner_order_no":"42741624242693157165","official_order_id":"20210621103211948830"}';
  366. // $params = json_decode($data , true);
  367. // refill\RefillFactory::instance()->notify('moxj_fs',$params);
  368. $resp = $provider->balance();
  369. }
  370. public function testZanzanquickPhone()
  371. {
  372. $provider = new refill\zanzanquick\RefillPhone([]);
  373. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  374. // $resp = $provider->query(['order_sn' => '90831623925322675223']);
  375. // $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"}';
  376. // $params = json_decode($data , true);
  377. // refill\RefillFactory::instance()->notify('zanzanquick',$params);
  378. $resp = $provider->balance();
  379. }
  380. public function testFengyemanPhone()
  381. {
  382. $provider = new refill\fengyeman\RefillPhone([]);
  383. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  384. // $resp = $provider->query(['order_sn' => '46221624265179185139']);
  385. // $data = '{"order_id":"46221624265179185139","mchid":"HF67a65_10008","tel":"18500608333","price":"50.00","sign":"2bb4ed5edc97ba7f60cf3848aab82cf4","out_order_id":"206877995456","status":"1"}';
  386. // $params = json_decode($data , true);
  387. // refill\RefillFactory::instance()->notify('fengyeman',$params);
  388. $resp = $provider->balance();
  389. }
  390. public function testMoxj_ydPhone()
  391. {
  392. $provider = new refill\moxj_yd\RefillPhone([]);
  393. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  394. // $resp = $provider->query(['order_sn' => '52101624413125875436']);
  395. // $data = '{"customer_order_no":"47651624412877257722","status":1,"merchant_id":"76505818","sign":"c185a0f2152b3ac3ee3f29009dec5a6b"}';
  396. // $params = json_decode($data , true);
  397. // refill\RefillFactory::instance()->notify('moxj_yd',$params);
  398. $resp = $provider->balance();
  399. }
  400. public function testXingzyPhone()
  401. {
  402. $provider = new refill\xingzy\RefillPhone([]);
  403. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  404. // $resp = $provider->query(['order_sn' => '76791624441423287373', 'ch_trade_no' => '210623174333941000']);
  405. // $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}';
  406. // $params = json_decode($data , true);
  407. // refill\RefillFactory::instance()->notify('xingzy',$params);
  408. $resp = $provider->balance();
  409. }
  410. public function testYuanmaiPhone()
  411. {
  412. $provider = new refill\yuanmai\RefillPhone([]);
  413. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  414. // $resp = $provider->query(['order_sn' => '24231624865882625203', 'ch_trade_no' => '210623174333941000']);
  415. // $data = '{"orderid":"24231624865882625203","status":"2","ordermoney":"50","sign":"94be5b1754ffcc7f0fe1551072146941","spsno":""}';
  416. // $params = json_decode($data, true);
  417. // refill\RefillFactory::instance()->notify('yuanmai',$params);
  418. $resp = $provider->balance();
  419. }
  420. public function testLangkePhone()
  421. {
  422. $provider = new refill\langke\RefillPhone([]);
  423. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  424. $resp = $provider->query(['order_sn' => '29461624952660047520', 'ch_trade_no' => '210623174333941000']);
  425. $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"}';
  426. $params = json_decode($data, true);
  427. // refill\RefillFactory::instance()->notify('langke',$params);
  428. }
  429. public function testYunlingdsPhone()
  430. {
  431. $provider = new refill\yunlingds\RefillPhone([]);
  432. // $resp = $provider->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  433. // $resp = $provider->query(['order_sn' => '85351624961920020593']);
  434. // $data = '{"orderid":"OWS21062918188862392","sporderid":"85351624961920020593","userid":"10002623","merchantsubmittime":"20210629181929","resultno":"1","parvalue":"30","remark1":"AW20210629181906yRAvM","payno":"AW20210629181906yRAvM","fundbalance":"-28.59","sign":"11369509ADCF2A2612B3531A15049BDD"}';
  435. // $params = json_decode($data, true);
  436. // refill\RefillFactory::instance()->notify('yunlingds',$params);
  437. $resp = $provider->balance();
  438. }
  439. public function testLingzhmanPhone()
  440. {
  441. // $provider = $this->getProvider('lingzhman');
  442. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  443. // $resp = $provider->query(['order_sn' => '91641644558361512676']);
  444. // $resp = $provider->balance();
  445. $body = '{"orderNo":"F2202111346304162782","status":"001","consumerNo":"91641644558361512676","voucherNo":null,"mobile":"18500608333"}';
  446. $params = json_decode($body, true);
  447. $provider = $this->getProvider('lingzhman', 'RefillCallback');
  448. $resp = $provider->notify($params);
  449. }
  450. public function testQijutangPhone()
  451. {
  452. $provider = new refill\qijutang\RefillPhone([]);
  453. // for ($i=1;$i<2;$i++) {
  454. // $resp = $provider->add(13699279618, 4, 100, ['order_sn' => $this->make_sn()]);
  455. // }
  456. // $resp = $provider->query(['order_sn' => '51501625218912512231']);
  457. // $data = '{"szOrderId":"51501625218912512231","fSalePrice":"28.44","szAgentId":"200010","nFlag":"3","szVerifyString":"20cf16c6bb239e2a703d0bf3e5ef2d5a","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"30"}';
  458. // $params = json_decode($data, true);
  459. // refill\RefillFactory::instance()->notify('qijutang',$params);
  460. $resp = $provider->balance();
  461. }
  462. public function testLingzhman48Phone()
  463. {
  464. // $provider = $this->getProvider('lingzhman48');
  465. // $resp = $provider->balance();
  466. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  467. // $resp = $provider->query(['order_sn' => '39991649558290585085']);
  468. $body = '{"orderNo":"F2204101038212358481","status":"019","consumerNo":"39991649558290585085","voucherNo":null,"mobile":"18500608333"}';
  469. $params = json_decode($body, true);
  470. $provider = $this->getProvider('lingzhman48', 'RefillCallBack');
  471. $ret = $provider->verify($params);
  472. $resp = $provider->notify($params);
  473. }
  474. public function testcangbuPhone()
  475. {
  476. $provider = $this->getProvider('cangbu');
  477. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  478. $resp = $provider->query(['order_sn' => '4024880687558152076462']);
  479. // $data = '{"customerId":"112","tmporder":"35041626071052333060","orderno":"s16260710607417944801112","number":"18500608333","money":"100","amount":"94.9000","code":"1","cardno":"","voucher":"110103307042107121424210550266","sign":"de463c3d389a4afe4a2c58257972121a"}';
  480. // $params = json_decode($data, true);
  481. // refill\RefillFactory::instance()->notify('cangbu',$params);
  482. $resp = $provider->balance();
  483. }
  484. public function testCangbukami()
  485. {
  486. $provider = new refill\cangbukami\RefillPhone([]);
  487. // $resp = $provider->add(18500608333, 5, 20, ['order_sn' => $this->make_sn()]);
  488. $resp = $provider->query(['order_sn' => '23231627380108954478']);
  489. }
  490. public function testTongykamiPhone()
  491. {
  492. $provider = new refill\tongykami\RefillPhone([]);
  493. // $resp = $provider->add(18500608333, 5, 20, ['order_sn' => $this->make_sn()]);
  494. $resp = $provider->query(['order_sn' => '26961626077050756648']);
  495. $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"}';
  496. $params = json_decode($data, true);
  497. // refill\RefillFactory::instance()->notify('tongykami',$params);
  498. }
  499. public function testTongluPhone()
  500. {
  501. $provider = new refill\tonglu\RefillPhone([]);
  502. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  503. $resp = $provider->query(['order_sn' => '22961616468561936356']);
  504. // $body = '{"order_no":"22961616468561936356","order_status":"5","phone_no":"18500608333","amount":5000,"time_paid":1616468856287,"order_cert_no":"","paid":false,"order_id":"20210323966497008"}';
  505. // $sign = '9E41F52F612D60EBB654B3A5D1E2F1E5';
  506. // $params = json_decode($body , true);
  507. // $params['sign'] = $sign;
  508. // refill\RefillFactory::instance()->notify('tonglu',$params);
  509. }
  510. public function testSialan()
  511. {
  512. $provider = $this->getProvider('sialan');
  513. // $resp = $provider->balance();
  514. // $resp = $provider->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  515. $resp = $provider->query(['ch_trade_no' => '21112214053736552180705']);
  516. // $body = '{"api_id":"16855","recharge":"18500608333","amount":"10","order_sn":"21112213553615606755893","query_sn":"29151637560521755792","operator_sn":"","status":"2","sign":"32867363957ed9688b8bbdd8f42c08eb"}';
  517. // $params = json_decode($body, true);
  518. // $provider = $this->getProvider('sialan', 'RefillCallBack');
  519. // $ret = $provider->verify($params);
  520. // $resp = $provider->notify($params);
  521. }
  522. public function testMoxj_new()
  523. {
  524. $provider = new refill\moxj_new\RefillPhone([]);
  525. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  526. // $resp = $provider->query(['order_sn' => '33301627887529587739', 'card_no' => 13699279618]);
  527. // $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"}';
  528. // $params = json_decode($body, true);
  529. // refill\RefillFactory::instance()->notify('moxj_new', $params);
  530. $resp = $provider->balance();
  531. }
  532. public function testKangkai()
  533. {
  534. $provider = new refill\kangkai\RefillPhone([]);
  535. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  536. // $resp = $provider->query(['order_sn' => '25431627898461762024']);
  537. // $body = '{"TaskID":"267459","Mobile":"18500608333","Status":"5","ReportTime":"2021-08-02T18:02:01.777","ReportCode":"7:","OutTradeNo":"25431627898461762024","Price":"44.2500","ReceiptNum":"","Sign":"f0934a621fd0b076373f77a9bf8d7051"}';
  538. // $params = json_decode($body, true);
  539. // refill\RefillFactory::instance()->notify('kangkai', $params);
  540. $resp = $provider->balance();
  541. }
  542. public function testLechong()
  543. {
  544. $provider = new refill\lechong\RefillPhone([]);
  545. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  546. // $resp = $provider->query(['order_sn' => '55641627902450221838']);
  547. // $body = '{"sellerid":"55641627902450221838","agentcode":"202108021753","account":"MTg1MDA2MDgzMzM=","value":"50","payvalue":"47.8500","voucher":"","createtime":"20210802190739","endtime":"20210802191008","state":"4","remark":"","time":"20210802191008","sign":"0e2d69318d03871d887debd498cc50f2"}';
  548. // $params = json_decode($body, true);
  549. // refill\RefillFactory::instance()->notify('lechong', $params);
  550. $resp = $provider->balance();
  551. }
  552. public function testXinhengyang()
  553. {
  554. $provider = $this->getProvider('xinhengyang');
  555. // $resp = $provider->balance();
  556. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  557. $resp = $provider->query(['order_sn' => '6966570691155594416360']);
  558. // $body = '{"reqNo":"f619063cc8f443e1a3ee1cc5fe868817","userReqNo":"12621636363677759274","evidence":"","sign":"fc184436350396baf252ff56aee6f5ce","billDiscount":"0.953","billAmount":"28.59","status":"50100","message":"fail"}';
  559. // $params = json_decode($body, true);
  560. // $provider = $this->getProvider('xinhengyang', 'RefillCallBack');
  561. // $ret = $provider->verify($params);
  562. // $resp = $provider->notify($params);
  563. }
  564. public function testMiaoxt()
  565. {
  566. $provider = new refill\miaoxt\RefillPhone([]);
  567. // $resp = $provider->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  568. // $resp = $provider->query(['order_sn' => '85101628064401524483']);
  569. // $resp = $provider->balance();
  570. $body = '{"szOrderId":"85101628064401524483","fSalePrice":"10.2","szAgentId":"200050","nFlag":"2","szVerifyString":"7a08b9a71a297a28843d749a7bf79dbc","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"10"}';
  571. $params = json_decode($body, true);
  572. refill\RefillFactory::instance()->notify('miaoxt', $params);
  573. }
  574. public function testTianyan()
  575. {
  576. $provider = new refill\tianyan\RefillPhone([]);
  577. // $resp = $provider->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  578. // $resp = $provider->query(['order_sn' => '71241628067981955316', 'card_no' => 18500608333, 'card_type' => 5]);
  579. // $resp = $provider->balance();
  580. $params['amount'] = '100.00';
  581. $params['orderNo'] = '2618380681466713437097';
  582. $params['supplierId'] = '48';
  583. $params['orderId'] = 'S20210805081833371976224648';
  584. $params['notifyTime'] = '1628122793669';
  585. $params['sign'] = '4d8f70bf451608359e256ee1e5f30de1';
  586. $params['discountAmount'] = '5.50';
  587. $params['phoneNo'] = '17696554433';
  588. $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';
  589. $params['payType'] = 'wechat';
  590. $params['ticketNo'] = '110103353022108050819140250945';
  591. $params['company'] = 'lt';
  592. $params['status'] = '2';
  593. refill\RefillFactory::instance()->notify('tianyan', $params);
  594. }
  595. public function testYunsuoyaoman()
  596. {
  597. // $provider = $this->getProvider('yunsuoyaoman');
  598. // $resp = $provider->balance();
  599. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  600. // $resp = $provider->query(['order_sn' => '58771629702960801700']);
  601. $body = '{"orderid":"RLD21082315152651196","sporderid":"58771629702960801700","userid":"10002745","merchantsubmittime":"20210823152623","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-27.45","sign":"76A29E0101644831526138D63917C130"}';
  602. $params = json_decode($body, true);
  603. $provider = $this->getProvider('yunsuoyaoman', 'RefillCallBack');
  604. $ret = $provider->verify($params);
  605. $resp = $provider->notify($params);
  606. }
  607. public function testYouhe()
  608. {
  609. // $provider = $this->getProvider('youhe');
  610. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  611. // $resp = $provider->query(['order_sn' => '41051635145081582785']);
  612. // $resp = $provider->balance();
  613. $body = ' {"seqNo":"FE4D9D65781C0758","orderNo":"46101635142848462768","result":"Q0001","transo":"","sign":"3B02C7864154C94D8479305D27F3831C"}';
  614. $params = json_decode($body, true);
  615. $provider = $this->getProvider('youhe', 'RefillCallback');
  616. $ret = $provider->verify($params);
  617. $resp = $provider->notify($params);
  618. }
  619. public function testWenye()
  620. {
  621. $provider = new refill\wenye\RefillPhone([]);
  622. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  623. // $resp = $provider->query(['order_sn' => '88871628157083445809']);
  624. // $resp = $provider->balance();
  625. $body = '{"orderNo":"F2108051529062719948","status":"019","consumerNo":"95291628148539909985","voucherNo":null,"mobile":"18500608333"}';
  626. $params = json_decode($body, true);
  627. // refill\RefillFactory::instance()->notify('wenye', $params);
  628. }
  629. public function testXinyang()
  630. {
  631. $provider = new refill\xinyang\RefillPhone([]);
  632. // $resp = $provider->add(13699279618, 4, 10, ['order_sn' => $this->make_sn()]);
  633. // $resp = $provider->query(['order_sn' => '68151628157534687971']);
  634. // $resp = $provider->balance();
  635. $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"}';
  636. $params = json_decode($body, true);
  637. refill\RefillFactory::instance()->notify('xinyang', $params);
  638. }
  639. public function testGuochuang()
  640. {
  641. $provider = $this->getProvider('guochuang');
  642. $resp = $provider->add(13699279618, 4, 5, ['order_sn' => $this->make_sn(), 'regin_no' => 1]);
  643. // $resp = $provider->query(['order_sn' => '82951628231038096078']);
  644. // $resp = $provider->balance();
  645. // $body = '{"account":"18074608795","evidence":"1000000083421080614310024563","evidenceType":"","id":"D2021080614235942044","inTime":"2021/08/06 14:26:22","money":"10","outerId":"82951628231038096078","status":"SUCCESS"}';
  646. // $params['ts'] = 1628231182;
  647. // $params['sign'] = '545F7024870B145915934CA36C6D341E';
  648. // $params['body'] = $body;
  649. // refill\RefillFactory::instance()->notify('guochuang', $params);
  650. // [$goods_id, $price] = $provider->goods(2, 10, 4, 1, []);
  651. }
  652. public function testXianghongrui()
  653. {
  654. $provider = new refill\xianghongrui\RefillPhone([]);
  655. // $resp = $provider->balance();
  656. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  657. // $resp = $provider->query(['order_sn' => '87691628758730981608']);
  658. $body = '{"orderid":"BAT21081216581941649","sporderid":"87691628758730981608","userid":"10002503","merchantsubmittime":"20210812165918","resultno":"1","parvalue":"50","remark1":"110103353052108121658550256634","payno":"110103353052108121658550256634","fundbalance":"-47.5","sign":"EF34F6FB6D37E4FCB92DCD8F41CC67E1"}';
  659. $params = json_decode($body, true);
  660. refill\RefillFactory::instance()->notify('xianghongrui', $params);
  661. }
  662. public function testDianchong()
  663. {
  664. $provider = $this->getProvider('dianchong');
  665. // $resp = $provider->balance();
  666. // $resp = $provider->add(18074608795, 5, 30, ['order_sn' => $this->make_sn()]);
  667. // $resp = $provider->query(['order_sn' => '26671629190230227788']);
  668. $body = '{"seqNo":"5C2D85572F8743CF","orderNo":"26671629190230227788","result":"Q0000","transo":"1000000083421081716331202254","sign":"87F3F67EA2B91709FD05468CF74210A1"}';
  669. $params = json_decode($body, true);
  670. $provider = $this->getProvider('dianchong', 'RefillCallBack');
  671. $ret = $provider->verify($params);
  672. $resp = $provider->notify($params);
  673. }
  674. public function testXunyinOil()
  675. {
  676. $provider = $this->getProvider('xunyinoil', 'RefillOil');
  677. // $resp = $provider->balance();
  678. // $resp = $provider->add(9030230005180327, 1, 50, ['order_sn' => $this->make_sn()]);
  679. $resp = $provider->query(['order_sn' => '77791629450541412891']);
  680. // $body = '{"ext":"","code":"8888","sign":"7db98f3f271013688134f2fbd503dc15","statemes":"\u6210\u529f","id":"80641629442789487318","userid":"8417","operatorid":"2421082015001888","status":"SUCCESS"}';
  681. // $params = json_decode($body, true);
  682. // $provider = $this->getProvider('xunyinoil','RefillCallBack');
  683. // $ret = $provider->verify($params);
  684. // $resp = $provider->notify($params);
  685. }
  686. public function testJumiThird()
  687. {
  688. $provider = $this->getProvider('jumithird');
  689. // $resp = $provider->balance();
  690. $resp = $provider->add(588073521, 7, 100, [
  691. 'order_sn' => $this->make_sn(),
  692. 'goods_id' => 6978,
  693. 'product_code' => 'XYZ100747'
  694. ]);
  695. // $resp = $provider->query(['order_sn' => '53151629791019902609']);
  696. // $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"}';
  697. // $params = json_decode($body, true);
  698. // $provider = $this->getProvider('jumithird','RefillCallBack');
  699. // $ret = $provider->verify($params);
  700. // $resp = $provider->notify($params);
  701. }
  702. public function testWangliantx()
  703. {
  704. // $provider = $this->getProvider('wangliantx');
  705. // $resp = $provider->balance();
  706. // for ($i = 1; $i<=1; $i++){
  707. // $resp = $provider->add(18074608795, 6, 50, [
  708. // 'order_sn' => $this->make_sn(),
  709. // 'regin_no' => 1
  710. // ]);
  711. // }
  712. // $resp = $provider->query(['order_sn' => '85901629801033376170']);
  713. $body = '{"userid":"10073664","sporderid":"85901629801033376170","orderid":"C5C5D4F49DB61A8773664","resultno":"1","merchantsubmittime":"20210824183109","ordermoney":"47.6","verifystring":"b6a873ecd6dc9cea3a410c6386cdab84","sign":"4a80e2a8c7b07c8aacada4feedd581bd","supnumber":"1000000083421082418345386156"}';
  714. $params = json_decode($body, true);
  715. $provider = $this->getProvider('wangliantx', 'RefillCallBack');
  716. $ret = $provider->verify($params);
  717. $resp = $provider->notify($params);
  718. }
  719. public function testZhuojian()
  720. {
  721. // $provider = $this->getProvider('zhuojian');
  722. // $resp = $provider->add(18500608333, 5, 50, [
  723. // 'order_sn' => $this->make_sn()
  724. // ]);
  725. // $resp = $provider->query(['order_sn' => '87231630026579229295']);
  726. $body = '{"money":"50.00","official_trade_no":"","out_trade_no":"87231630026579229295","status":"4","trade_no":"10000077828","sign":"0e19142c014ef6fe263601956e0be436"}';
  727. $params = json_decode($body, true);
  728. $provider = $this->getProvider('zhuojian', 'RefillCallBack');
  729. $ret = $provider->verify($params);
  730. $resp = $provider->notify($params);
  731. }
  732. public function testXianghongruifs()
  733. {
  734. // $provider = $this->getProvider('xianghongruifs');
  735. // $resp = $provider->balance();
  736. // $resp = $provider->add(15252490862, 4, 30, [
  737. // 'order_sn' => $this->make_sn()
  738. // ]);
  739. // $resp = $provider->query(['order_sn' => '70881632644084577858']);
  740. $body = '{"orderid":"AAO21092616144271467","sporderid":"70881632644084577858","userid":"10002524","merchantsubmittime":"20210926161610","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-28.5","sign":"343C28C4EB13F68E2EE251FA0F2A8262"}';
  741. $params = json_decode($body, true);
  742. $provider = $this->getProvider('xianghongruifs', 'RefillCallBack');
  743. $ret = $provider->verify($params);
  744. $resp = $provider->notify($params);
  745. }
  746. public function testYilin()
  747. {
  748. $provider = $this->getProvider('yilin');
  749. $resp = $provider->balance();
  750. // $resp = $provider->add(18500608333, 5, 30, [
  751. // 'order_sn' => $this->make_sn()
  752. // ]);
  753. // $resp = $provider->query(['order_sn' => '86981630484634157631']);
  754. // $body = '{"orderid":"NZX21090116244713140","sporderid":"86981630484634157631","userid":"10002543","merchantsubmittime":"20210901163039","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-28.71","sign":"53717BF9ECE83F4AD96C1EDD4BAE4E87"}';
  755. // $params = json_decode($body, true);
  756. // $provider = $this->getProvider('yilin','RefillCallBack');
  757. // $ret = $provider->verify($params);
  758. // $resp = $provider->notify($params);
  759. }
  760. public function testMiaoxt_fs()
  761. {
  762. $provider = $this->getProvider('miaoxt_fs');
  763. // $resp = $provider->balance();
  764. // $resp = $provider->add(13945846040, 4, 10, [
  765. // 'order_sn' => $this->make_sn()
  766. // ]);
  767. $resp = $provider->query(['order_sn' => '33101630577689278074']);
  768. // $body = '{"szOrderId":"33101630577689278074","fSalePrice":"9.95","szAgentId":"200055","nFlag":"2","szVerifyString":"1649fb2815926b75e4ed7e0fef3172ae","szPhoneNum":"13945846040","szRtnMsg":"","nDemo":"10"}';
  769. // $params = json_decode($body, true);
  770. // $provider = $this->getProvider('miaoxt_fs','RefillCallBack');
  771. // $ret = $provider->verify($params);
  772. // $resp = $provider->notify($params);
  773. }
  774. public function testXianzhibb()
  775. {
  776. // $provider = $this->getProvider('xianzhibb');
  777. // $resp = $provider->balance();
  778. // $resp = $provider->add(13699279618, 4, 200, [
  779. // 'order_sn' => $this->make_sn()
  780. // ]);
  781. // $resp = $provider->query(['order_sn' => '80881630650784871094']);
  782. $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"}';
  783. $params = json_decode($body, true);
  784. $provider = $this->getProvider('xianzhibb', 'RefillCallBack');
  785. $ret = $provider->verify($params);
  786. $resp = $provider->notify($params);
  787. }
  788. public function testYikatong()
  789. {
  790. // $provider = $this->getProvider('yikatong');
  791. // $resp = $provider->balance();
  792. // $resp = $provider->add(18500608333, 5, 30, [
  793. // 'order_sn' => $this->make_sn()
  794. // ]);
  795. // $resp = $provider->query(['order_sn' => '54641640157747514762']);
  796. $body = '{"msg":"","code":"1","productId":"2000030","orderId":"54641640157747514762","systemOrderId":"1042390009","faceValue":"30","price":"28.35","appId":"200005","mobile":"18500608333","sign":"caafec8ef1abcf6db5517245dbeceb9c"}';
  797. $params = json_decode($body, true);
  798. $provider = $this->getProvider('yikatong', 'RefillCallBack');
  799. $ret = $provider->verify($params);
  800. $resp = $provider->notify($params);
  801. }
  802. public function testSanti()
  803. {
  804. $provider = $this->getProvider('santi');
  805. // $resp = $provider->get_product(17801048874);
  806. // $resp = $provider->add(18500608333, 5, 1024, [
  807. // 'order_sn' => $this->make_sn(),
  808. // 'goods_id' => 7000,
  809. // 'product_code' => 'XYZ100751'
  810. // ]);
  811. $resp = $provider->query(['ch_trade_no' => '1631945759171581']);
  812. // $resp = $provider->balance();
  813. $body = '{"channelOrderNo":"49991631861285846684","extraData":"","orderNo":"1631861288127072","orderStatus":"4","providerResultCode":"3","providerResultReason":"\u5145\u503c\u6210\u529f","resultCode":"1000","resultMessage":"\u6210\u529f","sign":"472490783eaa82c76a1af8702881f04f"}';
  814. $params = json_decode($body, true);
  815. $provider = $this->getProvider('santi', 'RefillCallBack');
  816. $ret = $provider->verify($params);
  817. $resp = $provider->notify($params);
  818. }
  819. public function testSialan_tax()
  820. {
  821. // $provider = $this->getProvider('sialan_tax');
  822. // $resp = $provider->balance();
  823. // $resp = $provider->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  824. // $resp = $provider->query(['ch_trade_no' => '21112214170092559557647']);
  825. $body = '{"api_id":"16856","recharge":"18500608333","amount":"10","order_sn":"21112214170092559557647","query_sn":"64801637561821444619","operator_sn":"","status":"2","sign":"900a01a1268cb14a37d6567691303ed9"}';
  826. $params = json_decode($body, true);
  827. $provider = $this->getProvider('sialan_tax', 'RefillCallBack');
  828. $ret = $provider->verify($params);
  829. $resp = $provider->notify($params);
  830. }
  831. public function testYunchonggong_yd()
  832. {
  833. $provider = $this->getProvider('yunchonggong_yd');
  834. // $resp = $provider->balance();
  835. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  836. // $resp = $provider->query(['order_sn' => '40181650866044454847']);
  837. // $body = '{"szOrderId":"34061631002071526340","fSalePrice":"47.7","szAgentId":"200043","nFlag":"3","szVerifyString":"48a7329c13af06b5be1d2fdad706b22e","szPhoneNum":"13699279618","szRtnMsg":"","nDemo":"50"}';
  838. // $params = json_decode($body, true);
  839. // $provider = $this->getProvider('yunchonggong_yd','RefillCallBack');
  840. // $ret = $provider->verify($params);
  841. // $resp = $provider->notify($params);
  842. }
  843. public function testGuochuang_nation()
  844. {
  845. $provider = $this->getProvider('guochuang_nation');
  846. $resp = $provider->add(18500608333, 5, 1, ['order_sn' => $this->make_sn(), 'regin_no' => 1]);
  847. // $resp = $provider->query(['order_sn' => '4372390688043259849812']);
  848. // $resp = $provider->balance();
  849. // $body = '{"account":"18500608333","evidence":"N/A","evidenceType":"","id":"D2021090718185107657","inTime":"2021/09/07 18:19:05","money":"1","outerId":"65261631009929751933","status":"SUCCESS"}';
  850. // $params['ts'] = 1631009945;
  851. // $params['sign'] = 'C53F921EB5573EF4D0C757C5B5D4185D';
  852. // $params['body'] = $body;
  853. // $provider = $this->getProvider('guochuang_nation','RefillCallBack');
  854. // $ret = $provider->verify($params);
  855. // $resp = $provider->notify($params);
  856. }
  857. public function testTianyanman()
  858. {
  859. $provider = $this->getProvider('tianyanman');
  860. $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  861. // $resp = $provider->query(['order_sn' => '12191631078826857172', 'card_no' => 18500608333, 'card_type' => 5]);
  862. // $resp = $provider->balance();
  863. // $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"}';
  864. // $params = json_decode($body, true);
  865. // $provider = $this->getProvider('tianyanman','RefillCallBack');
  866. // $ret = $provider->verify($params);
  867. // $resp = $provider->notify($params);
  868. }
  869. public function testShimer()
  870. {
  871. $provider = $this->getProvider('shimier');
  872. // $resp = $provider->balance();
  873. $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  874. // $resp = $provider->query(['order_sn' => '56391631086657239320']);
  875. // $body = '{"orderId":"210908153756535112","appId":"b3k6DRwSOw","outOrderId":"56391631086657239320","sign":"86f9e783a3374463d546bedfc6920eff","orderStatus":"3","completeTime":"20210908154810","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  876. // $params = json_decode($body, true);
  877. // $provider = $this->getProvider('shimier','RefillCallBack');
  878. // $ret = $provider->verify($params);
  879. // $resp = $provider->notify($params);
  880. }
  881. public function testZhongst_mix()
  882. {
  883. // $provider = $this->getProvider('zhongst_mix');
  884. // $resp = $provider->balance();
  885. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  886. // $resp = $provider->query(['order_sn' => '81331649907306739763']);
  887. $body = '{"orderId":"220414113514628825","appId":"aKz6PN5XIw","outOrderId":"81331649907306739763","sign":"140099d15593e363e6b2682a4c2f24c2","orderStatus":"2","completeTime":"20220414120642","orderDesc":"\u8ba2\u5355\u6210\u529f","ext1":"110103308032204141204470484590"}';
  888. $params = json_decode($body, true);
  889. $provider = $this->getProvider('zhongst_mix', 'RefillCallBack');
  890. $ret = $provider->verify($params);
  891. $resp = $provider->notify($params);
  892. }
  893. public function testHangtong()
  894. {
  895. // $provider = $this->getProvider('hangtong');
  896. // $resp = $provider->balance();
  897. // $resp = $provider->add(13699279618, 4, 100, ['order_sn' => $this->make_sn()]);
  898. // $resp = $provider->query(['order_sn' => '68221631775122967358']);
  899. $body = '{"phone":"13699279618","orderNo":"F2109161452121045530","status":"success","otherNo":"68221631775122967358","msg":"提交/充值成功","ext":"524501553021467113"}';
  900. $params = json_decode($body, true);
  901. $provider = $this->getProvider('hangtong', 'RefillCallBack');
  902. $ret = $provider->verify($params);
  903. $resp = $provider->notify($params);
  904. }
  905. public function testJinfeng()
  906. {
  907. // $provider = $this->getProvider('jinfeng');
  908. // $resp = $provider->balance();
  909. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  910. // $resp = $provider->query(['order_sn' => '78561631769733386091']);
  911. $body = '{"orderNo":"F2109161322374838924","status":"003","consumerNo":"78561631769733386091","voucherNo":null,"mobile":"18500608333"}';
  912. $params = json_decode($body, true);
  913. $provider = $this->getProvider('jinfeng', 'RefillCallBack');
  914. $ret = $provider->verify($params);
  915. $resp = $provider->notify($params);
  916. }
  917. public function testDashang()
  918. {
  919. // $provider = $this->getProvider('dashang');
  920. // $resp = $provider->balance();
  921. // $resp = $provider->add(18074608795, 6, 50, ['order_sn' => $this->make_sn()]);
  922. // $resp = $provider->query(['order_sn' => '63101631784169445345']);
  923. $body = '{"userId":"80800346","bizId":"90290050","ejId":"90916171545126","downstreamSerialno":"67971631783703671946","status":"3","voucher":"","voucherType":"0","sign":"46b13acf67f271e2f85db189ab9e1391"}';
  924. $params = json_decode($body, true);
  925. $provider = $this->getProvider('dashang', 'RefillCallBack');
  926. $ret = $provider->verify($params);
  927. $resp = $provider->notify($params);
  928. }
  929. public function testYuanta()
  930. {
  931. // $provider = $this->getProvider('yuanta');
  932. // $resp = $provider->balance();
  933. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  934. // $resp = $provider->query(['order_sn' => '96081645088688480739']);
  935. $body = '{"orderId":"220217170449505863","appId":"Uar9JIo4Zz","outOrderId":"96081645088688480739","sign":"1483916dbdc2f3b6024894442af816aa","orderStatus":"2","completeTime":"20220217175606","orderDesc":"\u8ba2\u5355\u6210\u529f"}';
  936. $params = json_decode($body, true);
  937. $provider = $this->getProvider('yuanta', 'RefillCallBack');
  938. $ret = $provider->verify($params);
  939. $resp = $provider->notify($params);
  940. }
  941. public function testDuojing()
  942. {
  943. // $provider = $this->getProvider('duojing');
  944. // $resp = $provider->balance();
  945. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  946. // $resp = $provider->query(['order_sn' => '51421642755293155833']);
  947. // $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"}';
  948. // $params = json_decode($body, true);
  949. // $provider = $this->getProvider('duojing','RefillCallBack');
  950. // $ret = $provider->verify($params);
  951. // $resp = $provider->notify($params);
  952. }
  953. public function testMenggu()
  954. {
  955. $provider = $this->getProvider('menggu', 'RefillOil');
  956. // $resp = $provider->add(1000111100021211884, 2, 500, ['order_sn' => $this->make_sn()]);
  957. $resp = $provider->query(['order_sn' => '63021632301956855605']);
  958. // $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"}';
  959. // $params = json_decode($body, true);
  960. // $provider = $this->getProvider('menggu','RefillCallBack');
  961. // $ret = $provider->verify($params);
  962. // $resp = $provider->notify($params);
  963. }
  964. public function testMenggu_hf()
  965. {
  966. $provider = $this->getProvider('menggu_hf');
  967. // $resp = $provider->balance();
  968. $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  969. // $resp = $provider->query(['order_sn' => '24481632298991701065']);
  970. // $body = '{"orderId":"210922162318123069","appId":"1hqLCRUja7","outOrderId":"24481632298991701065","sign":"73faefba3e179641af0df6f59becce8f","orderStatus":"3","completeTime":"20210922162451","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  971. // $params = json_decode($body, true);
  972. // $provider = $this->getProvider('menggu_hf','RefillCallBack');
  973. // $ret = $provider->verify($params);
  974. // $resp = $provider->notify($params);
  975. }
  976. public function testChizeng()
  977. {
  978. $provider = $this->getProvider('chizeng');
  979. // $resp = $provider->balance();
  980. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  981. $resp = $provider->query(['order_sn' => '7013163540140101017048563']);
  982. // $body = '{"orderid":"UQX21102814052855105","sporderid":"71241635401103845030","userid":"10002523","merchantsubmittime":"20211028140512","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-28.35","sign":"0B97DC1E16EC3BC5F139AAC3FB4C51BF"}';
  983. // $params = json_decode($body, true);
  984. // $provider = $this->getProvider('chizeng','RefillCallBack');
  985. // $ret = $provider->verify($params);
  986. // $resp = $provider->notify($params);
  987. }
  988. public function testJinxin()
  989. {
  990. // $provider = $this->getProvider('jinxin');
  991. // $resp = $provider->balance();
  992. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  993. // $resp = $provider->query(['order_sn' => '83481632465671278322']);
  994. $body = '{"orderNo":"210924140000185","requestId":"83481632465671278322","sign":"80184350EC5C60445A50C9450D6CFB28","status":1,"supplierNo":"110103353192109241442090289402","timeStamp":"2021-09-24 14:43:07"}';
  995. $params = json_decode($body, true);
  996. $provider = $this->getProvider('jinxin', 'RefillCallBack');
  997. $ret = $provider->verify($params);
  998. $resp = $provider->notify($params);
  999. }
  1000. public function testKachong()
  1001. {
  1002. // $provider = $this->getProvider('kachong');
  1003. // $resp = $provider->balance();
  1004. // $resp = $provider->add(18500608333, 5, 20, ['order_sn' => $this->make_sn()]);
  1005. // $resp = $provider->query(['order_sn' => '30691632889605245135']);
  1006. $body = '{"szAgentId":"200046","szOrderId":"30691632889605245135","szPhoneNum":"18500608333","nDemo":"20","fSalePrice":"19.82","nFlag":"2","szVerifyString":"dbac0df5e9ff2b067f74850f0cf55f3c","szRtnMsg":"982100337029603"}';
  1007. $params = json_decode($body, true);
  1008. $provider = $this->getProvider('kachong', 'RefillCallBack');
  1009. $ret = $provider->verify($params);
  1010. $resp = $provider->notify($params);
  1011. }
  1012. public function testXingzyNormal()
  1013. {
  1014. // $provider = $this->getProvider('xingzy_normal');
  1015. // $resp = $provider->balance();
  1016. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1017. // $resp = $provider->query(['order_sn' => '62881632898853651364']);
  1018. $body = '{"access_key":"211394711","code":3,"data":{"sellprice":28.65,"phone":"18500608333","pass":null,"official_id":null,"official_ch":null},"orderid":210929150115656000,"out_trade_no":"62881632898853651364","sign":"qIkEYEougSzg3EImlHTJKBHv4OQ=","timestamp":1632898943485}';
  1019. $params = json_decode($body, true);
  1020. $provider = $this->getProvider('xingzy_normal', 'RefillCallBack');
  1021. $ret = $provider->verify($params);
  1022. $resp = $provider->notify($params);
  1023. }
  1024. public function testDingxin()
  1025. {
  1026. $provider = $this->getProvider('dingxin');
  1027. $resp = $provider->balance();
  1028. }
  1029. public function testPushang()
  1030. {
  1031. $provider = $this->getProvider('pushang');
  1032. // $resp = $provider->balance();
  1033. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1034. $resp = $provider->query(['order_sn' => '23391632986567769626']);
  1035. // $body = '{"msg":"\u8d26\u52a1\u6263\u6b3e\u5931\u8d25","extOrderId":"22081632982700152800","orderId":"R2021093014240000154555","salePrice":"30.0900","sign":"b0fe238f16e516316729589d42ab97b1","state":"5","exchangeTraded":""}';
  1036. // $params = json_decode($body, true);
  1037. // $provider = $this->getProvider('pushang','RefillCallBack');
  1038. // $ret = $provider->verify($params);
  1039. // $resp = $provider->notify($params);
  1040. }
  1041. public function testDinghui()
  1042. {
  1043. // $providers = $this->getProvider('dinghui');
  1044. // $resp = $providers->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1045. // $resp = $providers->query(['order_sn' => '84891634279500368841']);
  1046. // $body = '{"method":"order.charge.status.update.notify","format":"json","sign":"26f66f194771ca278f39fa9c9c53222f6347abbe79a8a1c8987342116c5eec9f5737e387630e82f024663ec0b82a2cfd1f2da4731aac118ecacf700c110b865166b1dd20d7225b52aee37d91ce12f534c5d480da843d0b824d165d7bba90cb63a9556d4395b59492a25ee97a3ca099d12bc3b7366f6c2d832f02306615baf5cda391b91c1c2cbe8935e2dfbc7b648c747cbfbd8d4767f0dc7582f558607fe821b12ff607dcfbbc14bbac1064f15d36fd741503287e8075fd7b7106bffaccaf2173740a51838419c24bd61bc8cde53d336972f2c8ff3d526542139271da9c7b95247db886feb22e74cefcc82ae0d2ff228343759d2fc51e986f09a61716f1833e","message":"5l8ZOxxDVYYDNBWWJ06QDGbbsMPeV5eLpb\/gmCweXM\/BR1l+I09T73OvhPsA8ujFLw4oReK7P+z\/DTU2tFn83I+6YU4QgTiLVp3tW\/kKaKmUhTB+BQZhnVk39wHZD4BBeDlTlAkmU6mskB8MCO9xG5W11vhrSn16ssG6CFEYcpkvDihF4rs\/7P8NNTa0Wfzc78MrVtylby5Lw8MIrIbtfr62lBQ9jUm2lMFeQVBUZ9GUhTB+BQZhnVk39wHZD4BBNoOYx9z9iwfCLYmU0ili4A==","msgtype":"notify_msg","version":"V2.0","app_id":"yeziapi","notify_id":"0000017c78f9c8190130d3298000000a","timestamp":"1634117208089"}';
  1047. // $params = json_decode($body, true);
  1048. $params['method'] = 'order.charge.status.update.notify';
  1049. $params['format'] = 'json';
  1050. $params['sign'] = '60d4e658cb730b9d8cc0c451414de9b51b79d14fa217261f7bbcf4a3472553b093a5c2377abba9573ed9d5e1a39a9f693830671ff1e641cc97a9782d2b2f393bed6a7bd22be0c642a13e20a7c6cf9f562c11ae65335758bd58ee55853b555cc2e511b6655c6e944a9defa6f0247263578d1554ff7709a7ced90db93911562dcb485518a4da3c21cb650ff01cacfcfa8dd9de533f5a5be2accc065e23cbd38b1b104e15feb3ce823c8cb7c7d5adf3fef0be768d8c25dc813a9112a14ec54a9e2ee517a5ba5b9ce2234dd4329b61c5456a82405aa6d2a307b4ec04be52bd1e3e5b204a2a4d7899d6fbf0fc09cd443cddc947f02bf58730142e9edc2b98eeeae086';
  1051. $params['message'] = 'GYmjEFMoy5jUfg/Ju7NRCSyaoyg2fu9EWpABAHb55xKpkvIedqXPDqRwG6Lo7iNx0A2yc6/IaU7vqwNV9YEVZOwHBDtsGXuHK1GCq5KUaW70pq1wEKr6kgjAHDITH7XdB3jmdSAQFhQYTi5hCz5EWWAzRKLYgTZeDksePKshm67QDbJzr8hpTu+rA1X1gRVkVqAL750crFPclgeWEYFG4mO4ZlmqygUrgz4si+seZ3f0pq1wEKr6kgjAHDITH7XdkFLNHratZfufbZKIZ5r+CA==';
  1052. $params['msgtype'] = 'notify_msg';
  1053. $params['version'] = 'V2.0';
  1054. $params['app_id'] = 'yeziapi';
  1055. $params['notify_id'] = '0000017c83f4786201547473800e31ee';
  1056. $params['timestamp'] = '1634301409378';
  1057. $providers = $this->getProvider('dinghui', 'RefillCallBack');
  1058. $ret = $providers->verify($params);
  1059. $resp = $providers->notify($params);
  1060. }
  1061. public function testHuafutong()
  1062. {
  1063. // $provider = $this->getProvider('huafutong');
  1064. // $resp = $provider->balance();
  1065. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1066. // $resp = $provider->query(['order_sn' => '48151634200413207059']);
  1067. $body = '{"PostData":"MJ88hD85bb2VPjI+q9R64jrR2TnZQSUn+4PHZCz1of27YQswyLKdNoNyyNuVEd2+98raKRC0pD+KFQf6beJn5mgOe+u9JjTtqxM5VcVYX93DQACU1ZdfJ+rSx5WRMwvi"}';
  1068. $params = json_decode($body, true);
  1069. $provider = $this->getProvider('huafutong', 'RefillCallBack');
  1070. $data = $provider->notify($params);
  1071. }
  1072. public function testShuoruan()
  1073. {
  1074. $provider = $this->getProvider('shuoruan');
  1075. // $resp = $provider->balance();
  1076. $resp = $provider->add(13911129867, 5, 10, ['order_sn' => $this->make_sn()]);
  1077. // $resp = $provider->query(['order_sn' => '80261634802627091026']);
  1078. $params['Action'] = 'CX';
  1079. $params['AgentAccount'] = '18600608333';
  1080. $params['Agentbalance'] = '-9.970';
  1081. $params['Orderid'] = '80261634802627091026';
  1082. $params['Chargeid'] = '2162076796';
  1083. $params['Orderstatu_int'] = '16';
  1084. $params['Orderstatu_text'] = '缴费成功_';
  1085. $params['TransCash'] = '10.000';
  1086. $params['OrderPayment'] = '9.970';
  1087. $params['Errorcode'] = '0000';
  1088. $params['Errormsg'] = '';
  1089. $params['Sign'] = '654fbc24c3d0878247bc3be3ed699f16';
  1090. $provider = $this->getProvider('shuoruan', 'RefillCallBack');
  1091. // $ret = $provider->verify($params);
  1092. // $data = $provider->notify($params);
  1093. }
  1094. public function testLinzhu()
  1095. {
  1096. // $provider = $this->getProvider('linzhu');
  1097. // $resp = $provider->balance();
  1098. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1099. // $resp = $provider->query(['order_sn' => '43881634986696312260']);
  1100. $body = '{"orderNo":"F2110231858443112627","status":"019","consumerNo":"43881634986696312260","voucherNo":null,"mobile":"18500608333"}';
  1101. $params = json_decode($body, true);
  1102. $provider = $this->getProvider('linzhu', 'RefillCallBack');
  1103. $ret = $provider->verify($params);
  1104. $data = $provider->notify($params);
  1105. }
  1106. public function testFangxing()
  1107. {
  1108. $provider = $this->getProvider('fangxing');
  1109. // $resp = $provider->balance();
  1110. // $resp = $provider->add(13898167806, 4, 10, ['order_sn' => $this->make_sn(), 'order_id' => 111111]);
  1111. $resp = $provider->query(['order_sn' => '82581635239506988570']);
  1112. $body = '{"orderId":"O21102617115969210570","respCode":"10003","respMsg":"\u6210\u529f \u5bf9\u7aef\u6d41\u6c34\u53f7: 21102617611981771","sign":"013F54D5E415668D3E012BBDE9E4BF16","transNo":"82581635239506988570"}';
  1113. $params = json_decode($body, true);
  1114. $provider = $this->getProvider('fangxing', 'RefillCallBack');
  1115. $ret = $provider->verify($params);
  1116. $data = $provider->notify($params);
  1117. }
  1118. public function testHuafutongMan()
  1119. {
  1120. // $provider = $this->getProvider('huafutongman');
  1121. // $resp = $provider->balance();
  1122. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  1123. // $resp = $provider->query(['order_sn' => '73721635476007331621']);
  1124. $body = '{"PostData":"1Gi96e4PzohQIdxj8W4uOH4Q5pzT8ZHyCc+ZpTl7XEEF5TPgXffD32KLy0l2fZ7X36qZTO4JJA\/4nhWJRERklMy1FQuan825KK5vy2zQ6FOxg8vXMy0e7HOVg0kx123i"}';
  1125. $params = json_decode($body, true);
  1126. $provider = $this->getProvider('huafutongman', 'RefillCallBack');
  1127. $data = $provider->notify($params);
  1128. }
  1129. public function testFeimingyu()
  1130. {
  1131. // $provider = $this->getProvider('feimingyu');
  1132. // $resp = $provider->balance();
  1133. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1134. // $resp = $provider->query(['order_sn' => '99741635757876781160']);
  1135. $body = '{"userid":"69876","order_id":"21110117111869876daed6b187","account":"18500608333","amount":"30","price":"28.41","state":"failed","user_order":"99741635757876781160","sign":"C82F4821547BBFC462E9758EE28287E1","voucher":""}';
  1136. $params = json_decode($body, true);
  1137. $provider = $this->getProvider('feimingyu', 'RefillCallBack');
  1138. $ret = $provider->verify($params);
  1139. $resp = $provider->notify($params);
  1140. }
  1141. public function testDashangnormal()
  1142. {
  1143. // $provider = $this->getProvider('dashang_normal');
  1144. // $resp = $provider->balance();
  1145. // $resp = $provider->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  1146. // $resp = $provider->query(['order_sn' => '34461636081408575185']);
  1147. $body = '{"userId":"80800357","bizId":"60040030","ejId":"91105110431325","downstreamSerialno":"34461636081408575185","status":"3","voucher":"","voucherType":"0","sign":"24a40c2b677820533e418d4a2b3f0806"}';
  1148. $params = json_decode($body, true);
  1149. $provider = $this->getProvider('dashang_normal', 'RefillCallBack');
  1150. $ret = $provider->verify($params);
  1151. $resp = $provider->notify($params);
  1152. }
  1153. public function testHuafutong_doubi()
  1154. {
  1155. $provider = $this->getProvider('huafutong_doubi');
  1156. // $resp = $provider->balance();
  1157. $resp = $provider->add(588073521, 7, 100, [
  1158. 'order_sn' => $this->make_sn(),
  1159. 'product_code' => 'XYZ100747'
  1160. ]);
  1161. // $resp = $provider->query(['order_sn' => '53151629791019902609']);
  1162. // $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"}';
  1163. // $params = json_decode($body, true);
  1164. // $provider = $this->getProvider('huafutong_doubi','RefillCallBack');
  1165. // $ret = $provider->verify($params);
  1166. // $resp = $provider->notify($params);
  1167. }
  1168. public function testYunchonggongfs()
  1169. {
  1170. // $provider = $this->getProvider('yunchonggongfs');
  1171. // $resp = $provider->balance();
  1172. // $resp = $provider->add(13935705732, 4, 30, ['order_sn' => $this->make_sn(), 'regin_no' => 4]);
  1173. // $resp = $provider->query(['order_sn' => '44721636430254462028']);
  1174. $body = '{"orderId":"211109115744298048","appId":"Z1sU5unYK7","outOrderId":"44721636430254462028","sign":"a368d3f6a8c2ec2d2dbd587f9a78a937","orderStatus":"3","completeTime":"20211109115840","orderDesc":"timeout"}';
  1175. $params = json_decode($body, true);
  1176. $provider = $this->getProvider('yunchonggongfs', 'RefillCallBack');
  1177. $ret = $provider->verify($params);
  1178. $resp = $provider->notify($params);
  1179. }
  1180. public function testDingchi()
  1181. {
  1182. // $provider = $this->getProvider('dingchi');
  1183. // $resp = $provider->balance();
  1184. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1185. // $resp = $provider->query(['order_sn' => '70651636508446628072']);
  1186. $body = '{"userId":"671","bizId":"200","id":"32894267","downstreamSerialno":"70651636508446628072","status":"2","statusDesc":"","extend":"100101101002111100940543157996","sign":"984c4708c14d0c2e08295c5010109ecf"}';
  1187. $params = json_decode($body, true);
  1188. $provider = $this->getProvider('dingchi', 'RefillCallBack');
  1189. $ret = $provider->verify($params);
  1190. $resp = $provider->notify($params);
  1191. }
  1192. public function testYanhao()
  1193. {
  1194. // $provider = $this->getProvider('yanhao');
  1195. // $resp = $provider->balance();
  1196. // $resp = $provider->add(2423503330, 5, 30, ['order_sn' => $this->make_sn()]);
  1197. // $resp = $provider->query(['order_sn' => '49571636609949577130']);
  1198. $body = '{"Account":"2423503330","ProductNumber":"PLM100020","Count":"1","UserOrderId":"49571636609949577130","OutOrderID":"211111135254371000","Status":"2","UserId":"211394995","TimesTamp":"1636610036767","Sign":"096017A3D80B998DC2AFA16779E09F9F","Extend":"{\"OfficialDes\":null,\"OfficialOrderID\":null}","ChargeMsg":""}';
  1199. $params = json_decode($body, true);
  1200. $provider = $this->getProvider('yanhao', 'RefillCallBack');
  1201. $ret = $provider->verify($params);
  1202. $resp = $provider->notify($params);
  1203. }
  1204. public function testYikatongfs()
  1205. {
  1206. $provider = $this->getProvider('yikatongfs');
  1207. // $resp = $provider->balance();
  1208. // $resp = $provider->add(13935705732, 5, 30, ['order_sn' => $this->make_sn()]);
  1209. $resp = $provider->query(['order_sn' => '30551636705402587123']);
  1210. // $body = '{"userid":"921416e51e434e0f94fa","ordernum":"34051636704939956177","mobile":"13935705732","timestamp":"20211112161545","state":"3","desc":"%E5%85%85%E5%80%BC%E5%A4%B1%E8%B4%A5%21","sign":"37cc198c1315c0a334f8c983f8dbec8a"}';
  1211. // $params = json_decode($body, true);
  1212. // $provider = $this->getProvider('yikatongfs','RefillCallBack');
  1213. // $ret = $provider->verify($params);
  1214. // $resp = $provider->notify($params);
  1215. }
  1216. public function testLexiangLt()
  1217. {
  1218. // $provider = $this->getProvider('lexianglt');
  1219. // $resp = $provider->balance();
  1220. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1221. // $resp = $provider->query(['order_sn' => '48911637136021090867']);
  1222. $body = '{"PostData":"405deLsCOS2UNQTOH\/M+3IWDDMm841EhhBwTgdasFvVqqVS3RHA6YdIzxAS2g8PIjmie1mOw+aNzXZ\/8rVR8lQTjoaeOCkE04cTc07JvDe1IDtvO2e66u+zzO+x0MUfU"}';
  1223. $params = json_decode($body, true);
  1224. $provider = $this->getProvider('lexianglt', 'RefillCallBack');
  1225. $ret = $provider->verify($params);
  1226. $resp = $provider->notify($params);
  1227. }
  1228. public function testXiaoniu_doubi()
  1229. {
  1230. // $provider = $this->getProvider('xiaoniu_doubi');
  1231. // $resp = $provider->balance();
  1232. // $resp = $provider->add(61841435, 7, 100, ['order_sn' => $this->make_sn(), 'product_code' => 'XYZ100747']);
  1233. // $resp = $provider->query(['order_sn' => '22971637223235623767']);
  1234. $body = '{"content":"","realAmt":"92.0000","status":"1","timestamp":"20211118161507","sign":"28598a6c4674294aecb0337ef20b4e02","orderNo":"XN20211118161400122361716","mOrderNo":"22971637223235623767"}';
  1235. $params = json_decode($body, true);
  1236. $provider = $this->getProvider('xiaoniu_doubi', 'RefillCallBack');
  1237. $ret = $provider->verify($params);
  1238. $resp = $provider->notify($params);
  1239. }
  1240. public function testGuantu()
  1241. {
  1242. $provider = $this->getProvider('guantu');
  1243. // $resp = $provider->balance();
  1244. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1245. $resp = $provider->query(['order_sn' => '82321639620607197216']);
  1246. // $body = '{"orderId":"211207110843025294","appId":"sprTIuIsst","outOrderId":"86151638846512034929","sign":"a94dc11a88831c4cc9cf79cd2dc4b60c","orderStatus":"3","completeTime":"20211207110903","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1247. // $params = json_decode($body, true);
  1248. // $provider = $this->getProvider('guantu','RefillCallBack');
  1249. // $ret = $provider->verify($params);
  1250. // $resp = $provider->notify($params);
  1251. }
  1252. public function testYiqian()
  1253. {
  1254. $provider = $this->getProvider('yiqian');
  1255. // $resp = $provider->balance();
  1256. // $resp = $provider->add(185001234561608333, 5, 10, ['order_sn' => $this->make_sn()]);
  1257. $resp = $provider->query(['order_sn' => '58661639626089905328']);
  1258. // $body = '{"extOrderId":"12871637568430713782","orderId":"R2021112216240026238817","salePrice":"9.9950","sign":"b42f61bfb59f9f36c26c68e4f37f5a19","state":"4","exchangeTraded":"110103308002111221607170298685"}';
  1259. // $params = json_decode($body, true);
  1260. // $provider = $this->getProvider('yiqian','RefillCallBack');
  1261. // $ret = $provider->verify($params);
  1262. // $resp = $provider->notify($params);
  1263. }
  1264. public function testYinghuochong()
  1265. {
  1266. // $provider = $this->getProvider('yinghuochong');
  1267. // $resp = $provider->balance();
  1268. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1269. // $resp = $provider->query(['order_sn' => '14911637655330156024']);
  1270. $body = '{"times":"20211123161536","orderId":"2021112316151926232932","voucher":"","customerOrderId":"14911637655330156024","qyKey":"qhsvsyvj9rsekyvadlctr1ptx135fb3t","sign":"15D3272BE7BB7B038EEC9EA344C86567","status":"2"}';
  1271. $params = json_decode($body, true);
  1272. $provider = $this->getProvider('yinghuochong', 'RefillCallBack');
  1273. $ret = $provider->verify($params);
  1274. $resp = $provider->notify($params);
  1275. }
  1276. public function testMeixu()
  1277. {
  1278. // $provider = $this->getProvider('meixu');
  1279. // $resp = $provider->balance();
  1280. // $resp = $provider->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  1281. // $resp = $provider->query(['order_sn' => '89361637662404606711']);
  1282. $body = '{"orderid":"XOJ21112318130505847","sporderid":"89361637662404606711","userid":"10003105","merchantsubmittime":"20211123181328","resultno":"9","parvalue":"10","remark1":"","payno":"","fundbalance":"-10.02","sign":"634194D21B034356F32C5A9FB045F23F"}';
  1283. $params = json_decode($body, true);
  1284. $provider = $this->getProvider('meixu', 'RefillCallBack');
  1285. $ret = $provider->verify($params);
  1286. $resp = $provider->notify($params);
  1287. }
  1288. public function testFuyuan()
  1289. {
  1290. // $provider = $this->getProvider('fuyuan');
  1291. // $resp = $provider->balance();
  1292. // $resp = $provider->add(13699279618, 4, 10, ['order_sn' => $this->make_sn()]);
  1293. // $resp = $provider->query(['order_sn' => '60431637736327027514']);
  1294. $body = '{"agentid":"100354","mobile_num":"13699279618","charge_time":"20211124","operator":"\u79fb\u52a8","fy_order_no":"333876728","cp_order_no":"60431637736327027514","amount":"10","status":"3","sign":"3a271b104cb0c9d6d157e75e538c6b11","remark":"\u5145\u503c\u6210\u529f","flowNo":""}';
  1295. $params = json_decode($body, true);
  1296. $provider = $this->getProvider('fuyuan', 'RefillCallBack');
  1297. $ret = $provider->verify($params);
  1298. $resp = $provider->notify($params);
  1299. }
  1300. public function testDongye()
  1301. {
  1302. $provider = $this->getProvider('dongye');
  1303. // $resp = $provider->balance();
  1304. $resp = $provider->add(15139608757, 4, 10, ['order_sn' => $this->make_sn()]);
  1305. // $resp = $provider->query(['order_sn' => '94031638352288398624']);
  1306. // $body = '{"orderid":"NYG21113016502782946","sporderid":"33391638262247818098","userid":"10003105","merchantsubmittime":"20211130165104","resultno":"1","parvalue":"30","remark1":"100101101012111301651024042626","payno":"100101101012111301651024042626","fundbalance":"-30.075","sign":"4075B5A1D2639B19B91AC2FF45B5CFFE"}';
  1307. // $params = json_decode($body, true);
  1308. // $provider = $this->getProvider('dongye','RefillCallBack');
  1309. // $ret = $provider->verify($params);
  1310. // $resp = $provider->notify($params);
  1311. }
  1312. public function testDongyefs()
  1313. {
  1314. $provider = $this->getProvider('dongyefs');
  1315. // $resp = $provider->balance();
  1316. // [$goods_id, $price] = $provider->goods(1, 10, 4, 6, []);
  1317. // $resp = $provider->add(13898167806, 4, 10, ['order_sn' => $this->make_sn(),'regin_no' => 6]);
  1318. $resp = $provider->query(['order_sn' => '24461638757715661527']);
  1319. }
  1320. public function testBaixuan()
  1321. {
  1322. // $provider = $this->getProvider('baixuan');
  1323. // $resp = $provider->balance();
  1324. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1325. // $resp = $provider->query(['order_sn' => '22241638773647636323']);
  1326. $body = '{"orderId":"211206145422241449","appId":"Hs2pvfcPTK","outOrderId":"22241638773647636323","sign":"acdd4cdbf6c9ad8d1eec12070caef9c7","orderStatus":"3","completeTime":"20211206145422","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1327. $params = json_decode($body, true);
  1328. $provider = $this->getProvider('baixuan', 'RefillCallBack');
  1329. $ret = $provider->verify($params);
  1330. $resp = $provider->notify($params);
  1331. }
  1332. public function testBaixuan_normal()
  1333. {
  1334. // $provider = $this->getProvider('baixuan_normal');
  1335. // $resp = $provider->balance();
  1336. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1337. // $resp = $provider->query(['order_sn' => '79931638775980503797']);
  1338. $body = '{"orderId":"211206153306269670","appId":"ntzRlj2kNV","outOrderId":"79931638775980503797","sign":"f67939b937f818e97c551e76b4b4e5ea","orderStatus":"3","completeTime":"20211206153309","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1339. $params = json_decode($body, true);
  1340. $provider = $this->getProvider('baixuan_normal', 'RefillCallBack');
  1341. $ret = $provider->verify($params);
  1342. $resp = $provider->notify($params);
  1343. }
  1344. public function testCangbuYd()
  1345. {
  1346. // $provider = $this->getProvider('cangbuyd');
  1347. // $resp = $provider->balance();
  1348. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1349. // $resp = $provider->query(['order_sn' => '12441638778449837197']);
  1350. $body = '{"customerId":"220","tmporder":"12441638778449837197","orderno":"s16387784558073061114220","number":"13699279618","money":"50","amount":"47.9500","code":"-1","cardno":"","voucher":"","sign":"6623dbe8e392b61ddc843e16804e9eed"}';
  1351. $params = json_decode($body, true);
  1352. $provider = $this->getProvider('cangbuyd', 'RefillCallBack');
  1353. $ret = $provider->verify($params);
  1354. $resp = $provider->notify($params);
  1355. }
  1356. public function testShangtou()
  1357. {
  1358. // $provider = $this->getProvider('shangtou');
  1359. // $resp = $provider->balance();
  1360. // $resp = $provider->add(1004638637, 4, 100, ['order_sn' => $this->make_sn()]);
  1361. // $resp = $provider->query(['order_sn' => '88791638870099595473']);
  1362. $body = '{"order_id":"88791638870099595473","out_order_id":"EZZbg23f4K487498","orderBillNo":"","mchid":"20126","account":"1004638637","price":"100","status":"1","sign":"87c3fc2beaabb107ef80c06dd186742f"}';
  1363. $params = json_decode($body, true);
  1364. $provider = $this->getProvider('shangtou', 'RefillCallBack');
  1365. $ret = $provider->verify($params);
  1366. $resp = $provider->notify($params);
  1367. }
  1368. public function testGuantufs()
  1369. {
  1370. $provider = $this->getProvider('guantufs');
  1371. // $resp = $provider->balance();
  1372. $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1373. // $resp = $provider->query(['order_sn' => '88791638870099595473']);
  1374. }
  1375. public function testRuixunda()
  1376. {
  1377. // $provider = $this->getProvider('ruixunda');
  1378. // $resp = $provider->balance();
  1379. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1380. // $resp = $provider->query(['order_sn' => '77251661569789921261']);
  1381. $body = '{"orderid":"LRF22082711096411807","sporderid":"77251661569789921261","userid":"10002506","merchantsubmittime":"20220827110959","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-21500.17","sign":"34DD64D730CC71BD74A64A86FF623754"}';
  1382. $params = json_decode($body, true);
  1383. $provider = $this->getProvider('ruixunda', 'RefillCallBack');
  1384. $ret = $provider->verify($params);
  1385. $resp = $provider->notify($params);
  1386. }
  1387. public function testDashang_kami()
  1388. {
  1389. $provider = $this->getProvider('dashang_kami');
  1390. $resp = $provider->balance();
  1391. }
  1392. public function testWenye_oil()
  1393. {
  1394. $provider = $this->getProvider('wenye_oil', 'RefillOil');
  1395. $resp = $provider->add(1000111100021211884, 2, 100, ['order_sn' => $this->make_sn()]);
  1396. }
  1397. public function testYunlingdf()
  1398. {
  1399. $provider = $this->getProvider('yunlingdf');
  1400. // $resp = $provider->balance();
  1401. $resp = $provider->add(2079727198, 7, 100, [
  1402. 'order_sn' => $this->make_sn(), 'company_type' => 'nation', 'use_type' => 'home',
  1403. 'province' => 18, 'city' => '永州市', 'product_code' => 'DF_nation_home_100'
  1404. ]);
  1405. // $resp = $provider->query(['order_sn' => '45331652932902024418']);
  1406. // $body = ' {"orderid":"JDE22051911549026252","sporderid":"26641652932472092667","userid":"10002623","merchantsubmittime":"20220519115448","resultno":"9","parvalue":"100","remark1":"","payno":"","fundbalance":"-140.5","sign":"1EC1F9730A66ED23B68B89DD7CA4EB15"}';
  1407. // $params = json_decode($body, true);
  1408. // $provider = $this->getProvider('yunlingdf', 'RefillCallBack');
  1409. // $ret = $provider->verify($params);
  1410. // $resp = $provider->notify($params);
  1411. }
  1412. public function testYamiao_high()
  1413. {
  1414. $provider = $this->getProvider('yamiao_high');
  1415. $resp = $provider->balance();
  1416. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1417. // $resp = $provider->query(['order_sn' => '63301640162626708212']);
  1418. // $body = '{"orderId":"211222164353000006","appId":"piFzrSOCIy","outOrderId":"63301640162626708212","sign":"558e9992d99fb5e9dd47b1f5a7677b01","orderStatus":"3","completeTime":"20211222164445","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1419. // $params = json_decode($body, true);
  1420. // $provider = $this->getProvider('yamiao_high','RefillCallBack');
  1421. // $ret = $provider->verify($params);
  1422. // $resp = $provider->notify($params);
  1423. }
  1424. public function testYamiao_normal()
  1425. {
  1426. $provider = $this->getProvider('yamiao_normal');
  1427. $resp = $provider->balance();
  1428. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1429. // $resp = $provider->query(['order_sn' => '95951640223816352024']);
  1430. // $body = '{"orderId":"211223094402000046","appId":"1pjrA9YErq","outOrderId":"95951640223816352024","sign":"5bd7135f5ef35c8f111eddfc06593941","orderStatus":"3","completeTime":"20211223094512","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1431. // $params = json_decode($body, true);
  1432. // $provider = $this->getProvider('yamiao_normal','RefillCallBack');
  1433. // $ret = $provider->verify($params);
  1434. // $resp = $provider->notify($params);
  1435. }
  1436. public function testJiyemei_doubi()
  1437. {
  1438. $provider = $this->getProvider('jiyemei_doubi');
  1439. // $resp = $provider->balance();
  1440. $resp = $provider->add(588073521, mtopcard\ThirdRefillCard, 50, ['order_sn' => $this->make_sn(), 'product_code' => 'XYZ100753']);
  1441. // $resp = $provider->query(['order_sn' => '87081640849391308752']);
  1442. // $body ='{"userid":"da5fe7253b97460fb84d","ordernum":"87081640849391308752","mobile":"588073521","timestamp":"20211230153015","state":"2","desc":"%E5%85%85%E5%80%BC%E6%88%90%E5%8A%9F","serialno":"10000017047394231199159327","sign":"0feea71ea06c91bf67c6d866c050ca88"}';
  1443. // $params = json_decode($body, true);
  1444. // $provider = $this->getProvider('jiyemei_doubi','RefillCallBack');
  1445. // $ret = $provider->verify($params);
  1446. // $resp = $provider->notify($params);
  1447. }
  1448. public function testJiyemei()
  1449. {
  1450. // $provider = $this->getProvider('jiyemei');
  1451. // $resp = $provider->balance();
  1452. // $resp = $provider->add(13699279618, mtopcard\ChinaMobileCard, 50, ['order_sn' => $this->make_sn()]);
  1453. // $resp = $provider->query(['order_sn' => '22041640934793168827']);
  1454. $body = '{"userid":"80dfaeabbb7240268ac8","ordernum":"22041640934793168827","mobile":"13699279618","timestamp":"20211231151434","state":"3","desc":"%E5%85%85%E5%80%BC%E5%A4%B1%E8%B4%A5%21","sign":"4415ebb690da66aa8c0cf58a7130f1a5"}';
  1455. $params = json_decode($body, true);
  1456. $provider = $this->getProvider('jiyemei', 'RefillCallBack');
  1457. $ret = $provider->verify($params);
  1458. $resp = $provider->notify($params);
  1459. }
  1460. public function testCangxin()
  1461. {
  1462. $provider = $this->getProvider('cangxin');
  1463. // $resp = $provider->balance();
  1464. // $resp = $provider->add(13699279618, mtopcard\ChinaMobileCard, 100, ['order_sn' => $this->make_sn()]);
  1465. $resp = $provider->query(['order_sn' => '7388320697632252006499']);
  1466. // $body = '{"sysOrderNo":"R16409227448286K55VRJ","clientId":"10025","verifyString":"557363563501c97e9aa2f5cecc0b3679","clientOrderNo":"66891640922736203952","status":"3"}';
  1467. // $params = json_decode($body, true);
  1468. // $provider = $this->getProvider('cangxin','RefillCallBack');
  1469. // $ret = $provider->verify($params);
  1470. // $resp = $provider->notify($params);
  1471. }
  1472. public function testBaixuannew_high()
  1473. {
  1474. // $provider = $this->getProvider('baixuannew_high');
  1475. // $resp = $provider->balance();
  1476. // $resp = $provider->add(13699279618, mtopcard\ChinaMobileCard, 50, ['order_sn' => $this->make_sn()]);
  1477. // $resp = $provider->query(['order_sn' => '24051641457089799916']);
  1478. $body = '{"orderid":"PLN22010616189234154","sporderid":"24051641457089799916","userid":"10002504","merchantsubmittime":"20220106162023","resultno":"9","parvalue":"50","remark1":"","payno":"","fundbalance":"-48.1","sign":"0279426E9CCEF5366B422D44DB5976C1"}';
  1479. $params = json_decode($body, true);
  1480. $provider = $this->getProvider('baixuannew_high', 'RefillCallBack');
  1481. $ret = $provider->verify($params);
  1482. $resp = $provider->notify($params);
  1483. }
  1484. public function testYouhenew()
  1485. {
  1486. // $provider = $this->getProvider('youhenew');
  1487. // $resp = $provider->balance();
  1488. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1489. // $resp = $provider->query(['order_sn' => '77201646366493835757']);
  1490. $body = '{"szOrderId":"77201646366493835757","fSalePrice":"28.59","szAgentId":"200038","nFlag":"3","szVerifyString":"bdaa73499a506839654d4b9c36c6831a","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"30"}';
  1491. $params = json_decode($body, true);
  1492. $provider = $this->getProvider('youhenew', 'RefillCallBack');
  1493. $ret = $provider->verify($params);
  1494. $resp = $provider->notify($params);
  1495. }
  1496. public function testHuoshenguo()
  1497. {
  1498. // $provider = $this->getProvider('huoshenguo');
  1499. // $resp = $provider->balance();
  1500. // $resp = $provider->add(13699279618, mtopcard\ChinaMobileCard, 50, ['order_sn' => $this->make_sn()]);
  1501. // $resp = $provider->query(['order_sn' => '90691642049771400349']);
  1502. $body = '{"orderId":"220113125625000016","appId":"xaPOF8SAEG","outOrderId":"90691642049771400349","sign":"b00285a7eabef29b0a0ad400ce8a3ea0","orderStatus":"3","completeTime":"20220113125843","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1503. $params = json_decode($body, true);
  1504. $provider = $this->getProvider('huoshenguo', 'RefillCallBack');
  1505. $ret = $provider->verify($params);
  1506. $resp = $provider->notify($params);
  1507. }
  1508. public function testXinhengyangnew()
  1509. {
  1510. // $provider = $this->getProvider('xinhengyangnew');
  1511. // $resp = $provider->balance();
  1512. // $resp = $provider->add(13699279618, mtopcard\ChinaMobileCard, 30, ['order_sn' => $this->make_sn()]);
  1513. // $resp = $provider->query(['order_sn' => '90991642572014786398']);
  1514. $body = '{"mchid":"200050","msg":"充值失败","oid":"1000325764014","orderid":"90991642572014786398","price":28.62,"sign":"56db7e6a4748a74bd1fac1a1ad5e8d6d","status":2,"voucher":""}';
  1515. $params = json_decode($body, true);
  1516. $provider = $this->getProvider('xinhengyangnew', 'RefillCallBack');
  1517. $ret = $provider->verify($params);
  1518. $resp = $provider->notify($params);
  1519. }
  1520. public function testTianchen()
  1521. {
  1522. // $provider = $this->getProvider('tianchen');
  1523. // $resp = $provider->balance();
  1524. // $resp = $provider->add(18500608333, mtopcard\ChinaUnicomCard, 500, ['order_sn' => $this->make_sn()]);
  1525. // $resp = $provider->query(['order_sn' => '60701644202744810497']);
  1526. $body = '{"mchid":"100125","msg":"充值失败","oid":"1000061410881","orderid":"60701644202744810497","price":"501.000","sign":"5dc1f9e466f30f02f2756c886ad36020","status":"2","voucher":""}';
  1527. $params = json_decode($body, true);
  1528. $provider = $this->getProvider('tianchen', 'RefillCallBack');
  1529. $ret = $provider->verify($params);
  1530. $resp = $provider->notify($params);
  1531. }
  1532. public function testYunchonggong_lt()
  1533. {
  1534. // $provider = $this->getProvider('yunchonggong_lt');
  1535. // $resp = $provider->balance();
  1536. // $resp = $provider->add(18500608333, mtopcard\ChinaUnicomCard, 50, ['order_sn' => $this->make_sn()]);
  1537. // $resp = $provider->query(['order_sn' => '97971642992760355090']);
  1538. $body = '{"orderId":"220124105256190713","appId":"nOlXoN2jRJ","outOrderId":"97971642992760355090","sign":"81a579f8c935da72fe94ca0960d0a71f","orderStatus":"3","completeTime":"20220124105547","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1539. $params = json_decode($body, true);
  1540. $provider = $this->getProvider('yunchonggong_lt', 'RefillCallBack');
  1541. $ret = $provider->verify($params);
  1542. $resp = $provider->notify($params);
  1543. }
  1544. public function testYiqianfs()
  1545. {
  1546. // $provider = $this->getProvider('yiqianfs');
  1547. // $resp = $provider->balance();
  1548. // $resp = $provider->add(13699279618, 4, 10, ['order_sn' => $this->make_sn()]);
  1549. // $resp = $provider->query(['order_sn' => '68971644218662333282']);
  1550. $body = '{"extOrderId":"68971644218662333282","orderId":"R2022020715240046789583","salePrice":"10.0000","sign":"cf59a3d76377cac096ac07c590657af0","state":"5"}';
  1551. $params = json_decode($body, true);
  1552. $provider = $this->getProvider('yiqianfs','RefillCallBack');
  1553. $ret = $provider->verify($params);
  1554. $resp = $provider->notify($params);
  1555. }
  1556. public function testZhutian()
  1557. {
  1558. $provider = $this->getProvider('zhutian');
  1559. // $resp = $provider->add(1004638637, 4, 50, ['order_sn' => $this->make_sn(), 'province' => 1]);
  1560. $resp = $provider->query(['order_sn' => '20661644895674724153']);
  1561. }
  1562. public function testRuizhi()
  1563. {
  1564. // $provider = $this->getProvider('ruizhi');
  1565. // $resp = $provider->balance();
  1566. // $resp = $provider->add(13699279618, 4, 100, ['order_sn' => $this->make_sn()]);
  1567. // $resp = $provider->query(['order_sn' => '66031645157064675953']);
  1568. $body = '{"userid":"65920","order_id":"22021812045065920f2b95cef2","account":"13699279618","amount":"100","price":"100.05","state":"success","user_order":"66031645157064675953","sign":"642AAB4C5A9CC56248AE80113878DB19","voucher":"220218-097370786582375"}';
  1569. $params = json_decode($body, true);
  1570. $provider = $this->getProvider('ruizhi','RefillCallBack');
  1571. $ret = $provider->verify($params);
  1572. $resp = $provider->notify($params);
  1573. }
  1574. public function testRuierxun()
  1575. {
  1576. // $provider = $this->getProvider('ruierxun');
  1577. // $resp = $provider->balance();
  1578. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1579. // $resp = $provider->query(['order_sn' => '48011645165293970916']);
  1580. $body = '{"orderId":"220218142143123894","appId":"LaEORKdrnZ","outOrderId":"48011645165293970916","sign":"28f30e616d06e7936d612995bb086d39","orderStatus":"3","completeTime":"20220218142205","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1581. $params = json_decode($body, true);
  1582. $provider = $this->getProvider('ruierxun','RefillCallBack');
  1583. $ret = $provider->verify($params);
  1584. $resp = $provider->notify($params);
  1585. }
  1586. public function testNingying()
  1587. {
  1588. // $provider = $this->getProvider('ningying');
  1589. // $resp = $provider->balance();
  1590. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  1591. // $resp = $provider->query(['order_sn' => '59481645434420716297']);
  1592. $body = '{"orderId":"220221170704698128","appId":"O8y6eOzWY1","outOrderId":"59481645434420716297","sign":"7476bd7d6cb51a5b25a183145d4a0ada","orderStatus":"3","completeTime":"20220221171148","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1593. $params = json_decode($body, true);
  1594. $provider = $this->getProvider('ningying','RefillCallBack');
  1595. $ret = $provider->verify($params);
  1596. $resp = $provider->notify($params);
  1597. }
  1598. public function testCangxin_yi()
  1599. {
  1600. // $provider = $this->getProvider('cangxin_yi');
  1601. // $resp = $provider->balance();
  1602. // $resp = $provider->add(15811535608, 4, 50, ['order_sn' => $this->make_sn()]);
  1603. // $resp = $provider->query(['order_sn' => '98761645683605613490']);
  1604. $body = '{"sysOrderNo":"R1645683614014oToK4ua","officialOrderNo":"","clientId":"10043","verifyString":"4040530613390299cf5d432a59dad348","clientOrderNo":"98761645683605613490","status":"4"}';
  1605. $params = json_decode($body, true);
  1606. $provider = $this->getProvider('cangxin_yi','RefillCallBack');
  1607. $ret = $provider->verify($params);
  1608. $resp = $provider->notify($params);
  1609. }
  1610. public function testZhenghe()
  1611. {
  1612. // $provider = $this->getProvider('zhenghe');
  1613. // $resp = $provider->balance();
  1614. // $resp = $provider->add(15811535608, 4, 30, ['order_sn' => $this->make_sn()]);
  1615. // $resp = $provider->query(['order_sn' => '20411645686498504519']);
  1616. $body = '{"szOrderId":"20411645686498504519","fSalePrice":"30.15","szAgentId":"200032","nFlag":"2","szVerifyString":"af368366f759289054328390f419d062","szPhoneNum":"15811535608","szRtnMsg":"","nDemo":"30"}';
  1617. $params = json_decode($body, true);
  1618. $provider = $this->getProvider('zhenghe','RefillCallBack');
  1619. $ret = $provider->verify($params);
  1620. $resp = $provider->notify($params);
  1621. }
  1622. public function testLexiang()
  1623. {
  1624. // $provider = $this->getProvider('lexiang');
  1625. // $resp = $provider->balance();
  1626. // $resp = $provider->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  1627. // $resp = $provider->query(['order_sn' => '36181645780442291806', 'commit_time' => 1645780259]);
  1628. $body = '{"mchId":"20","mchOrderNo":"36181645780442291806","sysOrderNo":"S202202251714039EusUAV0yO","account":"18074608795","money":"30.0000","status":"2","sign":"c55977367aa083850456c5ec7c14ed87","certificate":"1000000083422022517369130925"}';
  1629. $params = json_decode($body, true);
  1630. $provider = $this->getProvider('lexiang','RefillCallBack');
  1631. $ret = $provider->verify($params);
  1632. $resp = $provider->notify($params);
  1633. }
  1634. public function testKuaikuai()
  1635. {
  1636. // $provider = $this->getProvider('kuaikuai');
  1637. // $resp = $provider->balance();
  1638. // $resp = $provider->add(185006083, 5, 30, ['order_sn' => $this->make_sn()]);
  1639. // $resp = $provider->query(['order_sn' => '48821646219340197679']);
  1640. $body = '{"msg":"100101101012202281653493036477","orderId":"37691646038424123424","createTime":1646038427,"sign":"35df4f13ee4dcaed2d582d709ff66073","orderNum":"2c922ab97f2683b5017f3f89246d1e4a","status":2}';
  1641. $params = json_decode($body, true);
  1642. $provider = $this->getProvider('kuaikuai','RefillCallBack');
  1643. $ret = $provider->verify($params);
  1644. $resp = $provider->notify($params);
  1645. }
  1646. public function testJianjiao()
  1647. {
  1648. $provider = $this->getProvider('jianjiao');
  1649. // $resp = $provider->balance();
  1650. $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1651. // $resp = $provider->query(['order_sn' => '14481646204704630736']);
  1652. // $body = '{"order_id":"22030215052639807","out_order_id":"14481646204704630736","status":3,"mobile":"13699279618","amount":50,"app_key":"3l6kd2yqsvcwftij","official_sn":"","timestamp":1646205722,"sign":"db77f48b8964b74e9c5e44fa9b3dcf49"}';
  1653. // $params = json_decode($body, true);
  1654. // $provider = $this->getProvider('jianjiao','RefillCallBack');
  1655. // $ret = $provider->verify($params);
  1656. // $resp = $provider->notify($params);
  1657. }
  1658. public function testHuoli()
  1659. {
  1660. // $provider = $this->getProvider('huoli');
  1661. // $resp = $provider->balance();
  1662. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1663. // $resp = $provider->query(['order_sn' => '89741646294399883574']);
  1664. $body = '{"app_key":"expzye","out_trade_no":"89741646294399883574","sign":"24adfe57f5ada22db154d4ed4b4b8e5f","status":2}';
  1665. $params = json_decode($body, true);
  1666. $provider = $this->getProvider('huoli','RefillCallBack');
  1667. $ret = $provider->verify($params);
  1668. $resp = $provider->notify($params);
  1669. }
  1670. public function testNingying_normal()
  1671. {
  1672. $provider = $this->getProvider('ningying_normal');
  1673. // $resp = $provider->balance();
  1674. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  1675. // $resp = $provider->query(['order_sn' => '83651658900120901860']);
  1676. $body = '{"szOrderId":"83651658900120901860","fSalePrice":"94.2","szAgentId":"200006","nFlag":"3","szVerifyString":"44fff983651dd01946c400085b9efd32","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"100"}';
  1677. $params = json_decode($body, true);
  1678. $provider = $this->getProvider('ningying_normal','RefillCallBack');
  1679. $ret = $provider->verify($params);
  1680. $resp = $provider->notify($params);
  1681. }
  1682. public function testYuanrun()
  1683. {
  1684. // $provider = $this->getProvider('yuanrun');
  1685. // $resp = $provider->balance();
  1686. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1687. // $resp = $provider->query(['order_sn' => '25801646616116681917', 'card_no' => 18500608333, 'commit_time' => 1646616131]);
  1688. $body = '{"cpid":"49449","order_no":"22030709220549449952471675","mobile":"18500608333","amount":"30","status":"success","sz_order_no":"100101101042203070922143047338","ret_para":"25801646616116681917","sign":"2fd2661ce353e4cb554d7d3ca3f09f4d"}';
  1689. $params = json_decode($body, true);
  1690. $provider = $this->getProvider('yuanrun','RefillCallBack');
  1691. $ret = $provider->verify($params);
  1692. $resp = $provider->notify($params);
  1693. }
  1694. public function testFeimingyunew()
  1695. {
  1696. $provider = $this->getProvider('feimingyunew');
  1697. // $resp = $provider->balance();
  1698. $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1699. // $resp = $provider->query(['order_sn' => '24001646631354076583']);
  1700. // $body = '{"orderid":"AUH22030713352134241","sporderid":"24001646631354076583","userid":"10002506","merchantsubmittime":"20220307133712","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-28.26","sign":"0C4A264A6692C68EB8CC000BEC5C0E53"}';
  1701. // $params = json_decode($body, true);
  1702. // $provider = $this->getProvider('feimingyunew','RefillCallBack');
  1703. // $ret = $provider->verify($params);
  1704. // $resp = $provider->notify($params);
  1705. }
  1706. public function testBailian()
  1707. {
  1708. $provider = $this->getProvider('bailian', 'RefillOil');
  1709. $resp = $provider->balance();
  1710. }
  1711. public function testHangtongyj()
  1712. {
  1713. $provider = $this->getProvider('hangtongyj');
  1714. // $resp = $provider->balance();
  1715. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1716. $resp = $provider->query(['order_sn' => '13791646729519910878']);
  1717. // $body = '{"phone":"13699279618","orderNo":"F2203081623054678137","status":"fail","otherNo":"23351646727780199005","msg":"产品不存在","ext":null}';
  1718. // $params = json_decode($body, true);
  1719. // $provider = $this->getProvider('hangtongyj','RefillCallBack');
  1720. // $ret = $provider->verify($params);
  1721. // $resp = $provider->notify($params);
  1722. }
  1723. public function testRuixundaman()
  1724. {
  1725. // $provider = $this->getProvider('ruixundaman');
  1726. // $resp = $provider->balance();
  1727. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1728. // $resp = $provider->query(['order_sn' => '98441646796808890306']);
  1729. $body = '{"orderId":"220309113357355093","appId":"8tYeow0MYZ","outOrderId":"98441646796808890306","sign":"ec2619a26a11e3320fcdc71fccc7b310","orderStatus":"2","completeTime":"20220309193655","orderDesc":"\u8ba2\u5355\u6210\u529f","ext1":"2022233820220309193635"}';
  1730. $params = json_decode($body, true);
  1731. $provider = $this->getProvider('ruixundaman','RefillCallBack');
  1732. $ret = $provider->verify($params);
  1733. $resp = $provider->notify($params);
  1734. }
  1735. public function testRuizhi_tax()
  1736. {
  1737. // $provider = $this->getProvider('ruizhi_tax');
  1738. // $resp = $provider->balance();
  1739. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1740. // $resp = $provider->query(['order_sn' => '36411646882603857635']);
  1741. $body = '{"userid":"10713","order_id":"22031011232910713e1bc01a6b","account":"13699279618","amount":"50","price":"52.15","state":"success","user_order":"36411646882603857635","sign":"3CEDF5DF4F8A178471FA24B07C8D9BBB","voucher":"2022031027610736554488548137"}';
  1742. $params = json_decode($body, true);
  1743. $provider = $this->getProvider('ruizhi_tax','RefillCallBack');
  1744. $ret = $provider->verify($params);
  1745. $resp = $provider->notify($params);
  1746. }
  1747. public function testPengxinda()
  1748. {
  1749. $provider = $this->getProvider('pengxinda');
  1750. // $resp = $provider->balance();
  1751. $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1752. // $resp = $provider->query(['order_sn' => '29131646900654146357']);
  1753. // $body = '{"api_userid":"beijingyz","order_no":"29131646900654146357","retcode":"1","errcode":"100101101042203101624383157550"}';
  1754. // $params = json_decode($body, true);
  1755. // $provider = $this->getProvider('pengxinda','RefillCallBack');
  1756. // $ret = $provider->verify($params);
  1757. // $resp = $provider->notify($params);
  1758. }
  1759. public function testHuazhong()
  1760. {
  1761. $provider = $this->getProvider('huazhong');
  1762. // $resp = $provider->balance();
  1763. // $resp = $provider->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  1764. $resp = $provider->query(['order_sn' => '58581646984524382528']);
  1765. // $body = ' {"orderid":"GCN22031115279906665","sporderid":"54011646983613476599","userid":"10002763","merchantsubmittime":"20220311153014","resultno":"9","parvalue":"50","remark1":"","payno":"","fundbalance":"-47.65","sign":"198392B102B9B9FB60D52EF93EF2BDCC"}';
  1766. // $params = json_decode($body, true);
  1767. // $provider = $this->getProvider('huazhong','RefillCallBack');
  1768. // $ret = $provider->verify($params);
  1769. // $resp = $provider->notify($params);
  1770. }
  1771. public function testYamiaoman()
  1772. {
  1773. // $provider = $this->getProvider('yamiaoman');
  1774. // $resp = $provider->balance();
  1775. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1776. // $resp = $provider->query(['order_sn' => '53351647242979116742']);
  1777. $body = '{"orderId":"220314152954756093","appId":"zIODZmzSCk","outOrderId":"53351647242979116742","sign":"41ad7d4b4b26559377c6443d2b0d6c68","orderStatus":"3","completeTime":"20220314172722","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1778. $params = json_decode($body, true);
  1779. $provider = $this->getProvider('yamiaoman','RefillCallBack');
  1780. $ret = $provider->verify($params);
  1781. $resp = $provider->notify($params);
  1782. }
  1783. public function testKailinyu()
  1784. {
  1785. // $provider = $this->getProvider('kailinyu');
  1786. // $resp = $provider->balance();
  1787. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1788. // $resp = $provider->query(['order_sn' => '94371658718403772370']);
  1789. $body = '{"orderId":"220725110647030575","appId":"FcSAzHuWQ4","outOrderId":"94371658718403772370","sign":"6c2c7c91864f12ff1986ac4ea6fd7b4f","orderStatus":"3","completeTime":"20220725110647","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1790. $params = json_decode($body, true);
  1791. $provider = $this->getProvider('kailinyu','RefillCallBack');
  1792. $ret = $provider->verify($params);
  1793. $resp = $provider->notify($params);
  1794. }
  1795. public function testKuaikuaifs()
  1796. {
  1797. $provider = $this->getProvider('kuaikuaifs');
  1798. // $resp = $provider->balance();
  1799. $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1800. // $resp = $provider->query(['order_sn' => '96401647327929264712']);
  1801. }
  1802. public function testYouheman()
  1803. {
  1804. // $provider = $this->getProvider('youheman');
  1805. // $resp = $provider->balance();
  1806. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  1807. // $resp = $provider->query(['order_sn' => '65891648444382784227']);
  1808. $body = '{"szOrderId":"65891648444382784227","fSalePrice":"91.5","szAgentId":"200040","nFlag":"2","szVerifyString":"899758ef408c86164529a3724806d52b","szPhoneNum":"18500608333","szRtnMsg":"OM1508468825220870144","nDemo":"100"}';
  1809. $params = json_decode($body, true);
  1810. $provider = $this->getProvider('youheman','RefillCallBack');
  1811. $ret = $provider->verify($params);
  1812. $resp = $provider->notify($params);
  1813. }
  1814. public function testHuoshenguoman()
  1815. {
  1816. // $provider = $this->getProvider('huoshenguoman');
  1817. // $resp = $provider->balance();
  1818. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  1819. // $resp = $provider->query(['order_sn' => '89261649309598653504']);
  1820. $body = '{"orderId":"220407133327635878","appId":"tME7rcK07P","outOrderId":"89261649309598653504","sign":"e46a90c064177aa34cac3a3951410df9","orderStatus":"3","completeTime":"20220407140654","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1821. $params = json_decode($body, true);
  1822. $provider = $this->getProvider('huoshenguoman','RefillCallBack');
  1823. $ret = $provider->verify($params);
  1824. $resp = $provider->notify($params);
  1825. }
  1826. public function testGuitong()
  1827. {
  1828. // $provider = $this->getProvider('guitong');
  1829. // $resp = $provider->balance();
  1830. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1831. // $resp = $provider->query(['order_sn' => '15551649669272272125']);
  1832. $body = '{"szOrderId":"15551649669272272125","fSalePrice":"28.62","szAgentId":"200062","nFlag":"3","szVerifyString":"62e5b8a71935a36acf563f232b75210e","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"30"}';
  1833. $params = json_decode($body, true);
  1834. $provider = $this->getProvider('guitong','RefillCallBack');
  1835. $ret = $provider->verify($params);
  1836. $resp = $provider->notify($params);
  1837. }
  1838. public function testYouhedf()
  1839. {
  1840. // $provider = $this->getProvider('youhedf');
  1841. // $resp = $provider->balance();
  1842. // $resp = $provider->add(1004638637, 101, 50, ['order_sn' => $this->make_sn(), 'regin_no' => 1]);
  1843. // $resp = $provider->query(['order_sn' => '80821649748836825835']);
  1844. $body = '{"szOrderId":"27341649750036121132","fSalePrice":"46.5","szAgentId":"200044","nFlag":"3","szVerifyString":"52b9057e467f09cf21eaceacddb475e6","szPhoneNum":"1004638637","szRtnMsg":"","nDemo":"50"}';
  1845. $params = json_decode($body, true);
  1846. $provider = $this->getProvider('youhedf', 'RefillCallBack');
  1847. }
  1848. public function testYunchonggongman()
  1849. {
  1850. // $provider = $this->getProvider('yunchonggongman');
  1851. // $resp = $provider->balance();
  1852. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  1853. // $resp = $provider->query(['order_sn' => '72011649828177343273']);
  1854. $body = '{"orderId":"220413133619562061","appId":"P9EYSTJenh","outOrderId":"72011649828177343273","sign":"5294a7cea3c30049f82454012d9dd028","orderStatus":"3","completeTime":"20220413140642","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  1855. $params = json_decode($body, true);
  1856. $provider = $this->getProvider('yunchonggongman','RefillCallBack');
  1857. $ret = $provider->verify($params);
  1858. $resp = $provider->notify($params);
  1859. }
  1860. public function testJike()
  1861. {
  1862. // $provider = $this->getProvider('jike');
  1863. // $resp = $provider->balance();
  1864. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1865. // $resp = $provider->query(['order_sn' => '61891650433011979641']);
  1866. $body = '{"amount":30.00,"finishTime":"2022-04-20 13:40:22","mobile":"18500608333","orderNo":"QY2022042013371516594bw95","outOrderNo":"61891650433011979641","refundAmount":0.00,"settlementAmount":29.25,"sign":"c9814fcd0e3fcc8f978a33cba1387ef4","status":3,"timestamp":1650433222213,"updateTime":"2022-04-20 13:40:22"}';
  1867. $params = json_decode($body, true);
  1868. $provider = $this->getProvider('jike','RefillCallBack');
  1869. $ret = $provider->verify($params);
  1870. $resp = $provider->notify($params);
  1871. }
  1872. public function testJumeng()
  1873. {
  1874. // $provider = $this->getProvider('jumeng');
  1875. // $resp = $provider->balance();
  1876. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1877. // $resp = $provider->query(['order_sn' => '61891650433011979641']);
  1878. $body = '{"orderid":"NRG22042415190852684","sporderid":"54521650784779022915","userid":"10002591","merchantsubmittime":"20220424152241","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-28.32","sign":"315A02F52F772BFBE681541DC5D5A68F"}';
  1879. $params = json_decode($body, true);
  1880. $provider = $this->getProvider('jumeng','RefillCallBack');
  1881. $ret = $provider->verify($params);
  1882. $resp = $provider->notify($params);
  1883. }
  1884. public function testShantong()
  1885. {
  1886. // $provider = $this->getProvider('shantong');
  1887. // $resp = $provider->balance();
  1888. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  1889. // $resp = $provider->query(['order_sn' => '35151650783370889788']);
  1890. $body = '{"orderId":"23691650852278427609","mobile":"18500608333","sign":"e7239f5bc48819fcb18942ae56beba6c","orderStatus":3,"businessOrderId":"10040425100000001","finishDate":"2022-04-25 10:24:17","perValue":100}';
  1891. $params = json_decode($body, true);
  1892. $provider = $this->getProvider('shantong','RefillCallBack');
  1893. $ret = $provider->verify($params);
  1894. $resp = $provider->notify($params);
  1895. }
  1896. public function testYelin_hf()
  1897. {
  1898. // $provider = $this->getProvider('yelin_hf');
  1899. // $resp = $provider->balance();
  1900. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  1901. // $resp = $provider->query(['order_sn' => '96211651214739034917']);
  1902. $body = '{"mchid":"10286","order_sn":"96211651214739034917","amount":"30.0000","cardno":"18500608333","trade_no":"7442240704558746373340","idcard":"","card_name":"","official_sn":"","message":"fail","state":"CANCEL","sign":"317b6787d3fab8ce7f60a4acfe25bbc9"}';
  1903. $params = json_decode($body, true);
  1904. $provider = $this->getProvider('yelin_hf','RefillCallBack');
  1905. $ret = $provider->verify($params);
  1906. $resp = $provider->notify($params);
  1907. }
  1908. public function testAinika()
  1909. {
  1910. // $provider = $this->getProvider('ainika');
  1911. // $resp = $provider->balance();
  1912. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1913. // $resp = $provider->query(['order_sn' => '61961651223605267063']);
  1914. $body = '{"orderid":"HAP22042917132281477","sporderid":"61961651223605267063","userid":"10002584","merchantsubmittime":"20220429171341","resultno":"9","parvalue":"50","remark1":"","payno":"","fundbalance":"-47.9","sign":"36D1867A80924B6AE92C7B2CC1CE96BF"}';
  1915. $params = json_decode($body, true);
  1916. $provider = $this->getProvider('ainika','RefillCallBack');
  1917. $ret = $provider->verify($params);
  1918. $resp = $provider->notify($params);
  1919. }
  1920. public function testMiaoxt_tax()
  1921. {
  1922. // $provider = $this->getProvider('miaoxt_tax');
  1923. // $resp = $provider->balance();
  1924. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1925. // $resp = $provider->query(['order_sn' => '26021652172403994919']);
  1926. $body = '{"szOrderId":"26021652172403994919","fSalePrice":"51.65","szAgentId":"200093","nFlag":"2","szVerifyString":"191888adc1a74ac284ab8a9aeba89753","szPhoneNum":"18500608333","szRtnMsg":"100101101052205101647064149797","nDemo":"50"}';
  1927. $params = json_decode($body, true);
  1928. $provider = $this->getProvider('miaoxt_tax','RefillCallBack');
  1929. $ret = $provider->verify($params);
  1930. $resp = $provider->notify($params);
  1931. }
  1932. public function testChending_df()
  1933. {
  1934. // $provider = $this->getProvider('chending_df');
  1935. // $resp = $provider->balance();
  1936. // $resp = $provider->add(0014520437, 7, 100, ['order_sn' => $this->make_sn(), 'company_type' => 'nation', 'use_type' => 'home', 'province' => 1, 'city' => '北京市', 'product_code' => 'DF_nation_home_100']);
  1937. // $resp = $provider->query(['order_sn' => '63291660632954797381']);
  1938. $body = '{"orderId":"220513163943109440","appId":"SfjndCMdUC","outOrderId":"59951652431183676445","sign":"6e8bb3398fe726141760e4e7c134620a","orderStatus":"2","completeTime":"20220514191209","orderDesc":"\u8ba2\u5355\u6210\u529f"}';
  1939. $params = json_decode($body, true);
  1940. $provider = $this->getProvider('chending_df', 'RefillCallBack');
  1941. $ret = $provider->verify($params);
  1942. $resp = $provider->notify($params);
  1943. }
  1944. public function testChending_tax()
  1945. {
  1946. // $provider = $this->getProvider('chending_tax');
  1947. // $resp = $provider->balance();
  1948. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn(), 'company_type' => 'nation', 'use_type' => 'home', 'province' => 1, 'city' => '北京市']);
  1949. // $resp = $provider->query(['order_sn' => '22671652666858385750']);
  1950. $body = '{"orderId":"220516100746111668","appId":"4kMv0XHVYd","outOrderId":"22671652666858385750","sign":"e1f513d104df7cb31f767784f04833f1","orderStatus":"2","completeTime":"20220516100752","orderDesc":"\u8ba2\u5355\u6210\u529f","ext1":"100101101032205161007504153995"}';
  1951. $params = json_decode($body, true);
  1952. $provider = $this->getProvider('chending_tax','RefillCallBack');
  1953. $ret = $provider->verify($params);
  1954. $resp = $provider->notify($params);
  1955. }
  1956. public function testDonghong_high()
  1957. {
  1958. // $provider = $this->getProvider('donghong_high');
  1959. // $resp = $provider->balance();
  1960. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1961. // $resp = $provider->query(['order_sn' => '63621652775729185590']);
  1962. $body = '{"orderid":"FJW22051716222022479","sporderid":"63621652775729185590","userid":"10002583","merchantsubmittime":"20220517162522","resultno":"9","parvalue":"50","remark1":"","payno":"","fundbalance":"-48.25","sign":"E7AE9EE9E3D83909564E03935A7AFAA5"}';
  1963. $params = json_decode($body, true);
  1964. $provider = $this->getProvider('donghong_high','RefillCallBack');
  1965. $ret = $provider->verify($params);
  1966. $resp = $provider->notify($params);
  1967. }
  1968. public function testTongmai()
  1969. {
  1970. // $provider = $this->getProvider('tongmai');
  1971. // $resp = $provider->balance();
  1972. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  1973. // $resp = $provider->query(['order_sn' => '14471652858448773887']);
  1974. $body = '{"szOrderId":"14471652858448773887","fSalePrice":"49.75","szAgentId":"200010","nFlag":"2","szVerifyString":"228ad25509b080bb728276d6176d9fea","szPhoneNum":"13699279618","szRtnMsg":"220518-443138774640458","nDemo":"50"}';
  1975. $params = json_decode($body, true);
  1976. $provider = $this->getProvider('tongmai','RefillCallBack');
  1977. $ret = $provider->verify($params);
  1978. $resp = $provider->notify($params);
  1979. }
  1980. public function testLiantongzx()
  1981. {
  1982. // $provider = $this->getProvider('liantongzx');
  1983. // $resp = $provider->balance();
  1984. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1985. // $resp = $provider->query(['order_sn' => '31091653029001738304']);
  1986. $body = '{"msg":"成功","code":"00000","data":{"buisId":"31091653029001738304","signature":"59E5589E87B24B2DCBEC7AE09B0310B8","rechargePhone":"18500608333","appKey":"Dbjyz","id":"202205201443247E4AEC9FF804F14AC2","operator":"CU","status":2,"rechargeMoney":5000}}';
  1987. $params = json_decode($body, true);
  1988. $provider = $this->getProvider('liantongzx','RefillCallBack');
  1989. $ret = $provider->verify($params['data']);
  1990. $resp = $provider->notify($params['data']);
  1991. }
  1992. public function testBodian()
  1993. {
  1994. // $provider = $this->getProvider('bodian');
  1995. // $resp = $provider->balance();
  1996. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  1997. // $resp = $provider->query(['order_sn' => '57771653272628058996']);
  1998. $body = '{"szOrderId":"57771653272628058996","fSalePrice":"49.9","szAgentId":"200022","nFlag":"2","szVerifyString":"3d0cad0e5b5b5e21822aeb30541d689c","szPhoneNum":"18500608333","szRtnMsg":"100101101062205231024014167462","nDemo":"50"}';
  1999. $params = json_decode($body, true);
  2000. $provider = $this->getProvider('bodian','RefillCallBack');
  2001. $ret = $provider->verify($params);
  2002. $resp = $provider->notify($params);
  2003. }
  2004. public function testGdsinopec()
  2005. {
  2006. $provider = $this->getProvider('gdsinopec','RefillOil');
  2007. // $resp = $provider->add(13699279618, 4, 5, [
  2008. // 'order_sn' => $this->make_sn(), 'province' => 19
  2009. // ]);
  2010. $resp = $provider->query(['order_sn' => '63821655370285849333']);
  2011. }
  2012. public function testYuke()
  2013. {
  2014. // $provider = $this->getProvider('yuke');
  2015. // $resp = $provider->balance();
  2016. // $resp = $provider->add(15811535608, 4, 50, ['order_sn' => $this->make_sn()]);
  2017. // $resp = $provider->query(['order_sn' => '26641653296769663088']);
  2018. $body = '{"orderType":0,"updatedTime":"2022-05-23 17:16:02","outOpenId":"","orderSn":"20220523170620286044131126629607","sign":"ABD2343F3D936E0C0B7C1FB2893ED06E","orderStatus":3,"rechargeAccount":"15811535608","rechargeAmount":50.000,"createTime":"2022-05-23 17:06:20","outOrderId":"26641653296769663088","tPfChannelId":192,"cpParam":"","callbackOtherAttr":{"cert_no":""}}';
  2019. $params = json_decode($body, true);
  2020. $provider = $this->getProvider('yuke','RefillCallBack');
  2021. $ret = $provider->verify($params);
  2022. $resp = $provider->notify($params);
  2023. }
  2024. public function testChizeng_yi()
  2025. {
  2026. // $provider = $this->getProvider('chizeng_yi');
  2027. // $resp = $provider->balance();
  2028. // $resp = $provider->add(15811535608, 4, 100, ['order_sn' => $this->make_sn()]);
  2029. // $resp = $provider->query(['order_sn' => '45611653372272644548']);
  2030. $body = '{"orderid":"YOQ22052414043859005","sporderid":"45611653372272644548","userid":"10003583","merchantsubmittime":"20220524140541","resultno":"9","parvalue":"100","remark1":"","payno":"","fundbalance":"-98","sign":"23331D82F432054D58CA7047F33A13F7"}';
  2031. $params = json_decode($body, true);
  2032. $provider = $this->getProvider('chizeng_yi','RefillCallBack');
  2033. $ret = $provider->verify($params);
  2034. $resp = $provider->notify($params);
  2035. }
  2036. public function testGuanbang()
  2037. {
  2038. // $provider = $this->getProvider('guanbang');
  2039. // $resp = $provider->balance();
  2040. // $resp = $provider->add(15811535608, 4, 30, ['order_sn' => $this->make_sn()]);
  2041. // $resp = $provider->query(['order_sn' => '82791653469520046484']);
  2042. $body = ' {"userid":"57756","order_id":"22052517052557756af95c9977","account":"15811535608","amount":"30","price":"30.36","state":"failed","user_order":"82791653469520046484","sign":"941BE8B6FF2ABB832A1848DD2758121F","voucher":""}';
  2043. $params = json_decode($body, true);
  2044. $provider = $this->getProvider('guanbang','RefillCallBack');
  2045. $ret = $provider->verify($params);
  2046. $resp = $provider->notify($params);
  2047. }
  2048. public function testYuke_lt()
  2049. {
  2050. $provider = $this->getProvider('yuke_lt');
  2051. $resp = $provider->balance();
  2052. }
  2053. public function testYuke_dx()
  2054. {
  2055. $provider = $this->getProvider('yuke_dx');
  2056. $resp = $provider->balance();
  2057. }
  2058. public function testGaobiao()
  2059. {
  2060. $provider = $this->getProvider('gaobiao');
  2061. $resp = $provider->balance();
  2062. }
  2063. public function testHuoshenguo_Yd()
  2064. {
  2065. // $provider = $this->getProvider('huoshenguo_yd');
  2066. // $resp = $provider->balance();
  2067. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  2068. // $resp = $provider->query(['order_sn' => '15731655879529254660']);
  2069. $body = '{"orderId":"220622143213646892","appId":"faGa76P2NZ","outOrderId":"15731655879529254660","sign":"b8199c227c0bf4cebc9ca97bc79400eb","orderStatus":"3","completeTime":"20220622143225","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  2070. $params = json_decode($body, true);
  2071. $provider = $this->getProvider('huoshenguo_yd','RefillCallBack');
  2072. $ret = $provider->verify($params);
  2073. $resp = $provider->notify($params);
  2074. }
  2075. public function testXinruiheng()
  2076. {
  2077. // $provider = $this->getProvider('xinruiheng');
  2078. // $resp = $provider->balance();
  2079. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  2080. // $resp = $provider->query(['order_sn' => '39051656036848508036']);
  2081. $body = '{"orderid":"SPN22062410147271198","sporderid":"39051656036848508036","userid":"10002683","merchantsubmittime":"20220624101713","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-28.98","sign":"0BDCBB9BF688B35E55B1B16E88D5E5FD"}';
  2082. $params = json_decode($body, true);
  2083. $provider = $this->getProvider('xinruiheng','RefillCallBack');
  2084. $ret = $provider->verify($params);
  2085. $resp = $provider->notify($params);
  2086. }
  2087. public function testDezhi()
  2088. {
  2089. // $provider = $this->getProvider('dezhi');
  2090. // $resp = $provider->balance();
  2091. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  2092. // $resp = $provider->query(['order_sn' => '86811656400057476279']);
  2093. $body = '{"szOrderId":"61171656397023525645","fSalePrice":"28.59","szAgentId":"200002","nFlag":"3","szVerifyString":"1a56ff14e3edae6e526d0f8418050530","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"30"}';
  2094. $params = json_decode($body, true);
  2095. $provider = $this->getProvider('dezhi','RefillCallBack');
  2096. $ret = $provider->verify($params);
  2097. $resp = $provider->notify($params);
  2098. }
  2099. public function testHuoshenguo_fs()
  2100. {
  2101. // $provider = $this->getProvider('huoshenguo_fs');
  2102. // $resp = $provider->balance();
  2103. // $resp = $provider->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  2104. // $resp = $provider->query(['order_sn' => '94501657786482224013']);
  2105. $body = '{"orderId":"220714161448729470","appId":"0AQYfAzSyy","outOrderId":"94501657786482224013","sign":"ddc73651e25ae6ea39f082407c60cb39","orderStatus":"3","completeTime":"20220714161655","orderDesc":"\u8ba2\u5355\u5931\u8d25"}';
  2106. $params = json_decode($body, true);
  2107. $provider = $this->getProvider('huoshenguo_fs', 'RefillCallBack');
  2108. $ret = $provider->verify($params);
  2109. $resp = $provider->notify($params);
  2110. }
  2111. public function testJinglan()
  2112. {
  2113. // $provider = $this->getProvider('jinglan');
  2114. // $resp = $provider->balance();
  2115. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2116. // $resp = $provider->query(['order_sn' => '80901658214434787593']);
  2117. $body = '{"orderNo":"12020220719150001876401","merAccount":"1000000851","merOrderNo":"80901658214434787593","sign":"8d6e9ac7c0eaef0f4b921c983106b710","discountAmount":"50000","merOrderTime":"2022-07-19 15:07:16","successAmount":"50000","orderState":"24","merUserAccount":"","orderAmount":"50000","orderTime":"2022-07-19 15:07:18","payAmount":"50000","orderStateDesc":"\u6210\u529f","orderDetail":"\u5317\u4eac\u8054\u901a\u8bdd\u8d39\u5145\u503c50\u5143","attach":"","endTime":"2022-07-19 15:17:27","businessType":"12"}';
  2118. $params = json_decode($body, true);
  2119. $provider = $this->getProvider('jinglan', 'RefillCallBack');
  2120. $ret = $provider->verify($params);
  2121. $resp = $provider->notify($params);
  2122. }
  2123. public function testXinruiheng_fs()
  2124. {
  2125. // $provider = $this->getProvider('xinruiheng_fs');
  2126. // $resp = $provider->balance();
  2127. // $resp = $provider->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  2128. // $resp = $provider->query(['order_sn' => '85401658476449708732']);
  2129. $body = '{"orderid":"VEL22072215540081259","sporderid":"85401658476449708732","userid":"10002764","merchantsubmittime":"20220722155635","resultno":"1","parvalue":"30","remark1":"74620220722155607702045","payno":"74620220722155607702045","fundbalance":"-28.05","sign":"2196527C01BB57063B030C2E29270D98"}';
  2130. $params = json_decode($body, true);
  2131. $provider = $this->getProvider('xinruiheng_fs', 'RefillCallBack');
  2132. $ret = $provider->verify($params);
  2133. $resp = $provider->notify($params);
  2134. }
  2135. public function testZiyugui()
  2136. {
  2137. // $provider = $this->getProvider('ziyugui');
  2138. // $resp = $provider->balance();
  2139. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  2140. // $resp = $provider->query(['order_sn' => '65941659496150348208']);
  2141. $body = '{"szOrderId":"65941659496150348208","fSalePrice":"28.32","szAgentId":"200001","nFlag":"3","szVerifyString":"53fddb31f9fa15a457b6fb3b8d1f71b9","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"30"}';
  2142. $params = json_decode($body, true);
  2143. $provider = $this->getProvider('ziyugui','RefillCallBack');
  2144. $ret = $provider->verify($params);
  2145. $resp = $provider->notify($params);
  2146. }
  2147. public function testGuiton_yi()
  2148. {
  2149. // $provider = $this->getProvider('guitong_yi');
  2150. // $resp = $provider->balance();
  2151. // $resp = $provider->add(13699279618, 4, 300, ['order_sn' => $this->make_sn()]);
  2152. // $resp = $provider->query(['order_sn' => '88981660030164774522']);
  2153. $body = '{"szOrderId":"88981660030164774522","fSalePrice":"300.45","szAgentId":"200104","nFlag":"2","szVerifyString":"9b4dbb981339f702f81441aa204e9a5c","szPhoneNum":"13699279618","szRtnMsg":"250457458535","nDemo":"300"}';
  2154. $params = json_decode($body, true);
  2155. $provider = $this->getProvider('guitong_yi','RefillCallBack');
  2156. $ret = $provider->verify($params);
  2157. $resp = $provider->notify($params);
  2158. }
  2159. public function testDazhanggui()
  2160. {
  2161. // $provider = $this->getProvider('dazhanggui');
  2162. // $resp = $provider->balance();
  2163. // $resp = $provider->add(15811535608, 4, 50, ['order_sn' => $this->make_sn()]);
  2164. // $resp = $provider->query(['order_sn' => '38151660639715902891']);
  2165. $body = '{"szOrderId":"38151660639715902891","fSalePrice":"28.5","szAgentId":"200008","nFlag":"3","szVerifyString":"8e73b9e248e26089bd82303b5ed70992","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"30"}';
  2166. $params = json_decode($body, true);
  2167. $provider = $this->getProvider('dazhanggui', 'RefillCallBack');
  2168. $ret = $provider->verify($params);
  2169. $resp = $provider->notify($params);
  2170. }
  2171. public function testWeixue()
  2172. {
  2173. // $provider = $this->getProvider('weixue');
  2174. // $resp = $provider->balance();
  2175. // $resp = $provider->add(15811535608, 4, 30, ['order_sn' => $this->make_sn()]);
  2176. // $resp = $provider->query(['order_sn' => '93321661135376151843']);
  2177. $body = '{"orderid":"GKN22082210298364442","sporderid":"93321661135376151843","userid":"10002703","merchantsubmittime":"20220822103250","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-29.01","sign":"550EDFC88E0B08B90EAE3E5DE3CDA62E"}';
  2178. $params = json_decode($body, true);
  2179. $provider = $this->getProvider('weixue','RefillCallBack');
  2180. $ret = $provider->verify($params);
  2181. $resp = $provider->notify($params);
  2182. }
  2183. public function testDazhanggui_high()
  2184. {
  2185. // $provider = $this->getProvider('dazhanggui_high');
  2186. // $resp = $provider->balance();
  2187. // $resp = $provider->add(15811535608, 4, 50, ['order_sn' => $this->make_sn()]);
  2188. // $resp = $provider->query(['order_sn' => '97891663034634307994']);
  2189. $body = '{"szOrderId":"97891663034634307994","fSalePrice":"48.75","szAgentId":"200021","nFlag":"3","szVerifyString":"2072991c0760ca1be5ec05ba3f4cf0b0","szPhoneNum":"15811535608","szRtnMsg":"","nDemo":"50"}';
  2190. $params = json_decode($body, true);
  2191. $provider = $this->getProvider('dazhanggui_high', 'RefillCallBack');
  2192. $ret = $provider->verify($params);
  2193. $resp = $provider->notify($params);
  2194. }
  2195. public function testYingdian_hf()
  2196. {
  2197. // $provider = $this->getProvider('yingdian_hf');
  2198. // $resp = $provider->balance();
  2199. // $resp = $provider->add(15811535608, 4, 50, ['order_sn' => $this->make_sn()]);
  2200. // $resp = $provider->query(['order_sn' => '95361663137380842711']);
  2201. $body = '{"amount":"50.0","cardNo":"15811535608","merchantId":"10026","orderNo":"20220914143618594153","outTradeNo":"95361663137380842711","requestTime":"2022-09-14 14:36:21","sign":"219f2f45298550c52a4a7e3b98b253a7","state":"FAIL"}';
  2202. $params = json_decode($body, true);
  2203. $provider = $this->getProvider('yingdian_hf', 'RefillCallBack');
  2204. $ret = $provider->verify($params);
  2205. $resp = $provider->notify($params);
  2206. }
  2207. public function testAmingjd()
  2208. {
  2209. // $provider = new refill\amingjd\RefillPhone([]);
  2210. // $resp = $provider->add(13699279618, 5, 30, ['order_sn' => $this->make_sn()]);
  2211. // $resp = $provider->query(['order_sn' => '42301616475989518588']);
  2212. $body = '{"order_id":"83321616478215494884","mchid":"10003","tel":"13699279618","price":"30.00","sign":"01c49620c155a80bc43cecc2b1651868","status":"0","out_order_id":"0"}';
  2213. $params = json_decode($body, true);
  2214. refill\RefillFactory::instance()->notify('amingjd', $params);
  2215. }
  2216. public function testAmingjdmanPhone()
  2217. {
  2218. $provider = new refill\amingjdman\RefillPhone([]);
  2219. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2220. // $resp = $provider->query(['order_sn' => '82741619577673758623']);
  2221. $body = '{"order_id":"82741619577673758623","mchid":"10045","tel":"13699279618","price":"30.00","sign":"2fe55fb4d4b2acc2e98137adb82fa57e","status":"0","out_order_id":"0"}';
  2222. $params = json_decode($body, true);
  2223. refill\RefillFactory::instance()->notify('amingjdman', $params);
  2224. }
  2225. public function testWeishengyWtPhone()
  2226. {
  2227. $provider = new refill\weishengywt\RefillPhone([]);
  2228. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2229. // $resp = $provider->query(['order_sn' => '27681620538125370652']);
  2230. $data = '{"szOrderId":"27681620538125370652","fSalePrice":"47.5","szAgentId":"200045","nFlag":"2","szVerifyString":"92fafec121b77518d539ed9f5005fdf9","szPhoneNum":"18500608333","szRtnMsg":"110103308032105091328520502948","nDemo":"50"}';
  2231. $params = json_decode($data, true);
  2232. refill\RefillFactory::instance()->notify('weishengywt', $params);
  2233. }
  2234. public function testWeishengyJDPhone()
  2235. {
  2236. $provider = new refill\weishengyjd\RefillPhone([]);
  2237. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2238. // $resp = $provider->query(['order_sn' => '14261620887423822879']);
  2239. $data = '{"szOrderId":"14261620887423822879","fSalePrice":"44.0","szAgentId":"200050","nFlag":"3","szVerifyString":"3cceef390602058e1d2fdde2e07636a4","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"50"}';
  2240. $params = json_decode($data, true);
  2241. refill\RefillFactory::instance()->notify('weishengyjd', $params);
  2242. }
  2243. public function testYeziPhone()
  2244. {
  2245. $provider = new refill\yezi\RefillPhone([]);
  2246. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2247. // $resp = $provider->query(['order_sn' => '35261620988265145105']);
  2248. $data = '{"mchid":"10147","order_sn":"35261620988265145105","amount":"50.00","cardno":"18500608333","trade_no":"6363570674332280422825","idcard":"","card_name":"","official_sn":"","message":"","state":"CANCEL","sign":"b79f2ddbb5b7eef98f414585a5bd2cde"}';
  2249. $params = json_decode($data, true);
  2250. refill\RefillFactory::instance()->notify('yezi', $params);
  2251. }
  2252. public function testWeishengysixPhone()
  2253. {
  2254. $provider = new refill\weishengysix\RefillPhone([]);
  2255. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2256. // $resp = $provider->query(['order_sn' => '17171624434289348649']);
  2257. $data = '{"szOrderId":"17171624434289348649","fSalePrice":"44.5","szAgentId":"200074","nFlag":"2","szVerifyString":"fa5735090199d97e6a50e7f3083be111","szPhoneNum":"18500608333","szRtnMsg":"AW2021062315464045A27","nDemo":"50"}';
  2258. $params = json_decode($data, true);
  2259. refill\RefillFactory::instance()->notify('weishengysix', $params);
  2260. }
  2261. public function testHaohaoOil()
  2262. {
  2263. $provider = new refill\haohao\RefillOil([]);
  2264. // $resp = $provider->add(1000111100021211884, 2, 100, ['order_sn' => $this->make_sn()]);
  2265. $data['amount'] = 20000;
  2266. $data['mchId'] = 467253;
  2267. $data['mchOrderNo'] = '5514850674656058146707';
  2268. $data['mobile'] = '';
  2269. $data['sign'] = 'F282D68972A437F3CEB3516BB2FDD19A';
  2270. $data['operator'] = 4;
  2271. $data['number'] = '1000113200020348885';
  2272. $data['thirdOrderNo'] = '2317184088901537792';
  2273. $data['directStatus'] = 5;
  2274. // $input = json_decode($data, true);
  2275. refill\RefillFactory::instance()->notify('haohao',$data);
  2276. }
  2277. public function testJuzhuoOil()
  2278. {
  2279. $provider = new refill\juzhuo\RefillOil([]);
  2280. // $resp = $provider->add(1000111100021211884, 2, 200, ['order_sn' => $this->make_sn()]);
  2281. // $resp = $provider->query(['order_sn' => '20121621578185774451']);
  2282. // $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"}';
  2283. // $input = json_decode($data, true);
  2284. $data['channelsort'] = 'OIL_CARD';
  2285. $data['channelno'] = '';
  2286. $data['onlystr'] = '0772770675248490450497';
  2287. $data['channel'] = 'JD';
  2288. $data['sign'] = '4a9f113bfa4aa2d155de7136ca0afe2d';
  2289. $data['amt'] = '100';
  2290. $data['notifyurl'] = 'http://121.89.212.167/racc/callback/lingzh/juzhuo.php';
  2291. $data['cardtype'] = 'Sinoepc';
  2292. $data['cardno'] = '1000113200029532754';
  2293. $data['orgid'] = '6095171500';
  2294. $data['account'] = '';
  2295. $data['status'] = '3';
  2296. refill\RefillFactory::instance()->notify('juzhuo',$data);
  2297. }
  2298. public function testZeheng()
  2299. {
  2300. $provider = new refill\zeheng\RefillOil([]);
  2301. // $resp = $provider->add(1000111100021211884, mtopcard\SinopecCard, 100, ['order_sn' => $this->make_sn()]);
  2302. // $resp = $provider->query(['order_sn' => '45951620814813332604']);
  2303. $data = '{"extOrderId":"45951620814813332604","orderId":"R2021051218240000192928","salePrice":"96.8000","sign":"0d6b9641eaf8d36ecba82cfefc6aa307","state":"4"}';
  2304. $input = json_decode($data, true);
  2305. refill\RefillFactory::instance()->notify('zeheng',$input);
  2306. }
  2307. public function testXiaoniu()
  2308. {
  2309. $provider = $this->getProvider('xiaoniu','RefillOil');
  2310. // $resp = $provider->add(1000111100021211884, mtopcard\SinopecCard, 500, ['order_sn' => $this->make_sn()]);
  2311. $resp = $provider->query(['order_sn' => '15981632813532634860']);
  2312. // $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"}';
  2313. // $input = json_decode($data, true);
  2314. // refill\RefillFactory::instance()->notify('xiaoniu',$input);
  2315. // $resp = $provider->balance();
  2316. }
  2317. public function testYingdian()
  2318. {
  2319. $provider = $this->getProvider('yingdian','RefillOil');
  2320. $resp = $provider->balance();
  2321. // $resp = $provider->add(1000111100021211884, mtopcard\SinopecCard, 200, ['order_sn' => $this->make_sn()]);
  2322. // $resp = $provider->query(['order_sn' => '94691626688509004979']);
  2323. // $resp = $provider->query(['order_sn' => '45671626687631917892']);
  2324. // $data = '{"orderNo":"94691626688509004979","vouchers":"[\"2421071918070053\"]","orderId":"63400811-e877-11eb-a89f-00163e147a9b","spOrderNo":"052423YK241720210719175503603473","status":"SUCCESS"}';
  2325. // $input = json_decode($data, true);
  2326. // refill\RefillFactory::instance()->notify('yingdian',$input);
  2327. }
  2328. public function testZhenqi()
  2329. {
  2330. $provider = new refill\zhenqi\RefillPhone([]);
  2331. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2332. // $resp = $provider->query(['order_sn' => '42611626267945146350']);
  2333. // $data = '{"out_trade_no":"14001626266194932132","create_time":"1626266201","sp_order_no":"110103353232107142044550619272","status":"1","sign":"3C2F8ED40EEB9151D2117E2DA1FA64AA"}';
  2334. // $input = json_decode($data, true);
  2335. // refill\RefillFactory::instance()->notify('zhenqi',$input);
  2336. $resp = $provider->balance();
  2337. }
  2338. public function testYunsuoyaofs()
  2339. {
  2340. $provider = new refill\yunsuoyaofs\RefillPhone([]);
  2341. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  2342. // $resp = $provider->query(['order_sn' => '85681626322286098163']);
  2343. // $data = '{"orderid":"AMU21071512111544162","sporderid":"85681626322286098163","userid":"10002671","merchantsubmittime":"20210715121132","resultno":"9","parvalue":"50","remark1":"","payno":"","fundbalance":"-47.7","sign":"45ECFF26E84F7DC3BFFDCFAFF3B1E561"}';
  2344. // $input = json_decode($data, true);
  2345. // refill\RefillFactory::instance()->notify('yunsuoyaofs',$input);
  2346. $resp = $provider->balance();
  2347. }
  2348. public function testZhenqi1m()
  2349. {
  2350. $provider = new refill\zhenqi1m\RefillPhone([]);
  2351. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  2352. // $resp = $provider->query(['order_sn' => '45611626334593130605']);
  2353. // $data = '{"out_trade_no":"45611626334593130605","create_time":"1626334606","sp_order_no":"202107152200117311004426885635","status":"1","sign":"CF8EB902F60B76591C898C991361BB4D"}';
  2354. // $input = json_decode($data, true);
  2355. // refill\RefillFactory::instance()->notify('zhenqi1m',$input);
  2356. $resp = $provider->balance();
  2357. }
  2358. public function testHongxudayz()
  2359. {
  2360. $provider = new refill\hongxudayz\RefillPhone([]);
  2361. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  2362. // $resp = $provider->query(['order_sn' => '78221626445316011524']);
  2363. $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":""}';
  2364. $input = json_decode($data, true);
  2365. refill\RefillFactory::instance()->notify('hongxudayz',$input);
  2366. }
  2367. public function testHongxudagy()
  2368. {
  2369. $provider = new refill\hongxudagy\RefillPhone([]);
  2370. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  2371. // $resp = $provider->query(['order_sn' => '86521626446475240639']);
  2372. // $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":""}';
  2373. // $input = json_decode($data, true);
  2374. // refill\RefillFactory::instance()->notify('hongxudagy',$input);
  2375. $resp = $provider->balance();
  2376. }
  2377. public function testHongxudayz996()
  2378. {
  2379. $provider = new refill\hongxudayz996\RefillPhone([]);
  2380. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  2381. // $resp = $provider->query(['order_sn' => '73691626753698522472']);
  2382. $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":""}';
  2383. $input = json_decode($data, true);
  2384. refill\RefillFactory::instance()->notify('hongxudayz996',$input);
  2385. }
  2386. public function testHongxudagy996()
  2387. {
  2388. $provider = new refill\hongxudagy996\RefillPhone([]);
  2389. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  2390. // $resp = $provider->query(['order_sn' => '87681626758209689412']);
  2391. $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":""}';
  2392. $input = json_decode($data, true);
  2393. refill\RefillFactory::instance()->notify('hongxudagy996',$input);
  2394. }
  2395. public function testYunchonggong()
  2396. {
  2397. // $provider = $this->getProvider('yunchonggong');
  2398. // $resp = $provider->balance();
  2399. // $resp = $provider->add(15811535608, 4, 30, ['order_sn' => $this->make_sn()]);
  2400. // $resp = $provider->query(['order_sn' => '30391661237853787868']);
  2401. $body = '{"szOrderId":"30391661237853787868","fSalePrice":"28.8","szAgentId":"200005","nFlag":"3","szVerifyString":"5996f052094ed3c7655ed666d66b2804","szPhoneNum":"15811535608","szRtnMsg":"","nDemo":"30"}';
  2402. $params = json_decode($body, true);
  2403. $provider = $this->getProvider('yunchonggong', 'RefillCallback');
  2404. $ret = $provider->verify($params);
  2405. $resp = $provider->notify($params);
  2406. }
  2407. public function testBingdht()
  2408. {
  2409. $provider = new refill\bingdht\RefillPhone([]);
  2410. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2411. // $resp = $provider->query(['order_sn' => '62491626761331174794']);
  2412. // $data = '{"szOrderId":"62491626761331174794","fSalePrice":"45.25","szAgentId":"200044","nFlag":"3","szVerifyString":"46745191d31b16ee7978a7f5554357d6","szPhoneNum":"18500608333","szRtnMsg":"","nDemo":"50"}';
  2413. // $input = json_decode($data, true);
  2414. // refill\RefillFactory::instance()->notify('bingdht',$input);
  2415. $resp = $provider->balance();
  2416. }
  2417. public function testYuecheng()
  2418. {
  2419. $provider = new refill\yuecheng\RefillPhone([]);
  2420. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2421. // $resp = $provider->query(['order_sn' => '45101626776884387650']);
  2422. $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"}';
  2423. $input = json_decode($data, true);
  2424. refill\RefillFactory::instance()->notify('yuecheng',$input);
  2425. }
  2426. public function testPrice()
  2427. {
  2428. $amounts = [10, 20, 30, 50, 100, 200, 300, 500];
  2429. $rate = 0.994;
  2430. foreach ($amounts as $amount) {
  2431. $price[] = $amount * $rate;
  2432. }
  2433. }
  2434. public function testCallbackDir()
  2435. {
  2436. $path = "/callback";
  2437. $file = "/mobile/callback/refill_call.php";
  2438. $basename = basename($file);
  2439. $tmp = "{$path}/{$basename}.php";
  2440. return file_exists($tmp);
  2441. }
  2442. public function testWeisPhone()
  2443. {
  2444. $provider = new refill\weisyd\RefillPhone([]);
  2445. $resp = $provider->add(17801048874, 4, 10, ['order_sn' => $this->make_sn()]);
  2446. }
  2447. public function testXcPhone()
  2448. {
  2449. $provider = new refill\xc\RefillPhone([]);
  2450. $resp = $provider->add(13699279618, 5, 100, ['order_sn' => $this->make_sn()]);
  2451. // $resp = $provider->query(['order_sn' => '87961616926444043617']);
  2452. $params['pay_orderid'] = '87961616926444043617';
  2453. $params['pay_iphone'] = '18500608333';
  2454. $params['pay_money'] = '100';
  2455. $params['wt_orderid'] = '202103281816121070';
  2456. $params['status'] = '1';
  2457. $params['sign'] = 'f7be2e859a5a6dc7b1a8273361617752';
  2458. // refill\RefillFactory::instance()->notify('xc',$params);
  2459. }
  2460. public function testAfandPhone()
  2461. {
  2462. $provider = new refill\afand\RefillPhone([]);
  2463. // for ($i = 3; $i > 0; --$i) {
  2464. $resp = $provider->query(['order_sn' => '540668612768904780']);
  2465. // }
  2466. }
  2467. public function testAfandengPhone()
  2468. {
  2469. $provider = new refill\afandeng\RefillPhone([]);
  2470. // for ($i = 5; $i > 0; --$i) {
  2471. $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  2472. // }
  2473. // $resp = $provider->query(['order_sn' => '20941616115610023539']);
  2474. // $params['usr'] = 'afandeng';
  2475. // $params['ord'] = '20941616115610023539';
  2476. // $params['state'] = '2';
  2477. // $params['bz'] = '';
  2478. // $params['sgn'] = 'BA2C9D379C3EB648A0B7AAB3A21A3F6A';
  2479. // refill\RefillFactory::instance()->notify('afandeng',$params);
  2480. }
  2481. public function testWantongPhone()
  2482. {
  2483. $provider = new refill\wantong\RefillPhone([]);
  2484. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  2485. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  2486. $resp = $provider->query(['order_sn' => '26061618988575301841']);
  2487. $data = '{"uid":"97396885","order_no":"26061618988575301841","mobile_order_no":"","phone_number":"13699279618","face_value":"3000","status":"9","sign":"1a019202656cf4feffe715025fab01bf"}';
  2488. $input = json_decode($data, true);
  2489. // refill\RefillFactory::instance()->notify('wantong',$input);
  2490. }
  2491. public function testXunyinPhone()
  2492. {
  2493. $provider = $this->getProvider('xunyin');
  2494. $resp = $provider->balance();
  2495. // $resp = $provider->add(17703711950, 6, 30, ['order_sn' => $this->make_sn()]);
  2496. // $resp = $provider->query(['order_sn' => '76831617176125893158']);
  2497. // $xml = '<Order><cpid>8417</cpid><orderid>40591617173295524057</orderid><order_no>14784226</order_no><msg>充值中</msg><Code>0000</Code><Cards/></Order>';
  2498. // $resp = $provider->xmlToArray($xml);
  2499. // if ($resp['Code'] === '0000') {
  2500. // return [true, $resp['order_no'], false];
  2501. // } else {
  2502. // return [false, $resp['msg'], false];
  2503. // }
  2504. // $params['ext'] = '';
  2505. // $params['code'] = '8888';
  2506. // $params['sign'] = '428ac223cf3a1f6f3d382aac754e8e17';
  2507. // $params['statemes'] = '成功';
  2508. // $params['id'] = '76831617176125893158';
  2509. // $params['userid'] = '8417';
  2510. // $params['operatorid'] = '1000000083421033115583773201';
  2511. // $params['status'] = 'SUCCESS';
  2512. // refill\RefillFactory::instance()->notify('xunyin',$params);
  2513. $resp = $provider->balance();
  2514. }
  2515. public function testFenshengPhone()
  2516. {
  2517. $file = BASE_HELPER_RAPI_PATH . "/qianqian/RefillPhone.php";
  2518. if(!file_exists($file)){
  2519. Log::record("provider api file={$file} not exist.",Log::DEBUG);
  2520. return false;
  2521. } else {
  2522. require_once($file);
  2523. Log::record("file={$file} load success.",Log::DEBUG);
  2524. }
  2525. $provider = new refill\qianqian\RefillPhone([]);
  2526. $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  2527. // $resp = $provider->query(['order_sn' => '27511617764278021035']);
  2528. // $datas = '[{"orderNo":"F2104071058069438461","status":"001","consumerNo":"27511617764278021035","voucherNo":"510490688023364042","mobile":"13699279618"}]';
  2529. // $datas = json_decode($datas,true);
  2530. // foreach ($datas as $data) {
  2531. // refill\RefillFactory::instance()->notify('fensheng',$data);
  2532. // }
  2533. }
  2534. public function testQianqianPhone()
  2535. {
  2536. $provider = new refill\qianqian\RefillPhone([]);
  2537. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  2538. // $resp = $provider->query(['order_sn' => '27511617764278021035']);
  2539. // $datas = '[{"orderNo":"F2104071058069438461","status":"001","consumerNo":"27511617764278021035","voucherNo":"510490688023364042","mobile":"13699279618"}]';
  2540. // $datas = json_decode($datas,true);
  2541. // foreach ($datas as $data) {
  2542. // refill\RefillFactory::instance()->notify('fensheng',$data);
  2543. // }
  2544. $resp = $provider->balance();
  2545. }
  2546. public function testQianqianmanPhone()
  2547. {
  2548. $provider = new refill\qianqianman\RefillPhone([]);
  2549. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  2550. // $resp = $provider->query(['order_sn' => '72011621236975003462']);
  2551. $data = '{"orderNo":"F2105171538062539442","status":"019","consumerNo":"72011621236975003462","voucherNo":null,"mobile":"13699279618"}';
  2552. $input = json_decode($data, true);
  2553. refill\RefillFactory::instance()->notify('qianqianman',$input);
  2554. }
  2555. public function testRiyingPhone()
  2556. {
  2557. $provider = new refill\riying\RefillPhone([]);
  2558. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  2559. $resp = $provider->query(['ch_trade_no' => '2021041311120213187423105022']);
  2560. $data = '{"UserId":"10050","SysOrderId":"2021041311120213187423105022","OrderId":"15641618283518423567","State":"4","Timestamp":"1618283565746","VoucherType":"1","VoucherContent":"511009928000087852","Sign":"a6ec70a3ea42baae941528398c6d0a43"}';
  2561. $input = json_decode($data, true);
  2562. // refill\RefillFactory::instance()->notify('riying',$input);
  2563. }
  2564. public function testWeishengyPhone()
  2565. {
  2566. $provider = new refill\weishengy\RefillPhone([]);
  2567. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  2568. // $resp = $provider->query(['order_sn' => '15551618590601301527']);
  2569. $data = '{"masId":"699270071532654592","oids":"158877719094,166090529155,158887187476","orderNo":"62411618635377880788","orderPrice":"150.00","phone":"18500608333","sign":"3EC10A32FC4CCC976048E1164D0FCBF6","status":"1","time":"1618643281063","type":"2"}';
  2570. $input = json_decode($data, true);
  2571. refill\RefillFactory::instance()->notify('weishengy',$input);
  2572. }
  2573. public function testWailingPhone()
  2574. {
  2575. $provider = new refill\wailing\RefillPhone([]);
  2576. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  2577. $resp = $provider->query(['order_sn' => '73241618543784045618']);
  2578. $data = '{"order_id":"73241618543784045618","mchid":"10045","tel":"13699279618","price":"30.00","sign":"4991de3e40f14c198b8c194455ea021b","status":"0","out_order_id":"0"}';
  2579. $input = json_decode($data, true);
  2580. // refill\RefillFactory::instance()->notify('wailing',$input);
  2581. }
  2582. public function testShengyingPhone()
  2583. {
  2584. $provider = new refill\shengying\RefillPhone([]);
  2585. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  2586. $resp = $provider->query(['order_sn' => '37571618805115582483']);
  2587. $data = '{"TaskID":"129636","Mobile":"13699279618","Status":"4","ReportTime":"2021-04-19T12:06:16.050","ReportCode":"1:511531522026586295","OutTradeNo":"37571618805115582483","ReceiptNum":"511531522026586295","Sign":"a7f46a988bc8483091d94130804e5078"}';
  2588. $input = json_decode($data, true);
  2589. // refill\RefillFactory::instance()->notify('shengying',$input);
  2590. }
  2591. public function testYunlingPhone()
  2592. {
  2593. $provider = new refill\yunling\RefillPhone([]);
  2594. // $resp = $provider->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  2595. // $resp = $provider->query(['order_sn' => '73791623147517199719']);
  2596. // $data = '{"orderid":"EAF21060818183032772","sporderid":"73791623147517199719","userid":"10002504","merchantsubmittime":"20210608181912","resultno":"1","parvalue":"30","remark1":"1000000083421060818483137636","payno":"1000000083421060818483137636","fundbalance":"-28.59","sign":"8D77517AC3905ED88BF79EE789A5FA86"}';
  2597. // $input = json_decode($data, true);
  2598. // refill\RefillFactory::instance()->notify('yunling',$input);
  2599. $resp = $provider->balance();
  2600. }
  2601. public function testZhongstPhone()
  2602. {
  2603. // $provider = $this->getProvider('zhongst');
  2604. // $resp = $provider->balance();
  2605. // $resp = $provider->add(18500608333, 5, 1, ['order_sn' => $this->make_sn()]);
  2606. // $resp = $provider->query(['order_sn' => '14941642477572151012']);
  2607. $body = '{"orderId":"220118114638207211","appId":"Jab1HfumVk","outOrderId":"14941642477572151012","sign":"4e594f9c541667ea5f07c509993932fb","orderStatus":"2","completeTime":"20220118115013","orderDesc":"\u8ba2\u5355\u6210\u529f","ext1":"110103308212201181148550490052"}';
  2608. $params = json_decode($body, true);
  2609. $provider = $this->getProvider('zhongst','RefillCallBack');
  2610. $ret = $provider->verify($params);
  2611. $resp = $provider->notify($params);
  2612. }
  2613. public function testXunaoPhone()
  2614. {
  2615. $provider = new refill\xunao\RefillPhone([]);
  2616. // $resp = $provider->add(18074608795, 6, 10, ['order_sn' => $this->make_sn()]);
  2617. // $resp = $provider->query(['order_sn' => '40021619431386253803', 'card_no' => 18074608795, 'card_type' => 6]);
  2618. // $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"}';
  2619. // $input = json_decode($data, true);
  2620. // refill\RefillFactory::instance()->notify('xunao',$input);
  2621. $resp = $provider->balance();
  2622. }
  2623. public function testYonghePhone()
  2624. {
  2625. $provider = new refill\yonghe\RefillPhone([]);
  2626. // $resp = $provider->add(13699279618, 4, 30, ['order_sn' => $this->make_sn()]);
  2627. // $resp = $provider->query(['order_sn' => '20461619597297972685']);
  2628. // $data = '{"szOrderId":"20461619597297972685","fSalePrice":"29.955","szAgentId":"200115","nFlag":"2","szVerifyString":"b5c292a13c5e67a9b850eb37239682ae","szPhoneNum":"13699279618","szRtnMsg":"2021042822001139701437383521","nDemo":"30"}';
  2629. // $input = json_decode($data, true);
  2630. // refill\RefillFactory::instance()->notify('yonghe',$input);
  2631. $resp = $provider->balance();
  2632. }
  2633. public function testJumiPhone()
  2634. {
  2635. $provider = new refill\jumikc\RefillPhone([]);
  2636. // $resp = $provider->add(13699279618, 4, 50, ['order_sn' => $this->make_sn()]);
  2637. // $resp = $provider->query(['order_sn' => '12161619768293529384']);
  2638. // $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"}';
  2639. // $input = json_decode($data, true);
  2640. // refill\RefillFactory::instance()->notify('jumi',$input);
  2641. $resp = $provider->balance();
  2642. }
  2643. public function testJumiOil()
  2644. {
  2645. $provider = new refill\jumi\RefillOil([]);
  2646. // $resp = $provider->add(1000111100021211884, 2, 100, ['order_sn' => $this->make_sn()]);
  2647. // $resp = $provider->query(['order_sn' => '29021620617872685187']);
  2648. $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"}';
  2649. $input = json_decode($data, true);
  2650. refill\RefillFactory::instance()->notify('jumi',$input);
  2651. }
  2652. public function testFengyePhone()
  2653. {
  2654. $provider = new refill\fengye\RefillPhone([]);
  2655. // $resp = $provider->add(18074608795, 6, 50, ['order_sn' => $this->make_sn()]);
  2656. // $resp = $provider->query(['order_sn' => '53511620355988978053', 'card_no' => 18074608795, 'card_type' => 6]);
  2657. $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"}';
  2658. $input = json_decode($data, true);
  2659. refill\RefillFactory::instance()->notify('fengye',$input);
  2660. }
  2661. public function testYunsuoyaoPhone()
  2662. {
  2663. $provider = new refill\yunsuoyao\RefillPhone([]);
  2664. // $resp = $provider->add(18500608333, 5, 30, ['order_sn' => $this->make_sn()]);
  2665. // $resp = $provider->query(['order_sn' => '20431621331092296201']);
  2666. // $data = '{"orderid":"RLU21051817441937847","sporderid":"20431621331092296201","userid":"10002501","merchantsubmittime":"20210518174858","resultno":"9","parvalue":"30","remark1":"","payno":"","fundbalance":"-28.74","sign":"426EAC103B79505BAE7AB3F16886F1A8"}';
  2667. // $input = json_decode($data, true);
  2668. // refill\RefillFactory::instance()->notify('yunsuoyao',$input);
  2669. $resp = $provider->balance();
  2670. }
  2671. public function testAfdPhone()
  2672. {
  2673. $provider = new refill\afd\RefillPhone([]);
  2674. // $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2675. // $resp = $provider->query(['order_sn' => '71001621233525947994']);
  2676. $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"}';
  2677. $input = json_decode($data, true);
  2678. refill\RefillFactory::instance()->notify('afd',$input);
  2679. }
  2680. public function testLuqianPhone()
  2681. {
  2682. $provider = new refill\luqian\RefillPhone([]);
  2683. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  2684. $resp = $provider->query(['order_sn' => '2829660672500596314764']);
  2685. $data = '{"amount":"100","charge_type":"0","code":"1","partner_id":"38","phone":"18500608333","sign":"c2c86cccc73fa991a63c369e683c91f2","partner_order_no":"34101618897099329575","official_order_id":"110103308072104201338340278420"}';
  2686. $input = json_decode($data, true);
  2687. // refill\RefillFactory::instance()->notify('luqian',$input);
  2688. }
  2689. public function testAfandfsPhone()
  2690. {
  2691. $provider = new refill\afandfs\RefillPhone([]);
  2692. // $resp = $provider->add(15139608757, 4, 30, ['order_sn' => $this->make_sn()]);
  2693. // $resp = $provider->query(['order_sn' => '65101618975926761630']);
  2694. // $data = '{"amount":"30","charge_type":"2","code":"1","partner_id":"52","phone":"15139608757","sign":"a7f54c1ac3e1af72f9fc849086cc4bec","partner_order_no":"65101618975926761630","official_order_id":"20210421113256628350"}';
  2695. // $input = json_decode($data, true);
  2696. // refill\RefillFactory::instance()->notify('afandfs',$input);
  2697. $resp = $provider->balance();
  2698. }
  2699. public function testYunlingfsPhone()
  2700. {
  2701. $provider = $this->getProvider('yunlingfs');
  2702. $resp = $provider->add(18074608795, 6, 10, ['order_sn' => $this->make_sn()]);
  2703. // $resp = $provider->query(['order_sn' => '79251623739433607563']);
  2704. // $data = '{"orderid":"BGC21061514434393910","sporderid":"79251623739433607563","userid":"10002543","merchantsubmittime":"20210615144434","resultno":"1","parvalue":"50","remark1":"20210615144420321813","payno":"20210615144420321813","fundbalance":"-47.65","sign":"6B9B7C15A3F9CBC773562327B6744B1E"}';
  2705. // $input = json_decode($data, true);
  2706. // refill\RefillFactory::instance()->notify('yunlingfs',$input);
  2707. // $resp = $provider->balance();
  2708. }
  2709. public function testTianchengPhone()
  2710. {
  2711. $provider = new refill\tiancheng\RefillPhone([]);
  2712. // $resp = $provider->add(18074608795, 6, 30, ['order_sn' => $this->make_sn()]);
  2713. // $resp = $provider->query(['order_sn' => '15301619399212504464']);
  2714. // $data = ' {"result":"fail","msg":"0","order":"null","phone_no":"13699279618","amount":"10","op_no":"84801619340283980506","settle":"0","sign":"D64039ED791920B08BDA9DD95700C0E6"}';
  2715. // $input = json_decode($data, true);
  2716. // refill\RefillFactory::instance()->notify('tiancheng',$input);
  2717. $resp = $provider->balance();
  2718. }
  2719. public function testLingzhPhone()
  2720. {
  2721. $provider = new refill\lingzh\RefillPhone([]);
  2722. // $resp = $provider->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  2723. // $resp = $provider->query(['order_sn' => '59911615124025101286']);
  2724. $resp = $provider->balance();
  2725. // $input['usr'] = 1;
  2726. // $input['ord'] = '52741615119546453690';
  2727. // $input['bz'] = '';
  2728. // $input['state'] = 2;
  2729. // $input['sgn'] = 'FFCBB75C307154DD306F4EC75BB69A6D';
  2730. // refill\RefillFactory::instance()->notify('lingzh',$input);
  2731. }
  2732. public function testAfandnewPhone()
  2733. {
  2734. $provider = new refill\afandnew\RefillPhone([]);
  2735. // $resp = $provider->add(18500608333, 5, 100, ['order_sn' => $this->make_sn()]);
  2736. // $resp = $provider->query(['order_sn' => '45371617101073876975', 'ch_trade_no' => '33018443659736309']);
  2737. $params = '{"amount":"100","carrierOrderNo":null,"mobile":"18500608333","orderNo":"45371617101073876975","orderStatus":3,"sign":"8DE392AD6B4730AD9EE0FC2B95BBDF17","tradeNo":"33018443659736309"}';
  2738. $input = json_decode($params, true);
  2739. refill\RefillFactory::instance()->notify('afandnew', $input);
  2740. }
  2741. public function testYifaPhone()
  2742. {
  2743. $provider = new refill\yifa\RefillPhone([]);
  2744. $resp = $provider->add(15120035568, 5, 50, ['order_sn' => $this->make_sn()]);
  2745. }
  2746. public function testTianjtOil()
  2747. {
  2748. $cardno = 1000111100021211884;
  2749. $provider = new refill\tianjt\RefillOil([]);
  2750. $resp = $provider->add($cardno, 2, 500, ['order_sn' => $this->make_sn()]);
  2751. }
  2752. public function testWeitPhone()
  2753. {
  2754. $provider = new refill\weit\RefillPhone([]);
  2755. for ($i = 0; $i <= 10; $i++) {
  2756. $resp = $provider->add(18500608333, 5, 10, ['order_sn' => $this->make_sn()]);
  2757. }
  2758. }
  2759. public function testWeitCB()
  2760. {
  2761. $params['sign'] = 'af820c33472f4b571fa0c48483dfb975';
  2762. $params['status'] = 0;
  2763. $params['price'] = 30;
  2764. $params['op_order_id'] = '';
  2765. $params['mch_order_id'] = '900664281823957221';
  2766. $params['pt_order_id'] = '2021011802434412825405218901';
  2767. $params['pay_type'] = '';
  2768. $params['tel'] = 18500608333;
  2769. $params['mchid'] = 10014;
  2770. $resp = http_request($this->mReqHost . "/mobile/refill_weit.php", $params, 'POST');
  2771. }
  2772. public function testYifaCB()
  2773. {
  2774. $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"}';
  2775. $input = json_decode($body, true);
  2776. refill\RefillFactory::instance()->notify('yifa', $input);
  2777. }
  2778. public function testBjbQuery()
  2779. {
  2780. $provider = new refill\bjb\RefillPhone([]);
  2781. $refill_info = ['order_sn' => 110667993758599771, 'ch_trade_no' => 499, 'card_no' => 1000111200005252927];
  2782. $resp = $provider->query($refill_info);
  2783. }
  2784. public function testXcQuery()
  2785. {
  2786. $provider = new refill\xc\RefillPhone([]);
  2787. $refill_info = ['order_sn' => 950663423236726632, 'ch_trade_no' => 499, 'card_no' => 1000111200005252927];
  2788. $resp = $provider->query($refill_info);
  2789. }
  2790. public function testTianjtQuery()
  2791. {
  2792. $provider = new refill\tianjt\RefillOil([]);
  2793. $refill_info = ['order_sn' => 680665862267622221, 'ch_trade_no' => 499, 'card_no' => 1000111200005252927];
  2794. $resp = $provider->query($refill_info);
  2795. }
  2796. public function testSaihuOil()
  2797. {
  2798. $provider = new refill\saihu\RefillOil([]);
  2799. $resp = $provider->add(1000111100021211884, 2, 100, ['order_sn' => $this->make_sn()]);
  2800. }
  2801. public function testBdtOil()
  2802. {
  2803. $provider = new refill\bdt\RefillOil([]);
  2804. $resp = $provider->add(1000111100021211884, 2, 100, ['order_sn' => '200229600556618886']);
  2805. }
  2806. public function testGFTDOil()
  2807. {
  2808. $provider = new refill\gftd\RefillOil([]);
  2809. $resp = $provider->add(1000111100020445281, mtopcard\SinopecCard, 100, ['order_sn' => $this->make_sn()]);
  2810. }
  2811. public function testYichangtOil()
  2812. {
  2813. $provider = $this->getProvider('yichangt','RefillOil');
  2814. // $resp = $provider->balance();
  2815. $resp = $provider->add(1000111100021211884, mtopcard\SinopecCard, 50, ['order_sn' => $this->make_sn()]);
  2816. // $resp = $provider->query(['order_sn' => '86471642400354465488']);
  2817. }
  2818. public function testYichangt_hf()
  2819. {
  2820. $provider = $this->getProvider('yichangt_hf');
  2821. // $resp = $provider->balance();
  2822. $resp = $provider->add(18500608333, 5, 50, ['order_sn' => $this->make_sn()]);
  2823. // $resp = $provider->query(['order_sn' => '33161643533975771522']);
  2824. }
  2825. public function testYichangt_doubi()
  2826. {
  2827. $provider = $this->getProvider('yichangt_doubi');
  2828. // $resp = $provider->balance();
  2829. // $card_no = ['WK6788','575547903','1249835915','1943707492','LYYY520999','a88254587','45871584136','1877477562','1983377511','22291865790','1617206604','yy8672','1179363707','1770307081','Kurama..','Kakin0821','linxiaomi882','996407176','dyoehdm1c5sm','zhongge7686','1639978001','24198995','lbxb8023','setmefreeboy','setmefreeboy','JY20080121ZQ','25416140735','zg199388','dyt23c595wy8','1471177523','IP66600000','989501943','Maoxianwanglion','zouwenbin','tianshanzhid33','OscarKing1017','131250753','844740031','Bst0528','86391613636','880213019','59706196913','lieyinghusha','1190084099','42447950732','937099409','helei55432','mxy13629303898'];
  2830. $card_no = ['WK6788','575547903','1249835915','1943707492','LYYY520999','a88254587','45871584136','1877477562','1983377511','22291865790','1617206604','yy8672','1179363707','1770307081','Kurama..','Kakin0821','linxiaomi882','996407176','dyoehdm1c5sm'];
  2831. foreach ($card_no as $no)
  2832. {
  2833. $order_sn = $this->make_sn();
  2834. $resp = $provider->add($no, mtopcard\ThirdRefillCard, 100, ['order_sn' => $order_sn]);
  2835. $order_sns[] = $order_sn;
  2836. }
  2837. $order_sns = json_encode($order_sns);
  2838. Log::record("{$order_sns}");
  2839. // $resp = $provider->query(['order_sn' => '78111640843635846927']);
  2840. }
  2841. public function testGFTDCB()
  2842. {
  2843. $data = '{"channelOrderNumber":"79091610959059372019","orderNumber":"GYFL1610959060397001","message":"充值成功","storage":"881036222bd8f067ff47d248c75f4c8d","voucher":"","status":101}';
  2844. $url = "http://192.168.1.220/mobile/refill_gftd.php?" . $data;
  2845. $resp = http_post_data($url, $data, ['Content-Type: application/json;charset=UTF-8;', 'Accept:application/json;charset=UTF-8;']);
  2846. }
  2847. public function testJiecPhone()
  2848. {
  2849. $provider = new refill\jiec\RefillPhone([]);
  2850. $resp = $provider->add('18500608333', 5, 30, ['order_sn' => $this->make_sn()]);
  2851. }
  2852. public function testBxtwtCB()
  2853. {
  2854. $data = '{"order_number":18219726,"shipping_status":4,"shipping_status_desc":"发货失败","shipping_status_message":"","sign":"863b4d972f2a4d39a9af7396879116c4","voucher":"","vouchertype":"","voucherurl":"","tradeNo":"100662475851197741"}';
  2855. }
  2856. public function testTianjtJDVerify()
  2857. {
  2858. $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';
  2859. $url = "http://192.168.1.220/mobile/refill_tianjt.php?" . $data;
  2860. $resp = http_request($url);
  2861. }
  2862. public function testSuhcPDD()
  2863. {
  2864. $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';
  2865. $url = "https://www.xyzshops.cn/mobile/refill_suhcpdd.php?" . $data;
  2866. $resp = http_request($url);
  2867. }
  2868. public function testSuhcTMVerify()
  2869. {
  2870. $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';
  2871. $url = "https://www.xyzshops.cn/mobile/refill_suhctm.php?" . $data;
  2872. $resp = http_request($url);
  2873. }
  2874. public function testBeixtVerify()
  2875. {
  2876. $data = '{"order_number":18219726,"shipping_status":4,"shipping_status_desc":"发货失败","shipping_status_message":"","sign":"863b4d972f2a4d39a9af7396879116c4","voucher":"","vouchertype":"","voucherurl":"","tradeNo":"100662475851197741"}';
  2877. $url = "https://www.xyzshops.cn/mobile/refill_bxtwt.php";
  2878. $headers = ['Content-Type: application/json'];
  2879. $resp = http_post_data($url, $data, $headers);
  2880. }
  2881. public function testInput()
  2882. {
  2883. $input = fopen("php://input", "rw");
  2884. file_put_contents($input, 'xxxx');
  2885. $content = file_get_contents('php://input');
  2886. }
  2887. public function testUrl()
  2888. {
  2889. $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';
  2890. $params = preg_split('/&/', $data);
  2891. foreach ($params as $pair) {
  2892. $kv = explode('=', $pair);
  2893. $count = count($kv);
  2894. if ($count === 1) {
  2895. $key = $kv[0];
  2896. $val = "";
  2897. } elseif ($count === 2) {
  2898. $key = $kv[0];
  2899. $val = $kv[1];
  2900. } else {
  2901. continue;
  2902. }
  2903. Log::record("{$key}:{$val}", Log::DEBUG);
  2904. }
  2905. }
  2906. public function testAddoil()
  2907. {
  2908. $url = $this->mReqHost . "/mobile/index.php";
  2909. $notifyurl = 'http://121.89.196.45/mobile/signature.php';
  2910. $params = ['mchid' => $this->mMchid,
  2911. 'cardno' => '1000111100020445281',
  2912. 'amount' => "100",
  2913. "act" => "refill",
  2914. "op" => "add",
  2915. 'order_sn' => $this->make_sn(),
  2916. 'notifyurl' => $notifyurl];
  2917. $resp = $this->send_md5($url, $params);
  2918. Log::record($resp, Log::DEBUG);
  2919. }
  2920. public function testBalance()
  2921. {
  2922. $url = $this->mReqHost . "/mobile/index.php";
  2923. $params = ['mchid' => 1092,
  2924. "act" => "refill",
  2925. "op" => "balance"];
  2926. $resp = $this->send_md5($url, $params);
  2927. Log::record($resp, Log::DEBUG);
  2928. }
  2929. public function testNotify()
  2930. {
  2931. $params = [
  2932. "mchid" => 10202,
  2933. "order_sn" => '21090216132600003_11675',
  2934. "amount" => '30.00',//intval($refill_info['refill_amount'] + 0.05),
  2935. "cardno" => 18639492164,
  2936. "trade_no" => 8693160683914496896438,
  2937. "idcard" => "",
  2938. "card_name" => "",
  2939. 'official_sn' => "",
  2940. 'message' => "匹配不到合适的充值通道",
  2941. "state" => 'CANCEL'];
  2942. $sign = $this->md5_sign($params,'KxK9f3yaBDOXVwvuOKDozvQ9Mt1CoqRX');
  2943. $notify_url = 'https://openapi-gateway-test.bbinsure.cn/ants_charge/v1/charge/order/notify/yeziOrderNew/1140';
  2944. $resp = http_request($notify_url, $params, 'POST');
  2945. }
  2946. public function testAddPhoe()
  2947. {
  2948. $url = $this->mReqHost . "/mobile/index.php";
  2949. $params = ['mchid' => $this->mMchid,
  2950. 'cardno' => '',
  2951. 'amount' => 100,
  2952. "act" => "refill",
  2953. "op" => "add",
  2954. 'order_sn' => '',
  2955. 'notifyurl' => "https://www.baoyung.com/api/unionservice/yezicharge"];
  2956. Log::record(json_encode($params), Log::DEBUG);
  2957. // $resp = $this->send_md5($url, $params);
  2958. }
  2959. public function testProxyHelper()
  2960. {
  2961. $phone = '13911129867';
  2962. $amount = 100;
  2963. $url = $this->mReqHost . "/mobile/index.php";
  2964. $params = ['mchid' => $this->mMchid,
  2965. 'cardno' => $phone,
  2966. 'amount' => $amount,
  2967. "act" => "refill",
  2968. "op" => "add",
  2969. 'order_sn' => $this->make_sn(),
  2970. 'notifyurl' => "https://xxx"];
  2971. $proxy = new refill_proxy("xxx");
  2972. $resp = $proxy->send($url, $params);
  2973. }
  2974. public function testGoods()
  2975. {
  2976. $req_url = $this->mReqHost . '/mobile/index.php';
  2977. $params = ['mchid' => $this->mMchid,
  2978. "act" => "refill",
  2979. "op" => "goods"];
  2980. $resp = $this->send_md5($req_url, $params);
  2981. }
  2982. public function testQueryFactory()
  2983. {
  2984. refill\RefillFactory::instance()->query(295);
  2985. }
  2986. public function testQuery()
  2987. {
  2988. //$req_url = 'https://www.xyzshops.cn/mobile/index.php';
  2989. // $notifyurl = 'https://www.xyzshops.cn/mobile/signature.php';
  2990. $req_url = BASE_SITE_URL . '/mobile/index.php';
  2991. $notifyurl = 'https://www.xyzshops.cn/mobile/signature.php';
  2992. $params = ['mchid' => 1,
  2993. "act" => "refill",
  2994. "op" => "query",
  2995. 'order_sn' => "13281476"];
  2996. $resp = $this->send_md5($req_url, $params);
  2997. }
  2998. public function testRemoveSession()
  2999. {
  3000. $resp = http_request(BASE_SITE_URL . "/mobile/signature.php", [], 'POST');
  3001. }
  3002. public function testTianjtCB()
  3003. {
  3004. // $notifyurl = BASE_SITE_URL . "/mobile/refill_tianjt.php";
  3005. $notifyurl = "https://www.xyzshops.cn/mobile/refill_tianjt.php";
  3006. // $notifyurl = "https%3A%2F%2Fwww.xyzshops.cn%2Fmobile%2Frefill_tianjt.php";
  3007. $params = ['onlystr' => '690665858589475818',
  3008. 'amt' => 1000,
  3009. 'jdno' => '',
  3010. 'notifyurl' => $notifyurl,
  3011. 'cardtype' => 'Sinoepc',
  3012. 'batchid' => 30589,
  3013. 'cardno' => '1000113300007993287',
  3014. 'orgid' => '1590993600',
  3015. 'status' => 3];
  3016. $sign = $this->md5_sign($params);
  3017. $params['sign'] = $sign;
  3018. $resp = http_request($notifyurl, $params, 'POST');
  3019. Log::record($resp, Log::DEBUG);
  3020. }
  3021. public function testBJBCB()
  3022. {
  3023. $params = [
  3024. 'usr' => '13699279618',
  3025. 'ord' => '710662733975412771',
  3026. 'state' => '2',
  3027. 'bz' => '',
  3028. 'sgn' => 'AC9AFD254DE682D8440A97CA68B992DA'
  3029. ];
  3030. $resp = http_request("https://www.xyzshops.cn/mobile/refill_bjb.php", $params, 'POST');
  3031. }
  3032. public function testJiecCB()
  3033. {
  3034. $params['result'] = 'fail';
  3035. $params['msg'] = '0';
  3036. $params['order'] = 'null';
  3037. $params['phone_no'] = '18500608333';
  3038. $params['amount'] = '30.00';
  3039. $params['op_no'] = '800663597981819221';
  3040. $params['sign'] = '2510046895e8e12322c8a32547905ee9';
  3041. $resp = http_request($this->mReqHost . "/mobile/refill_jiec.php", $params, 'POST');
  3042. }
  3043. public function testZFKJ()
  3044. {
  3045. //带签名参数:mchid=1090&act=refill&op=add&cardno=100112121212212133
  3046. //&amount=10&order_sn=PH2012261356569433&
  3047. //notifyurl=https%3A%2F%2Fqzcz.edusahoo.com.cn%2Findex%2Findex%2Fcallback
  3048. //&sign=4a3ac5f9706e64aa70c6cab0fc5839d3
  3049. $params = ['mchid' => 1090,
  3050. 'cardno' => '100112121212212133',
  3051. 'amount' => '10',
  3052. "act" => "refill",
  3053. "op" => "add",
  3054. 'order_sn' => 'PH2012261356569433',
  3055. 'notifyurl' => 'https://qzcz.edusahoo.com.cn/index/index/callback'];
  3056. $resp = $this->send_md5(BASE_SITE_URL . '/mobile/index.php', $params);
  3057. }
  3058. protected function check_empty($value)
  3059. {
  3060. if (!isset($value))
  3061. return true;
  3062. if ($value === null)
  3063. return true;
  3064. if (trim($value) === "")
  3065. return true;
  3066. return false;
  3067. }
  3068. public function testcreateSign()
  3069. {
  3070. $params['act'] = 'refill';
  3071. $params['amount'] = '30';
  3072. $params['cardno'] = '18111516552';
  3073. $params['mchid'] = '10179';
  3074. $params['notifyurl'] = 'http://czapi2.1jinb.net/YeZiHCCallBackOrderServlet';
  3075. $params['op'] = 'add';
  3076. $params['order_sn'] = 'JFNOR10835056877';
  3077. $sign = $this->md5_sign($params);
  3078. }
  3079. public function testCheckphone()
  3080. {
  3081. $check = function ($phone) {
  3082. $url = 'https://mobileempty.shumaidata.com/mobileempty';
  3083. $params['mobile'] = $phone;
  3084. $headers = array();
  3085. array_push($headers, "Authorization:APPCODE " . '8f92d951293f4d2ea48ff86d5a70c537');
  3086. $resp = http_request($url, $params, 'GET', false, $headers);
  3087. $resp = json_decode($resp, true);
  3088. if ($resp['success'] == true && $resp['code'] == 200) {
  3089. Log::record("data phone:{$phone} , status : {$resp['data']['status']}", Log::DEBUG);
  3090. if (in_array($resp['data']['status'], [0, 3, 4, 5])) {
  3091. return false;
  3092. }
  3093. } else {
  3094. Log::record("data phone:{$phone} , 不支持的号段", Log::DEBUG);
  3095. }
  3096. };
  3097. $check(17801048874);
  3098. }
  3099. public function testCtSign()
  3100. {
  3101. $params['act'] = 'refill';
  3102. $params['op'] = 'add';
  3103. $params['mchid'] = '10198';
  3104. $params['cardno'] = '18696902060';
  3105. $params['amount'] = '30';
  3106. $params['order_sn'] = '163782007236900000878';
  3107. $params['notifyurl'] = 'http://open.apiwater.xyz:20801/';
  3108. $sign = $this->md5_sign($params,'b9b30f57eac34a398a7534021fa23a16');
  3109. }
  3110. private function md5_sign($params,$key = '')
  3111. {
  3112. ksort($params);
  3113. $body = "";
  3114. $i = 0;
  3115. foreach ($params as $k => $v) {
  3116. if (false === $this->check_empty($v) && "@" != substr($v, 0, 1)) {
  3117. if ($i == 0) {
  3118. $body .= "{$k}" . "=" . urlencode($v);
  3119. } else {
  3120. $body .= "&" . "{$k}" . "=" . urlencode($v);
  3121. }
  3122. $i++;
  3123. }
  3124. }
  3125. $body .= "&key={$key}";
  3126. return md5($body);
  3127. }
  3128. public function testCallMech()
  3129. {
  3130. $logic = Logic('queue');
  3131. $logic->NotifyMerchantComplete(['order_id' => 18171, 'manual' => true]);
  3132. }
  3133. //docker-compose run phpcli php /var/www/html/phpunit-9.2.5.phar --filter "/(TestRefill::testCallMech)( .*)?$/" --test-suffix TestRefill.php /var/www/html/test
  3134. private function send($url, $params)
  3135. {
  3136. $mchid = $params['mchid'];
  3137. $pri_key = BASE_DATA_PATH . "/api/merchant/key/{$mchid}_pri.pem";
  3138. $key = file_get_contents($pri_key);
  3139. $pri = openssl_get_privatekey($key);
  3140. $body = $this->body($params);
  3141. openssl_sign($body, $signed, $pri);
  3142. $sign = base64_encode($signed);
  3143. $params['sign'] = $sign;
  3144. $resp = http_request($url, $params, 'POST');
  3145. Log::record("resp:{$resp}", Log::DEBUG);
  3146. }
  3147. private function send_md5($url, $params)
  3148. {
  3149. $body = $this->body($params);
  3150. $body .= "&key={$this->mKey}";
  3151. $params['sign'] = md5($body);
  3152. $resp = http_request($url, $params, 'POST');
  3153. Log::record("resp:{$resp}", Log::DEBUG);
  3154. return $resp;
  3155. }
  3156. public function testCardType()
  3157. {
  3158. $cardno = '1000111100021211884';
  3159. $ret = preg_match('/^1[0-9]{18}$/', $cardno, $matches);
  3160. }
  3161. public function testMtrand()
  3162. {
  3163. }
  3164. public function testHttpRefill()
  3165. {
  3166. $mchid = '000001';
  3167. $pri_key = BASE_DATA_PATH . "/api/merchant/key/{$mchid}_pri.pem";
  3168. $key = file_get_contents($pri_key);
  3169. $pri = openssl_get_privatekey($key);
  3170. $params = ['MCHID' => $mchid, 'cardno' => '1000111100021211884', 'amt' => "100", "act" => "refill", "op" => "addoil"];
  3171. $body = $this->body($params);
  3172. openssl_sign($body, $signed, $pri);
  3173. $sign = base64_encode($signed);
  3174. $params['sign'] = $sign;
  3175. $resp = http_request(BASE_SITE_URL . "/mobile/index.php", $params, 'POST');
  3176. }
  3177. private function body($params)
  3178. {
  3179. ksort($params);
  3180. $body = "";
  3181. $i = 0;
  3182. foreach ($params as $k => $v) {
  3183. if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
  3184. if ($i == 0) {
  3185. $body .= "{$k}" . "=" . urlencode($v);
  3186. } else {
  3187. $body .= "&" . "{$k}" . "=" . urlencode($v);
  3188. }
  3189. $i++;
  3190. }
  3191. }
  3192. return $body;
  3193. }
  3194. private function checkEmpty($value)
  3195. {
  3196. if (!isset($value))
  3197. return true;
  3198. if ($value === null)
  3199. return true;
  3200. if (trim($value) === "")
  3201. return true;
  3202. return false;
  3203. }
  3204. public function testKsort()
  3205. {
  3206. $age = ["Peter" => "35", "Ben" => "37", "Joe" => "43"];
  3207. ksort($age);
  3208. foreach ($age as $x => $x_value) {
  3209. echo "Key=" . $x . ", Value=" . $x_value;
  3210. echo "<br>";
  3211. }
  3212. }
  3213. public function testip()
  3214. {
  3215. $model_merchant = Model('merchant');
  3216. $merchant_info = $model_merchant->getMerchantInfo(['mchid' => 1]);
  3217. $ipwhitelist = unserialize($merchant_info['ip_white_list']);
  3218. $res = json_encode($ipwhitelist);
  3219. }
  3220. //测试向内部店提交订单,可先屏蔽其它充值通道
  3221. public function testAddoilToInnerStore()
  3222. {
  3223. $url = $this->mReqHost . "/mobile/index.php";
  3224. $notifyurl = BASE_SITE_URL . '/mobile/signature.php';
  3225. $params = ['mchid' => 1,
  3226. 'cardno' => '1000111100020445281',
  3227. 'amount' => "1000",
  3228. "act" => "refill",
  3229. "op" => "add",
  3230. 'order_sn' => $this->make_sn(),
  3231. 'notifyurl' => $notifyurl];
  3232. $resp = $this->send_md5($url, $params);
  3233. Log::record($resp, Log::DEBUG);
  3234. }
  3235. public function testRefillInnerCB()
  3236. {
  3237. $params = ['state_type' => 'order_cancel', 'order_id' => 311, 'channel_name' => 'lx'];
  3238. $resp = http_request(BASE_SITE_URL . '/mobile/refill_inner.php', $params, 'POST');
  3239. }
  3240. public function testArgs()
  3241. {
  3242. Log::record($_SERVER['argv'], Log::DEBUG);
  3243. }
  3244. public function testCall()
  3245. {
  3246. $order_id = 14974;
  3247. QueueClient::async_push("NotifyMerchantComplete", ['order_id' => $order_id, 'manual' => true], 10);
  3248. }
  3249. public function testSyncconfig()
  3250. {
  3251. $name_val_cfg = function ($items) {
  3252. $result = [];
  3253. foreach ($items as $item) {
  3254. $name = $item->name();
  3255. $result[$name] = $item;
  3256. }
  3257. return $result;
  3258. };
  3259. $name_val_row = function ($items) {
  3260. $result = [];
  3261. foreach ($items as $item) {
  3262. $name = $item['name'];
  3263. $result[$name] = $item;
  3264. }
  3265. return $result;
  3266. };
  3267. $match = function ($all, $cur) {
  3268. $insert = [];
  3269. foreach ($all as $key => $value) {
  3270. if (!array_key_exists($key, $cur)) {
  3271. $insert[] = $key;
  3272. }
  3273. }
  3274. return $insert;
  3275. };
  3276. $inserter = function ($mod, $type, $names) {
  3277. foreach ($names as $name) {
  3278. $data = ['name' => $name, 'type' => $type];
  3279. $mod->insert($data);
  3280. }
  3281. };
  3282. $provider = refill\RefillFactory::instance()->providers();
  3283. $oils = $name_val_cfg($provider['oil']);
  3284. $phones = $name_val_cfg($provider['phone']);
  3285. $mod_prov = Model('refill_provider');
  3286. $oil_items = $mod_prov->getProviderList(['type' => 1]);
  3287. $oil_items = $name_val_row($oil_items);
  3288. $oil_inserts = $match($oils, $oil_items);
  3289. $phone_items = $mod_prov->getProviderList(['type' => 2]);
  3290. $phone_items = $name_val_row($phone_items);
  3291. $phone_inserts = $match($phones, $phone_items);
  3292. $inserter($mod_prov, 1, $oil_inserts);
  3293. $inserter($mod_prov, 2, $phone_inserts);
  3294. }
  3295. public function testStat()
  3296. {
  3297. $model_refill_order = Model('refill_order');
  3298. $stat = Model('')->table('refill_order,vr_order')->join('inner')
  3299. ->on('refill_order.order_id=vr_order.order_id')
  3300. ->field('sum(refill_amount) as refill_amounts , sum(channel_amount) as channel_amounts , sum(mch_amount) as mch_amounts')
  3301. ->where([])->select();
  3302. }
  3303. public function testRefillGoods()
  3304. {
  3305. $goods = refill\RefillFactory::instance()->goods();
  3306. }
  3307. private function make_mobile()
  3308. {
  3309. $no = "1" . mt_rand(3000000000, 3999999999);
  3310. return $no;
  3311. }
  3312. private function refill_info($card_no, $card_type)
  3313. {
  3314. $data = rcache($card_no, 'cardrefill-');
  3315. if (empty($data)) {
  3316. $mod_topcard = Model('topcard');
  3317. $ret = $mod_topcard->get_card($card_no);
  3318. if (empty($ret)) {
  3319. $bind_phone = $this->make_mobile();
  3320. $mod_topcard->add($card_no, $card_type, time(), $bind_phone);
  3321. $data['bind_phone'] = $bind_phone;
  3322. $data['refill_time'] = time();
  3323. $data['times'] = 0;
  3324. wcache($card_no, $data, 'cardrefill-');
  3325. } else {
  3326. $val = $ret[0];
  3327. $data['bind_phone'] = $val['bind_phone'];
  3328. $data['refill_time'] = time();
  3329. $data['times'] = 0;
  3330. }
  3331. }
  3332. return $data;
  3333. }
  3334. public function testGetMobile()
  3335. {
  3336. $card_no = '1000119000001679247';
  3337. $card_type = 1;
  3338. $info = $this->refill_info($card_no, $card_type);
  3339. }
  3340. private function check_mchorder($mchid, $mch_order)
  3341. {
  3342. if (empty($mch_order)) {
  3343. return true;
  3344. } else {
  3345. $refill_order = Model('refill_order');
  3346. $ret = $refill_order->getOrderInfo(['mchid' => $mchid, 'mch_order' => $mch_order]);
  3347. return empty($ret);
  3348. }
  3349. }
  3350. public function testCheckMchorder()
  3351. {
  3352. $ret = $this->check_mchorder(1, '13281475');
  3353. }
  3354. public function testMakemobile()
  3355. {
  3356. $mobile = refill\util::make_mobile();
  3357. $ret = refill\util::set_black('1000111100020445281');
  3358. }
  3359. public function testLoadBlack()
  3360. {
  3361. $path = BASE_DATA_PATH . "/log";
  3362. $names = ['20210119-mobile.log',
  3363. '20210120-mobile.log', '20210121-mobile.log', '20210122-mobile.log', '20210123-mobile.log',
  3364. '20210124-mobile.log', '20210125-mobile.log'];
  3365. foreach ($names as $name) {
  3366. $file_name = $path . "/" . $name;
  3367. refill\util::black_from_log($file_name);
  3368. }
  3369. }
  3370. public function testStats()
  3371. {
  3372. $date = date('Y-m-d', time());
  3373. $today = strtotime("{$date}");
  3374. $times_begin = function ($start) {
  3375. $times = [];
  3376. $begin = $start;
  3377. for ($i = 0; $i < 7; $i++) {
  3378. $times[] = $begin;
  3379. $begin -= 86400;
  3380. }
  3381. return $times;
  3382. };
  3383. $reader = function ($mchid, $time) {
  3384. $cond['mchid'] = $mchid;
  3385. $cond['inner_status'] = 0;
  3386. $cond['refill_order.order_time'] = ['between', [$time, $time + 86400 - 1]];
  3387. $items = Model('')->table('refill_order,vr_order')->join('inner')
  3388. ->on('refill_order.order_id=vr_order.order_id')
  3389. ->field('count(*) as order_count, vr_order.order_state, sum(mch_amount) as mch_amounts')
  3390. ->group('vr_order.order_state')
  3391. ->where($cond)->select();
  3392. return $items;
  3393. };
  3394. $begins = $times_begin($today);
  3395. $mchid = 10096;
  3396. // $states = rcache($this->mchid() , 'refillstat-');
  3397. $states = unserialize($states ?? "");
  3398. if (empty($states)) $states = [];
  3399. $result = [];
  3400. $cache = [];
  3401. foreach ($begins as $begin) {
  3402. if (array_key_exists($begin, $states)) {
  3403. $item = $states[$begin];
  3404. } else {
  3405. $item = $reader($mchid, $begin);
  3406. }
  3407. $result[$begin] = $item;
  3408. //判断item 中充值中的状态是否为0,为0的情况下放进cache
  3409. $cache = $item;
  3410. }
  3411. wcache($this->mchid(), $cache, 'refillstat-');
  3412. return $result;
  3413. }
  3414. public function testNotifyx()
  3415. {
  3416. $mch_cache = rcache("merchant-notify", 'refill-');
  3417. $caches = empty($mch_cache['data']) ? [] : unserialize($mch_cache['data']);
  3418. $new_caches = [];
  3419. $merchants = Model('merchant')->getMerchantList([], '', '', 'merchant.*,member.available_predeposit', "0,1000");
  3420. foreach ($merchants as $merchant) {
  3421. $mchid = $merchant['mchid'];
  3422. $phone = $merchant['contact_phone'] ?? "";
  3423. $available_pd = intval($merchant['available_predeposit']);
  3424. $alarm_pd = intval($merchant['alarm_amount']) < 10000 ? 10000 : intval($merchant['alarm_amount']);
  3425. if (array_key_exists($mchid, $caches)) {
  3426. $mch_cache = $caches[$mchid];
  3427. } else {
  3428. $mch_cache = ['last_time' => 0, 'send_count' => 0];
  3429. }
  3430. if (!empty($phone) && ($available_pd < $alarm_pd)) {
  3431. $counts = $mch_cache['send_count'];
  3432. if (($mch_cache['last_time'] + 300 < time()) && $counts < 5) {
  3433. $mch_cache = ['last_time' => time(), 'send_count' => $counts + 1];
  3434. QueueClient::push('sendSMS', ['mobile' => $merchant['contact_phone'],
  3435. 'type' => 'balance_warning', 'datas' => [date("m月d日H时"), $merchant['available_predeposit']]]);
  3436. }
  3437. } else {
  3438. $mch_cache = ['last_time' => 0, 'send_count' => 0];
  3439. }
  3440. $new_caches[$mchid] = $mch_cache;
  3441. }
  3442. wcache("merchant-notify", ['data' => serialize($new_caches)], 'refill-');
  3443. }
  3444. public function testReadChannel()
  3445. {
  3446. refill\RefillFactory::instance()->read_channel();
  3447. }
  3448. public function testAllow()
  3449. {
  3450. $allow = refill\RefillFactory::instance()->allow(10096, 1, 100);
  3451. }
  3452. public function testCheckData()
  3453. {
  3454. $str = '|2|110667993758599771-充值失败|';
  3455. // $str = '0|提交成功|-36557.7400';
  3456. // if(preg_match( '/^-*[0-9]{1,3}\|[\x{4e00}-\x{9fa5}]+\|-*[0-9]+\.*[0-9]+$/u',$str,$matches)) {
  3457. // return true;
  3458. // }
  3459. // if(preg_match('/^[0-3]\|[0-9]+-*[\x{4e00}-\x{9fa5}]+\|[0-9]*$/u',$str,$matches)){
  3460. // return true;
  3461. // }
  3462. // return false;
  3463. $resp = ltrim($str, '|');
  3464. $resp = explode('|', $resp);
  3465. if (count($resp) != 3) {
  3466. return [false, '返回值错误'];
  3467. }
  3468. }
  3469. public function testErrre()
  3470. {
  3471. $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}';
  3472. $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);
  3473. }
  3474. public function testExpolode()
  3475. {
  3476. $x = "HTTP-504";
  3477. [$type,$code] = explode('-',$x);
  3478. }
  3479. public function testMchctl()
  3480. {
  3481. $ctl = new refill\mchctl();
  3482. }
  3483. public function testAsyncadd()
  3484. {
  3485. $x = \refill\util::async_add(['xxxx' => 1],4);
  3486. }
  3487. private function getProvider($name,$type = 'RefillPhone')
  3488. {
  3489. $file = BASE_HELPER_RAPI_PATH . "/$name/{$type}.php";
  3490. if(!file_exists($file)){
  3491. Log::record("provider api file={$file} not exist.",Log::DEBUG);
  3492. return false;
  3493. } else {
  3494. require_once($file);
  3495. Log::record("file={$file} load success.",Log::DEBUG);
  3496. }
  3497. $class_name = "refill\\{$name}\\{$type}";
  3498. if (class_exists($class_name, false)) {
  3499. $caller = new $class_name([]);
  3500. return $caller;
  3501. } else {
  3502. $error = "Base Error: class {$class_name} isn't exists!";
  3503. Log::record($error, Log::ERR);
  3504. return false;
  3505. }
  3506. }
  3507. public function testOrderExist()
  3508. {
  3509. $refill_order = Model('refill_order');
  3510. $ret = $refill_order->exist(10116,'Yzb20210825111251415');
  3511. }
  3512. public function testRGoods()
  3513. {
  3514. $goods_list = refill\RefillFactory::instance()->goods();
  3515. }
  3516. public function testCanbu()
  3517. {
  3518. $notify = function ($resp)
  3519. {
  3520. if (empty($resp)) {
  3521. return [false, '网络错误'];
  3522. }
  3523. else
  3524. {
  3525. Log::record($resp, Log::DEBUG);
  3526. $resp = json_decode($resp, true);
  3527. if (empty($resp)) {
  3528. return [false, '网络错误'];
  3529. }
  3530. if($resp['code'] == 1)
  3531. {
  3532. $status = $resp['data']['status'];
  3533. if ($status == 'success') {
  3534. $order_state = ORDER_STATE_SUCCESS;
  3535. } elseif ($status == 'failed') {
  3536. $order_state = ORDER_STATE_CANCEL;
  3537. } elseif ($status == 'wait') {
  3538. $order_state = ORDER_STATE_SEND;
  3539. } else {
  3540. return [false, $status];
  3541. }
  3542. return [true, $order_state];
  3543. }
  3544. elseif($resp['code'] == -1 && $resp['msg'] == '订单不存在')
  3545. {
  3546. return [true, ORDER_STATE_NOEXIST];
  3547. }
  3548. else
  3549. {
  3550. return [false, $resp['msg']];
  3551. }
  3552. }
  3553. };
  3554. $resp = '{"code":1,"msg":"查询成功","data":{"systemOrderNo":"2049420687473912283808","agentOrderNo":"s16341299122819479569112","phone":"18571522718","itemName":"UNICOM","itemFacePrice":"50","status":0,"description":"待处理","amount":"47.2500","officialOrderNo":""}}';
  3555. $ret = $notify($resp);
  3556. }
  3557. }
  3558. //docker-compose run phpcli php /var/www/html/phpunit-9.2.5.phar --filter "/(TestRefill::testLoadBlack)( .*)?$/" --test-suffix TestRefill.php /var/www/html/test
  3559. //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