PaymentChannelOptionsTest.php 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. <?php
  2. namespace Tests\Integration;
  3. use App\Http\Controllers\admin\PaymentConfiguration;
  4. use App\Http\Controllers\admin\RechargeChannel;
  5. use App\Http\Controllers\admin\PaymentCompany;
  6. use App\Services\PaymentChannelLinkService;
  7. use App\Services\Payment\RechargeChannelConfigurationService;
  8. use App\Models\PaymentGateway;
  9. use App\Models\RechargeChannel as ChannelModel;
  10. use App\Services\Payment\PaymentProviderService;
  11. use App\Services\PaymentOrderService;
  12. use Illuminate\Config\Repository;
  13. use Illuminate\Database\Capsule\Manager;
  14. use Illuminate\Database\Schema\Blueprint;
  15. use Illuminate\Foundation\Application;
  16. use Illuminate\Http\JsonResponse;
  17. use Illuminate\Http\Request;
  18. use Illuminate\Support\Facades\DB;
  19. use Illuminate\Support\Facades\Facade;
  20. use Illuminate\Translation\ArrayLoader;
  21. use Illuminate\Translation\Translator;
  22. use Illuminate\Validation\Factory;
  23. use PHPUnit\Framework\TestCase;
  24. class PaymentChannelOptionsTest extends TestCase
  25. {
  26. private Application $app;
  27. protected function setUp(): void
  28. {
  29. Facade::clearResolvedInstances();
  30. $this->app = new Application(dirname(__DIR__, 2));
  31. $this->app->instance('config', new Repository(['app' => ['locale' => 'zh']]));
  32. Facade::setFacadeApplication($this->app);
  33. $db = new Manager($this->app);
  34. $db->addConnection(['driver' => 'sqlite', 'database' => ':memory:', 'prefix' => 'bot_']);
  35. $db->setAsGlobal();
  36. $db->bootEloquent();
  37. $this->app->instance('db', $db->getDatabaseManager());
  38. $this->app->bind('db.schema', fn () => $db->schema());
  39. $translator = new Translator(new ArrayLoader(), 'zh');
  40. $this->app->instance('translator', $translator);
  41. $this->app->instance('validator', new Factory($translator, $this->app));
  42. $this->app->instance(\Illuminate\Contracts\Routing\ResponseFactory::class, new class {
  43. public function json($data, $status = 200, $headers = [], $options = 0) {
  44. return new JsonResponse($data, $status, $headers, $options);
  45. }
  46. });
  47. Request::macro('validate', function (array $rules) {
  48. return app('validator')->make($this->all(), $rules)->validate();
  49. });
  50. $db->schema()->create('recharge_channel', function (Blueprint $t) {
  51. $t->id(); $t->integer('from'); $t->integer('data_type'); $t->string('key');
  52. $t->string('name'); $t->string('type'); $t->decimal('rate', 8, 4);
  53. $t->decimal('min')->nullable(); $t->decimal('max')->nullable(); $t->string('fixed')->nullable();
  54. $t->integer('status'); $t->integer('sort'); $t->timestamps();
  55. });
  56. $db->schema()->create('recharge_channel_group', function (Blueprint $t) {
  57. $t->id(); $t->string('name'); $t->text('recharge_type')->nullable();
  58. $t->text('withdraw_type')->nullable(); $t->text('activity_type')->nullable(); $t->timestamps();
  59. });
  60. $fixture = require dirname(__DIR__) . '/fixtures/payment_provider_channels.php';
  61. DB::table('recharge_channel')->insert($fixture['channels']);
  62. DB::table('recharge_channel_group')->insert($fixture['groups']);
  63. (require dirname(__DIR__, 2) . '/database/migrations/2026_09_08_160000_add_payment_provider_status_and_channel_soft_deletes.php')->up();
  64. (require dirname(__DIR__, 2) . '/database/migrations/2026_09_08_170000_add_soft_deletes_to_recharge_channel_groups.php')->up();
  65. $db->schema()->create('operation_audits', function (Blueprint $t) {
  66. $t->id(); $t->string('resource_type'); $t->unsignedBigInteger('resource_id')->nullable();
  67. $t->string('action'); $t->json('changes'); $t->unsignedBigInteger('operator_id')->nullable();
  68. $t->string('operator_name'); $t->timestamp('created_at')->useCurrent();
  69. });
  70. }
  71. protected function tearDown(): void
  72. {
  73. DB::disconnect();
  74. Facade::clearResolvedInstances();
  75. parent::tearDown();
  76. }
  77. private function request(string $path, array $params): void
  78. {
  79. $this->app->instance('request', Request::create($path, 'GET', $params));
  80. }
  81. private function channelList(array $params): array
  82. {
  83. $this->request('/admin/rechargeChannel/list', $params);
  84. $response = (new RechargeChannel())->list()->getData(true);
  85. $this->assertSame(0, $response['code']);
  86. return $response['data'];
  87. }
  88. public function test_company_options_use_all_rows_not_first_page(): void
  89. {
  90. $page1 = $this->channelList(['data_type' => '1']);
  91. $this->assertSame(19, $page1['total']);
  92. $this->assertCount(15, $page1['data']);
  93. $this->assertNotContains('jd', array_column($page1['data'], 'payment_company'));
  94. $page2 = $this->channelList(['data_type' => '1', 'page' => 2]);
  95. $this->assertSame(['zimu', 'no', 'no', 'jd'], array_column($page2['data'], 'payment_company'));
  96. $this->request('/admin/paymentConfig/options', ['kind' => 'deposit']);
  97. $data = (new PaymentConfiguration(new PaymentChannelLinkService()))->options()->getData(true);
  98. $this->assertSame(0, $data['code']);
  99. $this->assertSame([false, false, false, false], array_column($data['data']['payment_companies'], 'disabled'));
  100. }
  101. public function test_channel_list_displays_provider_separately_from_channel_name(): void
  102. {
  103. $data = $this->channelList(['data_type' => '1', 'payment_company' => 'jd']);
  104. $this->assertSame(1, $data['total']);
  105. $this->assertSame('JD钱包', $data['data'][0]['name']);
  106. $this->assertSame('JD支付', $data['data'][0]['payment_company_label']);
  107. $this->assertSame(1, $data['data'][0]['from']);
  108. $this->assertSame(24, $data['data'][0]['id']);
  109. $withdraw = $this->channelList(['data_type' => '2', 'payment_company' => 'jd']);
  110. $this->assertSame(25, $withdraw['data'][0]['id']);
  111. $this->assertSame(0, $this->channelList(['data_type' => '2', 'payment_company' => 'sanjin'])['total']);
  112. }
  113. public function test_missing_group_returns_reason_without_enabling_or_rewriting_config(): void
  114. {
  115. DB::table('recharge_channel_group')->update(['recharge_type' => 'wxsm,zfbsm']);
  116. $this->request('/admin/paymentConfig/options', ['kind' => 'deposit']);
  117. $data = (new PaymentConfiguration(new PaymentChannelLinkService()))->options()->getData(true)['data'];
  118. $this->assertSame([false, true, true, true], array_column($data['payment_companies'], 'disabled'));
  119. $this->assertSame(['', 'group_missing', 'group_missing', 'group_missing'], array_column($data['payment_companies'], 'disabled_reason_code'));
  120. $this->assertSame('wxsm,zfbsm', DB::table('recharge_channel_group')->value('recharge_type'));
  121. $this->assertSame(0, DB::table('recharge_channel')->where('id', 31)->value('status'));
  122. }
  123. public function test_group_editor_options_include_new_types_even_before_any_group_uses_them(): void
  124. {
  125. DB::table('recharge_channel_group')->update(['recharge_type' => 'wxsm', 'withdraw_type' => 'DF001']);
  126. $this->request('/admin/rechargeChannel/getChannel', ['data_type' => 1]);
  127. $response = (new RechargeChannel())->getChannel()->getData(true);
  128. $this->assertSame(0, $response['code']);
  129. $names = array_column($response['data']['data'], 'name', 'type');
  130. $this->assertSame('JD钱包', $names['JDpay']);
  131. $this->assertSame('NO快捷充值-扫码支付', $names['NOpay12']);
  132. $this->assertSame('NO快捷充值-余额支付', $names['NOpay13']);
  133. $this->assertSame('808充值', $names['ZIMUpay']);
  134. $this->assertSame(13, $response['data']['total']);
  135. $this->request('/admin/rechargeChannel/getChannel', ['data_type' => 2]);
  136. $names = array_column((new RechargeChannel())->getChannel()->getData(true)['data']['data'], 'name', 'type');
  137. $this->assertSame('JD钱包', $names['JDpay']);
  138. $this->assertSame('NO快捷提现', $names['NOwithdraw']);
  139. $this->assertSame('808账户提现', $names['ZIMUwithdraw']);
  140. $this->assertArrayNotHasKey('ZIMUcash', $names);
  141. $this->assertSame('wxsm', DB::table('recharge_channel_group')->value('recharge_type'));
  142. }
  143. private function formOptions(int $dataType = 1, ?int $id = null): array
  144. {
  145. $this->request('/admin/rechargeChannel/options', ['data_type' => $dataType] + ($id ? ['id' => $id] : []));
  146. $response = (new RechargeChannel())->options(new RechargeChannelConfigurationService())->getData(true);
  147. $this->assertSame(0, $response['code']);
  148. return $response['data'];
  149. }
  150. private function saveChannel(array $params): array
  151. {
  152. $this->app->instance('request', Request::create('/admin/rechargeChannel/update', 'POST', $params));
  153. return (new RechargeChannel())->update(new RechargeChannelConfigurationService())->getData(true);
  154. }
  155. private function newChannel(array $overrides = []): array
  156. {
  157. return $overrides + ['data_type' => 1, 'payment_company' => 'no', 'type' => 'NOpay12',
  158. 'rate' => '0.0300', 'name' => '测试通道', 'key' => 'test-key', 'min' => 1, 'max' => 100];
  159. }
  160. public function test_creation_catalog_works_without_any_database_channels_or_groups(): void
  161. {
  162. DB::table('recharge_channel')->delete();
  163. DB::table('recharge_channel_group')->delete();
  164. $data = $this->formOptions();
  165. $this->assertSame(['sanjin', 'jd', 'no', 'zimu'], array_column($data['payment_companies'], 'value'));
  166. $this->assertTrue($data['identity_editable']);
  167. $this->assertSame('', $data['identity_edit_reason']);
  168. $this->assertContains('NOpay12', array_column($data['types'], 'value'));
  169. $this->assertSame(['qianbao', 'jd', 'no', 'zimu'], array_column($this->formOptions(2)['payment_companies'], 'value'));
  170. $this->assertSame([], $this->formOptions(3)['payment_companies']);
  171. }
  172. public function test_create_selected_company_then_switch_company_and_type_on_same_record(): void
  173. {
  174. $result = $this->saveChannel($this->newChannel());
  175. $this->assertSame(0, $result['code']);
  176. $this->assertSame([], $result['data']);
  177. $row = DB::table('recharge_channel')->where('key', 'test-key')->first();
  178. $this->assertSame(1, $row->from);
  179. $this->assertSame(1, $row->status);
  180. $this->assertSame(0, $row->sort);
  181. $result = $this->saveChannel(['id' => $row->id, 'data_type' => 1,
  182. 'payment_company' => 'jd', 'type' => 'JDpay', 'rate' => '0.02']);
  183. $this->assertSame(0, $result['code']);
  184. $data = $this->channelList(['data_type' => '1', 'key' => 'test-key'])['data'][0];
  185. $this->assertSame($row->id, $data['id']);
  186. $this->assertSame('jd', $data['payment_company']);
  187. $this->assertSame('JD支付 / 测试通道', $data['display_name']);
  188. }
  189. public function test_invalid_company_type_or_source_is_rejected_without_writing(): void
  190. {
  191. $before = DB::table('recharge_channel')->count();
  192. foreach ([
  193. ['payment_company' => 'jd', 'type' => 'NOpay12'],
  194. ['payment_company' => 'no', 'type' => '12'],
  195. ['payment_company' => 'no', 'type' => 'usdt'],
  196. ['payment_company' => 'no', 'from' => 2],
  197. ['payment_company' => 'sanjin', 'type' => 'DF001', 'data_type' => 2],
  198. ] as $override) {
  199. $this->assertSame(-3, $this->saveChannel($this->newChannel($override))['code']);
  200. }
  201. $this->assertSame($before, DB::table('recharge_channel')->count());
  202. }
  203. public function test_native_and_activity_channels_do_not_require_or_fabricate_company(): void
  204. {
  205. foreach ([[1, 'usdt', 2], [1, 'rgcz', 3], [2, 'rgtx', 3], [3, 'recharge', 1]] as [$direction, $type, $from]) {
  206. $result = $this->saveChannel($this->newChannel(['payment_company' => null, 'data_type' => $direction,
  207. 'type' => $type, 'key' => 'local-' . $type]));
  208. $this->assertSame(0, $result['code']);
  209. $row = $this->channelList(['key' => 'local-' . $type])['data'][0];
  210. $this->assertSame($from, $row['from']);
  211. $this->assertNull($row['payment_company']);
  212. $this->assertSame('测试通道', $row['display_name']);
  213. }
  214. }
  215. public function test_existing_valid_clients_can_omit_derived_company_and_from(): void
  216. {
  217. $params = $this->newChannel();
  218. unset($params['payment_company']);
  219. $this->assertSame(0, $this->saveChannel($params)['code']);
  220. $row = $this->channelList(['key' => 'test-key'])['data'][0];
  221. $this->assertSame('no', $row['payment_company']);
  222. $this->assertSame(1, $row['from']);
  223. }
  224. public function test_linked_channel_locks_identity_but_keeps_regular_edit_available(): void
  225. {
  226. DB::connection()->getSchemaBuilder()->create('payment_gateways', function (Blueprint $t) {
  227. $t->id(); $t->unsignedBigInteger('recharge_channel_id'); $t->softDeletes();
  228. });
  229. DB::table('payment_gateways')->insert(['recharge_channel_id' => 24]);
  230. $options = $this->formOptions(1, 24);
  231. $this->assertFalse($options['identity_editable']);
  232. $this->assertNotSame('', $options['identity_edit_reason']);
  233. $result = $this->saveChannel(['id' => 24, 'data_type' => 1, 'payment_company' => 'no',
  234. 'type' => 'NOpay12', 'rate' => '0.01']);
  235. $this->assertSame(-3, $result['code']);
  236. $this->assertSame('JDpay', DB::table('recharge_channel')->where('id', 24)->value('type'));
  237. $result = $this->saveChannel(['id' => 24, 'data_type' => 1, 'payment_company' => 'jd',
  238. 'type' => 'JDpay', 'rate' => '0.01', 'name' => 'JD新名称']);
  239. $this->assertSame(0, $result['code']);
  240. DB::table('payment_gateways')->update(['deleted_at' => now()]);
  241. $this->assertTrue($this->formOptions(1, 24)['identity_editable']);
  242. $this->assertSame(0, $this->saveChannel(['id' => 24, 'data_type' => 1,
  243. 'payment_company' => 'no', 'type' => 'NOpay12', 'rate' => '0.01'])['code']);
  244. }
  245. public function test_switching_company_does_not_rewrite_group_permissions(): void
  246. {
  247. $groups = DB::table('recharge_channel_group')->orderBy('id')->get()->toJson();
  248. $this->assertSame(0, $this->saveChannel(['id' => 24, 'data_type' => 1,
  249. 'payment_company' => 'no', 'type' => 'NOpay12', 'rate' => '0.01'])['code']);
  250. $this->assertSame($groups, DB::table('recharge_channel_group')->orderBy('id')->get()->toJson());
  251. $this->assertSame(-3, $this->saveChannel(['id' => 24, 'data_type' => 2,
  252. 'payment_company' => 'no', 'type' => 'NOwithdraw', 'rate' => '0.01'])['code']);
  253. }
  254. public function test_group_option_names_include_company_without_changing_values(): void
  255. {
  256. $this->request('/admin/rechargeChannel/getChannel', ['data_type' => 1]);
  257. $rows = array_column((new RechargeChannel())->getChannel()->getData(true)['data']['data'], null, 'type');
  258. $this->assertSame('JD钱包', $rows['JDpay']['name']);
  259. $this->assertSame('jd', $rows['JDpay']['payment_company']);
  260. $this->assertSame('JD支付 / JD钱包', $rows['JDpay']['display_name']);
  261. $this->assertSame('USDT充值', $rows['usdt']['display_name']);
  262. }
  263. public function test_merchant_save_rechecks_channel_identity_inside_transaction(): void
  264. {
  265. DB::table('recharge_channel')->where('id', 26)->update(['type' => 'JDpay']);
  266. $this->request('/admin/paymentConfig/gateways/save', []);
  267. $controller = new PaymentConfiguration(new PaymentChannelLinkService());
  268. $method = new \ReflectionMethod($controller, 'saveModel');
  269. $method->setAccessible(true);
  270. $this->expectException(\InvalidArgumentException::class);
  271. $this->expectExceptionMessage('支付公司与所选通道不匹配');
  272. $method->invoke($controller, PaymentGateway::class, ['kind' => 'deposit', 'recharge_channel_id' => 26,
  273. 'recharge_channel_group_ids' => [1], 'payment_company' => 'no', 'payment_method' => 'NOpay12'], 'payment_gateway');
  274. }
  275. private function setCompanyStatus(string $code, int $status): array
  276. {
  277. $this->app->instance('request', Request::create('/admin/paymentCompany/status', 'POST', ['payment_company' => $code, 'status' => $status]));
  278. return (new PaymentCompany())->status(new PaymentProviderService())->getData(true);
  279. }
  280. private function deleteChannel(int $id): array
  281. {
  282. $this->app->instance('request', Request::create('/admin/rechargeChannel/delete', 'POST', ['id' => $id]));
  283. return (new RechargeChannel())->delete(new RechargeChannelConfigurationService())->getData(true);
  284. }
  285. public function test_company_management_lists_registered_providers_and_filters_status(): void
  286. {
  287. $this->request('/admin/paymentCompany/list', []);
  288. $result = (new PaymentCompany())->list(new PaymentProviderService())->getData(true);
  289. $this->assertSame(0, $result['code']);
  290. $this->assertSame(5, $result['data']['total']);
  291. $rows = array_column($result['data']['data'], null, 'payment_company');
  292. $this->assertSame('SHA256', $rows['no']['signature_algorithm']);
  293. $this->assertSame([1, 2], $rows['no']['data_types']);
  294. $this->assertSame(3, $rows['no']['channel_count']);
  295. $this->assertSame(0, $this->setCompanyStatus('no', 0)['code']);
  296. $this->assertSame(0, $this->setCompanyStatus('no', 0)['code']);
  297. $this->assertSame(1, DB::table('operation_audits')->where('resource_type', 'payment_company')->count());
  298. $this->request('/admin/paymentCompany/list', ['status' => 0]);
  299. $this->assertSame(1, (new PaymentCompany())->list(new PaymentProviderService())->getData(true)['data']['total']);
  300. $this->assertSame(-3, $this->setCompanyStatus('unknown', 0)['code']);
  301. $this->assertSame(-3, $this->setCompanyStatus('no', 9)['code']);
  302. }
  303. public function test_company_switch_disables_options_and_runtime_without_rewriting_channels(): void
  304. {
  305. $groups = DB::table('recharge_channel_group')->get()->toJson();
  306. $this->assertSame(0, $this->setCompanyStatus('no', 0)['code']);
  307. $this->assertFalse(ChannelModel::checkRechargeChannel('NOpay12', 1));
  308. $this->assertFalse(ChannelModel::checkWithdrawChannel('NOwithdraw', 1));
  309. $this->assertNotFalse(ChannelModel::checkRechargeChannel('JDpay', 1));
  310. $this->assertNotFalse(ChannelModel::checkRechargeChannel('usdt', 1));
  311. $this->assertArrayNotHasKey('NOpay12', ChannelModel::product(1));
  312. $this->assertSame(1, DB::table('recharge_channel')->where('id', 26)->value('status'));
  313. $this->assertSame($groups, DB::table('recharge_channel_group')->get()->toJson());
  314. $this->request('/admin/paymentConfig/options', ['kind' => 'deposit']);
  315. $options = (new PaymentConfiguration(new PaymentChannelLinkService()))->options()->getData(true)['data'];
  316. $companies = array_column($options['payment_companies'], null, 'value');
  317. $this->assertSame('provider_disabled', $companies['no']['disabled_reason_code']);
  318. $this->assertFalse(array_column($options['recharge_channels'], null, 'id')[26]['selectable']);
  319. $form = $this->formOptions();
  320. $this->assertTrue(array_column($form['payment_companies'], null, 'value')['no']['disabled']);
  321. $row = $this->channelList(['data_type' => '1', 'type' => 'NOpay12'])['data'][0];
  322. $this->assertSame(1, $row['status']);
  323. $this->assertSame(0, $row['company_status']);
  324. $this->assertSame(0, $row['effective_status']);
  325. $this->assertSame(-3, $this->saveChannel($this->newChannel())['code']);
  326. $this->assertSame(0, $this->setCompanyStatus('no', 1)['code']);
  327. $this->assertNotFalse(ChannelModel::checkRechargeChannel('NOpay12', 1));
  328. }
  329. public function test_reenable_company_does_not_enable_individually_disabled_channels(): void
  330. {
  331. $this->setCompanyStatus('zimu', 0);
  332. $this->setCompanyStatus('zimu', 1);
  333. $this->assertSame(0, DB::table('recharge_channel')->where('id', 31)->value('status'));
  334. $this->assertFalse(ChannelModel::checkWithdrawChannel('ZIMUcash', 1));
  335. $this->assertNotFalse(ChannelModel::checkWithdrawChannel('ZIMUwithdraw', 1));
  336. }
  337. public function test_disabled_company_blocks_new_external_requests_before_any_wallet_or_network_work(): void
  338. {
  339. $this->setCompanyStatus('no', 0);
  340. $this->assertSame('支付公司已禁用', PaymentOrderService::createPay('test-user', 100, 'NOpay12')['text']);
  341. $this->assertSame('支付公司已禁用', PaymentOrderService::autoCreatePayout('test-user', 100, 'NOwithdraw', '', '', '')['text']);
  342. $this->assertFalse(PaymentProviderService::requestEnabled('nopay12', 1));
  343. $this->assertTrue(PaymentProviderService::requestEnabled('JDpay', 1));
  344. }
  345. public function test_delete_last_deposit_type_soft_deletes_and_cleans_only_its_group_membership(): void
  346. {
  347. $beforeWithdraw = DB::table('recharge_channel_group')->where('id', 1)->value('withdraw_type');
  348. $this->assertSame(0, $this->deleteChannel(24)['code']);
  349. $this->assertNull(ChannelModel::query()->find(24));
  350. $deleted = ChannelModel::withTrashed()->findOrFail(24);
  351. $this->assertTrue($deleted->trashed());
  352. $this->assertSame(0, (int)$deleted->status);
  353. $this->assertSame('JD钱包', $deleted->name);
  354. $types = explode(',', DB::table('recharge_channel_group')->where('id', 1)->value('recharge_type'));
  355. $this->assertNotContains('JDpay', $types);
  356. $this->assertContains('NOpay12', $types);
  357. $this->assertSame($beforeWithdraw, DB::table('recharge_channel_group')->where('id', 1)->value('withdraw_type'));
  358. $this->assertNotFalse(ChannelModel::checkWithdrawChannel('JDpay', 1));
  359. $this->assertFalse(ChannelModel::checkRechargeChannel('JDpay', 1));
  360. $this->assertSame(0, $this->deleteChannel(24)['code']);
  361. $this->assertSame(1, DB::table('operation_audits')->where('resource_type', 'recharge_channel')->count());
  362. $this->setCompanyStatus('jd', 0); $this->setCompanyStatus('jd', 1);
  363. $this->assertNull(ChannelModel::query()->find(24));
  364. }
  365. public function test_delete_one_of_several_same_type_channels_preserves_groups_until_last_removed(): void
  366. {
  367. $this->assertSame(0, $this->deleteChannel(6)['code']);
  368. $this->assertStringContainsString('zfbsm', DB::table('recharge_channel_group')->where('id', 1)->value('recharge_type'));
  369. $this->assertSame(3, ChannelModel::query()->where('data_type', 1)->where('type', 'zfbsm')->count());
  370. foreach ([7, 8, 9] as $id) $this->assertSame(0, $this->deleteChannel($id)['code']);
  371. $this->assertStringNotContainsString('zfbsm', DB::table('recharge_channel_group')->where('id', 1)->value('recharge_type'));
  372. }
  373. public function test_delete_is_blocked_by_payment_config_reference_and_does_not_touch_activity(): void
  374. {
  375. DB::connection()->getSchemaBuilder()->create('payment_gateways', function (Blueprint $t) {
  376. $t->id(); $t->unsignedBigInteger('recharge_channel_id'); $t->softDeletes();
  377. });
  378. DB::table('payment_gateways')->insert(['recharge_channel_id' => 24]);
  379. $this->assertSame(-3, $this->deleteChannel(24)['code']);
  380. $this->assertNotNull(ChannelModel::query()->find(24));
  381. $this->assertSame(-3, $this->deleteChannel(21)['code']);
  382. $this->assertNotNull(ChannelModel::query()->find(21));
  383. DB::table('payment_gateways')->update(['deleted_at' => now()]);
  384. $this->assertSame(0, $this->deleteChannel(24)['code']);
  385. }
  386. public function test_migration_retry_keeps_disabled_company_and_deleted_channel(): void
  387. {
  388. $this->setCompanyStatus('no', 0);
  389. $this->deleteChannel(24);
  390. (require dirname(__DIR__, 2) . '/database/migrations/2026_09_08_160000_add_payment_provider_status_and_channel_soft_deletes.php')->up();
  391. $this->assertSame(0, PaymentProviderService::statuses()['no']);
  392. $this->assertTrue(ChannelModel::withTrashed()->findOrFail(24)->trashed());
  393. $this->assertSame(5, DB::table('payment_providers')->count());
  394. }
  395. private function paymentOrderFixture(int $type, string $channel, int $status): \App\Models\PaymentOrder
  396. {
  397. DB::connection()->getSchemaBuilder()->create('payment_orders', function (Blueprint $t) {
  398. $t->id(); $t->integer('type'); $t->string('channel'); $t->integer('status');
  399. $t->string('order_no'); $t->string('member_id'); $t->decimal('amount', 18, 4);
  400. $t->string('state')->nullable(); $t->text('callback_data')->nullable(); $t->timestamps();
  401. });
  402. $this->app->instance('log', new class {
  403. public function channel($channel) { return $this; }
  404. public function error($message, array $context = []) {}
  405. });
  406. return \App\Models\PaymentOrder::query()->create(['type' => $type, 'channel' => $channel,
  407. 'status' => $status, 'order_no' => 'test-order', 'member_id' => 'test-user', 'amount' => 10]);
  408. }
  409. public function test_pending_payout_cannot_be_sent_after_company_disabled(): void
  410. {
  411. $order = $this->paymentOrderFixture(2, 'NOwithdraw', PaymentOrderService::STATUS_STAY);
  412. $this->setCompanyStatus('no', 0);
  413. $result = PaymentOrderService::createPayout($order->id);
  414. $this->assertSame(-3, $result['code']);
  415. $this->assertSame('支付公司已禁用', $result['msg']);
  416. $this->assertSame(PaymentOrderService::STATUS_STAY, $order->fresh()->status);
  417. }
  418. public function test_pending_payout_cannot_be_sent_after_last_channel_deleted(): void
  419. {
  420. $order = $this->paymentOrderFixture(2, 'JDpay', PaymentOrderService::STATUS_STAY);
  421. $this->assertSame(0, $this->deleteChannel(25)['code']);
  422. $result = PaymentOrderService::createPayout($order->id);
  423. $this->assertSame(-3, $result['code']);
  424. $this->assertSame('提现通道已停用或删除', $result['msg']);
  425. $this->assertSame(PaymentOrderService::STATUS_STAY, $order->fresh()->status);
  426. }
  427. public function test_existing_pay_callback_is_not_blocked_by_company_switch(): void
  428. {
  429. $order = $this->paymentOrderFixture(1, 'NOpay12', PaymentOrderService::STATUS_PROCESS);
  430. $this->setCompanyStatus('no', 0);
  431. $method = new \ReflectionMethod(PaymentOrderService::class, 'applyPayCallback');
  432. $method->setAccessible(true);
  433. $this->assertTrue($method->invoke(null, $order, '10', 'failed', 'success', 'failed', ['status' => 'failed']));
  434. $this->assertSame(PaymentOrderService::STATUS_FAIL, $order->fresh()->status);
  435. $this->assertNotNull($order->fresh()->callback_data);
  436. }
  437. public function test_company_disabled_updates_saved_gateway_effective_status(): void
  438. {
  439. $channel = ChannelModel::query()->findOrFail(26);
  440. $gateway = new PaymentGateway(['payment_company' => 'no', 'payment_method' => 'NOpay12',
  441. 'status' => 1, 'recharge_channel_group_ids' => [1]]);
  442. $gateway->setRelation('rechargeChannel', $channel);
  443. $this->setCompanyStatus('no', 0);
  444. $data = (new PaymentChannelLinkService())->formatOne($gateway);
  445. $this->assertSame(1, $data['config_status']);
  446. $this->assertSame(1, $data['channel_status']);
  447. $this->assertSame(0, $data['company_status']);
  448. $this->assertSame(0, $data['effective_status']);
  449. $this->expectException(\RuntimeException::class);
  450. $this->expectExceptionMessage('NO支付已禁用');
  451. (new PaymentChannelLinkService())->validate(26, [1], 1);
  452. }
  453. public function test_empty_group_types_can_be_saved_after_last_channel_removed(): void
  454. {
  455. $this->app->instance('request', Request::create('/admin/rechargeChannel/updateGroup', 'POST',
  456. ['id' => 1, 'name' => '全部充值', 'recharge_type' => [], 'withdraw_type' => []]));
  457. $this->assertSame(0, (new RechargeChannel())->updateGroup()->getData(true)['code']);
  458. $this->assertSame('', DB::table('recharge_channel_group')->where('id', 1)->value('recharge_type'));
  459. $this->assertSame('yuebao,old_user,recharge', DB::table('recharge_channel_group')->where('id', 1)->value('activity_type'));
  460. }
  461. private function saveGroup(array $params): array
  462. {
  463. $this->app->instance('request', Request::create('/admin/rechargeChannel/updateGroup', 'POST', $params));
  464. return (new RechargeChannel())->updateGroup()->getData(true);
  465. }
  466. private function groupPayload(int $id = 1): array
  467. {
  468. $group = DB::table('recharge_channel_group')->where('id', $id)->first();
  469. return ['id' => $id, 'name' => $group->name, 'recharge_type' => explode(',', $group->recharge_type),
  470. 'withdraw_type' => explode(',', $group->withdraw_type)];
  471. }
  472. public function test_legacy_group_can_be_saved_and_only_invalid_existing_types_are_cleaned(): void
  473. {
  474. $payload = $this->groupPayload();
  475. $result = $this->saveGroup($payload);
  476. $this->assertSame(0, $result['code']);
  477. $this->assertSame([], $result['data']);
  478. $this->assertStringContainsString('已清理', $result['msg']);
  479. $saved = $this->groupPayload();
  480. $this->assertSame(array_values(array_diff($payload['recharge_type'], ['1', '2', '3'])), $saved['recharge_type']);
  481. $this->assertSame(array_values(array_diff($payload['withdraw_type'], ['ylk', 'zfb', 'szrmb'])), $saved['withdraw_type']);
  482. $this->assertSame('yuebao,old_user,recharge', DB::table('recharge_channel_group')->where('id', 1)->value('activity_type'));
  483. $audit = DB::table('operation_audits')->where('resource_type', 'recharge_channel_group')->first();
  484. $this->assertNotNull($audit);
  485. $this->assertSame(['1', '2', '3'], json_decode($audit->changes, true)['after']['removed_types']['recharge_type']);
  486. }
  487. public function test_new_unknown_type_in_existing_group_is_rejected_atomically(): void
  488. {
  489. $payload = $this->groupPayload();
  490. $payload['recharge_type'][] = 'not_a_type';
  491. $before = DB::table('recharge_channel_group')->where('id', 1)->first();
  492. $result = $this->saveGroup($payload);
  493. $this->assertSame(-3, $result['code']);
  494. $this->assertStringContainsString('not_a_type', $result['msg']);
  495. $this->assertSame($before->recharge_type, DB::table('recharge_channel_group')->where('id', 1)->value('recharge_type'));
  496. $this->assertSame(0, DB::table('operation_audits')->count());
  497. }
  498. public function test_new_group_cannot_reuse_invalid_values_from_another_group(): void
  499. {
  500. $payload = $this->groupPayload();
  501. unset($payload['id']);
  502. $result = $this->saveGroup($payload);
  503. $this->assertSame(-3, $result['code']);
  504. $this->assertStringContainsString('1,2,3', $result['msg']);
  505. $this->assertSame(2, DB::table('recharge_channel_group')->count());
  506. }
  507. public function test_group_types_trim_deduplicate_and_keep_disabled_company_membership(): void
  508. {
  509. $this->setCompanyStatus('no', 0);
  510. $result = $this->saveGroup(['id' => 1, 'name' => '组合',
  511. 'recharge_type' => [' JDpay ', 'JDpay', ' NOpay12 '], 'withdraw_type' => [' DF001 ']]);
  512. $this->assertSame(0, $result['code']);
  513. $this->assertSame('JDpay,NOpay12', DB::table('recharge_channel_group')->where('id', 1)->value('recharge_type'));
  514. $this->assertSame('DF001', DB::table('recharge_channel_group')->where('id', 1)->value('withdraw_type'));
  515. }
  516. public function test_nested_option_objects_are_rejected_without_writing(): void
  517. {
  518. $result = $this->saveGroup(['id' => 1, 'name' => '组合',
  519. 'recharge_type' => [['type' => 'JDpay', 'name' => 'JD钱包']], 'withdraw_type' => ['DF001']]);
  520. $this->assertSame(-3, $result['code']);
  521. $this->assertStringContainsString('type', $result['msg']);
  522. $this->assertSame(0, DB::table('operation_audits')->count());
  523. }
  524. public function test_existing_deleted_type_is_removed_and_not_restored(): void
  525. {
  526. DB::table('recharge_channel')->where('id', 24)->update(['deleted_at' => now(), 'status' => 0]);
  527. $this->assertSame(0, $this->saveGroup($this->groupPayload())['code']);
  528. $saved = $this->groupPayload();
  529. $this->assertNotContains('JDpay', $saved['recharge_type']);
  530. $this->assertContains('JDpay', $saved['withdraw_type']);
  531. $this->assertTrue(ChannelModel::withTrashed()->findOrFail(24)->trashed());
  532. }
  533. private function deleteGroup(int $id): array
  534. {
  535. $this->app->instance('request', Request::create('/admin/rechargeChannel/deleteGroup', 'POST', ['id' => $id]));
  536. return (new RechargeChannel())->deleteGroup(new RechargeChannelConfigurationService())->getData(true);
  537. }
  538. public function test_unreferenced_group_can_be_soft_deleted_without_deleting_channels(): void
  539. {
  540. $count = ChannelModel::query()->count();
  541. $this->assertSame(0, $this->deleteGroup(2)['code']);
  542. $this->assertNull(\App\Models\RechargeChannelGroup::query()->find(2));
  543. $this->assertTrue(\App\Models\RechargeChannelGroup::withTrashed()->findOrFail(2)->trashed());
  544. $this->assertSame($count, ChannelModel::query()->count());
  545. $this->assertSame(0, $this->deleteGroup(2)['code']);
  546. $this->assertSame(1, DB::table('operation_audits')->where('action', 'delete')->count());
  547. $this->request('/admin/rechargeChannel/groupList', []);
  548. $this->assertSame(1, (new RechargeChannel())->groupList()->getData(true)['data']['total']);
  549. $this->assertSame(-3, $this->saveGroup(['id' => 2, 'name' => '已删除', 'recharge_type' => [], 'withdraw_type' => []])['code']);
  550. }
  551. public function test_default_group_and_member_assigned_group_cannot_be_deleted(): void
  552. {
  553. $this->assertSame(-3, $this->deleteGroup(1)['code']);
  554. $this->assertSame(-3, $this->deleteGroup(999)['code']);
  555. DB::connection()->getSchemaBuilder()->create('users', function (Blueprint $t) {
  556. $t->id(); $t->string('member_id'); $t->unsignedBigInteger('recharge_channel_group_id')->nullable(); $t->timestamps();
  557. });
  558. DB::table('users')->insert(['member_id' => 'test', 'recharge_channel_group_id' => 2]);
  559. $result = $this->deleteGroup(2);
  560. $this->assertSame(-3, $result['code']);
  561. $this->assertStringContainsString('会员', $result['msg']);
  562. $this->assertNotNull(\App\Models\RechargeChannelGroup::query()->find(2));
  563. $this->assertSame(0, DB::table('operation_audits')->count());
  564. }
  565. public function test_numeric_and_string_payment_config_group_references_block_delete(): void
  566. {
  567. DB::connection()->getSchemaBuilder()->create('payment_collection_channels', function (Blueprint $t) {
  568. $t->id(); $t->json('recharge_channel_group_ids'); $t->softDeletes();
  569. });
  570. foreach (['[2]', '["2"]', '["02"]'] as $json) {
  571. DB::table('payment_collection_channels')->delete();
  572. DB::table('payment_collection_channels')->insert(['recharge_channel_group_ids' => $json]);
  573. $result = $this->deleteGroup(2);
  574. $this->assertSame(-3, $result['code']);
  575. $this->assertStringContainsString('被支付配置引用', $result['msg']);
  576. $this->assertNotNull(\App\Models\RechargeChannelGroup::query()->find(2));
  577. }
  578. DB::table('payment_collection_channels')->update(['deleted_at' => now()]);
  579. $this->assertSame(0, $this->deleteGroup(2)['code']);
  580. }
  581. public function test_deleted_group_cannot_be_assigned_to_members_or_new_payment_config(): void
  582. {
  583. DB::connection()->getSchemaBuilder()->create('users', function (Blueprint $t) {
  584. $t->id(); $t->string('member_id'); $t->unsignedBigInteger('recharge_channel_group_id')->nullable(); $t->timestamps();
  585. });
  586. DB::table('users')->insert(['member_id' => 'test', 'recharge_channel_group_id' => 1]);
  587. $this->assertSame(0, $this->deleteGroup(2)['code']);
  588. $this->app->instance('request', Request::create('/admin/user/setRechargeChannelGroup', 'POST',
  589. ['member_id' => ['test'], 'recharge_channel_group_id' => 2]));
  590. $this->assertSame(-3, (new \App\Http\Controllers\admin\User())->setRechargeChannelGroup()->getData(true)['code']);
  591. $this->assertSame(1, DB::table('users')->where('member_id', 'test')->value('recharge_channel_group_id'));
  592. $this->expectException(\RuntimeException::class);
  593. $this->expectExceptionMessage('部分通道组合不存在');
  594. (new PaymentChannelLinkService())->validate(24, [2], 1, true);
  595. }
  596. }