mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-06-07 20:48:09 +08:00
将 v8 重构分支中残留的 ThinkAdminDeveloper 文本统一调整为 ThinkAdmin,避免迁移到主仓库后继续暴露旧开发仓库名称。 主要内容: - 更新 README 标题与项目描述。 - 统一 PHP 文件头注释中的项目标识。 - 同步调整测试、配置、插件与文档中的旧仓库名称文本。 - 保持旧包删除说明与架构边界测试语义不变,只清理品牌名称残留。
403 lines
16 KiB
PHP
403 lines
16 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* +----------------------------------------------------------------------
|
|
* | ThinkAdmin Plugin
|
|
* +----------------------------------------------------------------------
|
|
* | Copyright (c) 2014~2026 ThinkAdmin [ thinkadmin.top ]
|
|
* +----------------------------------------------------------------------
|
|
* | Official Website: https://thinkadmin.top
|
|
* +----------------------------------------------------------------------
|
|
* | Licensed: https://mit-license.org
|
|
* | Disclaimer: https://thinkadmin.top/disclaimer
|
|
* | Vip Rights: https://thinkadmin.top/vip-introduce
|
|
* +----------------------------------------------------------------------
|
|
* | Gitee Repository: https://gitee.com/zoujingli/ThinkAdmin
|
|
* | Github Repository: https://github.com/zoujingli/ThinkAdmin
|
|
* +----------------------------------------------------------------------
|
|
*/
|
|
|
|
namespace think\admin\tests;
|
|
|
|
use plugin\account\controller\Device as DeviceController;
|
|
use plugin\account\controller\Master as MasterController;
|
|
use plugin\account\model\PluginAccountBind;
|
|
use plugin\account\model\PluginAccountUser;
|
|
use plugin\account\service\Account;
|
|
use think\admin\runtime\RequestContext;
|
|
use think\admin\tests\Support\SqliteIntegrationTestCase;
|
|
use think\exception\HttpResponseException;
|
|
use think\Request;
|
|
|
|
/**
|
|
* @internal
|
|
* @coversNothing
|
|
*/
|
|
class AccountAdminListControllerTest extends SqliteIntegrationTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->configureAccountAccess();
|
|
}
|
|
|
|
protected function afterSchemaCreated(): void
|
|
{
|
|
$this->app->setAppPath(TEST_PROJECT_ROOT . '/plugin/think-plugs-account/src/');
|
|
$this->configureView([
|
|
'view_path' => TEST_PROJECT_ROOT . '/plugin/think-plugs-account/src/view' . DIRECTORY_SEPARATOR,
|
|
]);
|
|
}
|
|
|
|
public function testMasterIndexFiltersActiveUsersByKeywordAndDateRange(): void
|
|
{
|
|
$older = $this->createAccountUser([
|
|
'username' => 'master-filter-older',
|
|
'nickname' => '主账号检索',
|
|
'phone' => '13888000001',
|
|
]);
|
|
$newer = $this->createAccountUser([
|
|
'username' => 'master-filter-newer',
|
|
'nickname' => '主账号检索',
|
|
'phone' => '13888000002',
|
|
]);
|
|
$outRange = $this->createAccountUser([
|
|
'username' => 'master-filter-out-range',
|
|
'nickname' => '主账号检索',
|
|
'phone' => '13888000003',
|
|
]);
|
|
$disabled = $this->createAccountUser([
|
|
'username' => 'master-filter-disabled',
|
|
'nickname' => '主账号检索',
|
|
'phone' => '13888000004',
|
|
'status' => 0,
|
|
]);
|
|
$deleted = $this->createAccountUser([
|
|
'username' => 'master-filter-deleted',
|
|
'nickname' => '主账号检索',
|
|
'phone' => '13888000005',
|
|
]);
|
|
|
|
PluginAccountUser::mk()->where(['id' => $older->getAttr('id')])->update([
|
|
'create_time' => '2026-03-10 08:00:00',
|
|
'update_time' => '2026-03-10 08:00:00',
|
|
]);
|
|
PluginAccountUser::mk()->where(['id' => $newer->getAttr('id')])->update([
|
|
'create_time' => '2026-03-10 18:00:00',
|
|
'update_time' => '2026-03-10 18:00:00',
|
|
]);
|
|
PluginAccountUser::mk()->where(['id' => $outRange->getAttr('id')])->update([
|
|
'create_time' => '2026-03-09 18:00:00',
|
|
'update_time' => '2026-03-09 18:00:00',
|
|
]);
|
|
PluginAccountUser::mk()->where(['id' => $disabled->getAttr('id')])->update([
|
|
'create_time' => '2026-03-10 12:00:00',
|
|
'update_time' => '2026-03-10 12:00:00',
|
|
]);
|
|
PluginAccountUser::mk()->where(['id' => $deleted->getAttr('id')])->update([
|
|
'create_time' => '2026-03-10 20:00:00',
|
|
'update_time' => '2026-03-10 20:00:00',
|
|
'delete_time' => '2026-03-11 09:00:00',
|
|
]);
|
|
|
|
$result = $this->callIndexController(MasterController::class, [
|
|
'output' => 'json',
|
|
'username' => 'master-filter',
|
|
'create_time' => '2026-03-10 - 2026-03-10',
|
|
'_field_' => 'create_time',
|
|
'_order_' => 'desc',
|
|
'page' => 1,
|
|
'limit' => 20,
|
|
]);
|
|
|
|
$this->assertSame(200, intval($result['code'] ?? 0));
|
|
$this->assertSame('JSON-DATA', $result['info'] ?? '');
|
|
$this->assertSame(2, intval($result['data']['page']['total'] ?? 0));
|
|
$this->assertSame([
|
|
'master-filter-newer',
|
|
'master-filter-older',
|
|
], array_column($result['data']['list'] ?? [], 'username'));
|
|
}
|
|
|
|
public function testMasterIndexHistoryViewPaginatesDisabledUsers(): void
|
|
{
|
|
for ($i = 1; $i <= 11; ++$i) {
|
|
$this->createAccountUser([
|
|
'username' => sprintf('master-history-%02d', $i),
|
|
'nickname' => '主账号历史',
|
|
'phone' => sprintf('1397700%04d', $i),
|
|
'status' => 0,
|
|
]);
|
|
}
|
|
|
|
$this->createAccountUser([
|
|
'username' => 'master-history-active',
|
|
'nickname' => '主账号历史',
|
|
'phone' => '13977009999',
|
|
'status' => 1,
|
|
]);
|
|
|
|
$result = $this->callIndexController(MasterController::class, [
|
|
'output' => 'json',
|
|
'type' => 'history',
|
|
'username' => 'master-history',
|
|
'_field_' => 'id',
|
|
'_order_' => 'asc',
|
|
'page' => 2,
|
|
'limit' => 10,
|
|
]);
|
|
|
|
$this->assertSame(200, intval($result['code'] ?? 0));
|
|
$this->assertSame('JSON-DATA', $result['info'] ?? '');
|
|
$this->assertSame(11, intval($result['data']['page']['total'] ?? 0));
|
|
$this->assertSame(2, intval($result['data']['page']['pages'] ?? 0));
|
|
$this->assertSame(2, intval($result['data']['page']['current'] ?? 0));
|
|
$this->assertSame(10, intval($result['data']['page']['limit'] ?? 0));
|
|
$this->assertCount(1, $result['data']['list'] ?? []);
|
|
$this->assertSame('master-history-11', $result['data']['list'][0]['username'] ?? '');
|
|
}
|
|
|
|
public function testDeviceIndexFiltersByTypeAndPhoneAndIncludesUserRelation(): void
|
|
{
|
|
$owner = $this->createAccountUser([
|
|
'username' => 'device-owner-hit',
|
|
'nickname' => '设备归属用户',
|
|
]);
|
|
$other = $this->createAccountUser([
|
|
'username' => 'device-owner-other',
|
|
'nickname' => '其他设备用户',
|
|
]);
|
|
|
|
$this->createDeviceBindFixture(intval($owner->getAttr('id')), [
|
|
'type' => Account::WAP,
|
|
'phone' => '13788000001',
|
|
'nickname' => '命中设备',
|
|
'create_time' => '2026-03-10 08:00:00',
|
|
'update_time' => '2026-03-10 08:00:00',
|
|
]);
|
|
$this->createDeviceBindFixture(intval($owner->getAttr('id')), [
|
|
'type' => Account::WEB,
|
|
'phone' => '13788000002',
|
|
'nickname' => '不同类型设备',
|
|
]);
|
|
$this->createDeviceBindFixture(intval($other->getAttr('id')), [
|
|
'type' => Account::WAP,
|
|
'phone' => '13788100001',
|
|
'nickname' => '其他用户设备',
|
|
]);
|
|
$this->createDeviceBindFixture(intval($owner->getAttr('id')), [
|
|
'type' => Account::WAP,
|
|
'phone' => '13788000003',
|
|
'nickname' => '已删除设备',
|
|
'delete_time' => '2026-03-11 09:00:00',
|
|
]);
|
|
|
|
$result = $this->callIndexController(DeviceController::class, [
|
|
'output' => 'json',
|
|
'utype' => Account::WAP,
|
|
'phone' => '1378800',
|
|
'_field_' => 'id',
|
|
'_order_' => 'asc',
|
|
'page' => 1,
|
|
'limit' => 20,
|
|
]);
|
|
|
|
$this->assertSame(200, intval($result['code'] ?? 0));
|
|
$this->assertSame('JSON-DATA', $result['info'] ?? '');
|
|
$this->assertSame(1, intval($result['data']['page']['total'] ?? 0));
|
|
$this->assertCount(1, $result['data']['list'] ?? []);
|
|
$this->assertSame('13788000001', $result['data']['list'][0]['phone'] ?? '');
|
|
$this->assertSame(Account::WAP, $result['data']['list'][0]['type'] ?? '');
|
|
$this->assertSame('device-owner-hit', $result['data']['list'][0]['user']['username'] ?? '');
|
|
}
|
|
|
|
public function testDeviceIndexHistoryViewPaginatesDisabledDevices(): void
|
|
{
|
|
$owner = $this->createAccountUser([
|
|
'username' => 'device-history-owner',
|
|
'nickname' => '设备历史用户',
|
|
]);
|
|
|
|
for ($i = 1; $i <= 11; ++$i) {
|
|
$this->createDeviceBindFixture(intval($owner->getAttr('id')), [
|
|
'type' => Account::WEB,
|
|
'phone' => sprintf('1366600%04d', $i),
|
|
'nickname' => sprintf('历史设备%02d', $i),
|
|
'status' => 0,
|
|
'create_time' => sprintf('2026-03-10 %02d:00:00', min($i, 23)),
|
|
'update_time' => sprintf('2026-03-10 %02d:00:00', min($i, 23)),
|
|
]);
|
|
}
|
|
|
|
$this->createDeviceBindFixture(intval($owner->getAttr('id')), [
|
|
'type' => Account::WEB,
|
|
'phone' => '13666009999',
|
|
'status' => 1,
|
|
]);
|
|
|
|
$result = $this->callIndexController(DeviceController::class, [
|
|
'output' => 'json',
|
|
'type' => 'history',
|
|
'utype' => Account::WEB,
|
|
'phone' => '1366600',
|
|
'_field_' => 'id',
|
|
'_order_' => 'asc',
|
|
'page' => 2,
|
|
'limit' => 10,
|
|
]);
|
|
|
|
$this->assertSame(200, intval($result['code'] ?? 0));
|
|
$this->assertSame('JSON-DATA', $result['info'] ?? '');
|
|
$this->assertSame(11, intval($result['data']['page']['total'] ?? 0));
|
|
$this->assertSame(2, intval($result['data']['page']['pages'] ?? 0));
|
|
$this->assertSame(2, intval($result['data']['page']['current'] ?? 0));
|
|
$this->assertSame(10, intval($result['data']['page']['limit'] ?? 0));
|
|
$this->assertCount(1, $result['data']['list'] ?? []);
|
|
$this->assertSame('13666000011', $result['data']['list'][0]['phone'] ?? '');
|
|
$this->assertSame(Account::WEB, $result['data']['list'][0]['type'] ?? '');
|
|
}
|
|
|
|
public function testMasterIndexRendersEnglishTextsWhenLangSetIsEnUs(): void
|
|
{
|
|
$this->switchAccountLang('en-us');
|
|
|
|
$html = $this->callActionHtml(MasterController::class, 'index');
|
|
|
|
$this->assertStringContainsString('User Management', $html);
|
|
$this->assertStringContainsString('Recycle Bin', $html);
|
|
$this->assertStringContainsString('User Code', $html);
|
|
$this->assertStringContainsString('Account Status', $html);
|
|
$this->assertStringContainsString('Search', $html);
|
|
$this->assertStringContainsString('Export', $html);
|
|
$this->assertStringContainsString('User Account Data', $html);
|
|
$this->assertStringNotContainsString('搜 索', $html);
|
|
$this->assertStringNotContainsString('用户管理', $html);
|
|
}
|
|
|
|
public function testDeviceIndexRendersEnglishTextsWhenLangSetIsEnUs(): void
|
|
{
|
|
$this->switchAccountLang('en-us');
|
|
|
|
$html = $this->callActionHtml(DeviceController::class, 'index');
|
|
|
|
$this->assertStringContainsString('Device Type', $html);
|
|
$this->assertStringContainsString('-- All --', $html);
|
|
$this->assertStringContainsString('Associated Account', $html);
|
|
$this->assertStringContainsString('First Login', $html);
|
|
$this->assertStringContainsString('Search', $html);
|
|
$this->assertStringContainsString('Export', $html);
|
|
$this->assertStringContainsString('Mobile Browser', $html);
|
|
$this->assertStringNotContainsString('终端类型', $html);
|
|
}
|
|
|
|
public function testDeviceConfigRendersEnglishTextsWhenLangSetIsEnUs(): void
|
|
{
|
|
$this->switchAccountLang('en-us');
|
|
|
|
$html = $this->callActionHtml(DeviceController::class, 'config');
|
|
|
|
$this->assertStringContainsString('Authentication Expire Time', $html);
|
|
$this->assertStringContainsString('Auto Register on Login', $html);
|
|
$this->assertStringContainsString('Enable Auto Registration', $html);
|
|
$this->assertStringContainsString('Default Nickname Prefix', $html);
|
|
$this->assertStringContainsString('Open Interface Channels', $html);
|
|
$this->assertStringContainsString('Mobile Browser', $html);
|
|
$this->assertStringContainsString('Save Data', $html);
|
|
$this->assertStringContainsString('Cancel Edit', $html);
|
|
$this->assertStringNotContainsString('启用自动注册', $html);
|
|
}
|
|
|
|
protected function defineSchema(): void
|
|
{
|
|
$this->createAccountTables();
|
|
}
|
|
|
|
/**
|
|
* @param class-string $controllerClass
|
|
*/
|
|
private function callIndexController(string $controllerClass, array $query): array
|
|
{
|
|
$parts = explode('\\', $controllerClass);
|
|
$request = (new Request())
|
|
->withGet($query)
|
|
->setMethod('GET')
|
|
->setController(strtolower(strval(end($parts))))
|
|
->setAction('index');
|
|
|
|
$this->setRequestPayload($request, $query);
|
|
RequestContext::clear();
|
|
$this->app->instance('request', $request);
|
|
|
|
try {
|
|
$controller = new $controllerClass($this->app);
|
|
$controller->index();
|
|
self::fail("Expected {$controllerClass}::index to throw HttpResponseException.");
|
|
} catch (HttpResponseException $exception) {
|
|
return json_decode($exception->getResponse()->getContent(), true) ?: [];
|
|
}
|
|
}
|
|
|
|
private function callActionHtml(string $controllerClass, string $action, array $query = []): string
|
|
{
|
|
$parts = explode('\\', $controllerClass);
|
|
$request = (new Request())
|
|
->withGet($query)
|
|
->setMethod('GET')
|
|
->setController(strtolower(strval(end($parts))))
|
|
->setAction($action);
|
|
|
|
$this->setRequestPayload($request, $query);
|
|
RequestContext::clear();
|
|
$this->activateApplicationContext($request);
|
|
|
|
try {
|
|
$controller = new $controllerClass($this->app);
|
|
$controller->{$action}();
|
|
self::fail("Expected {$controllerClass}::{$action} to throw HttpResponseException.");
|
|
} catch (HttpResponseException $exception) {
|
|
return $exception->getResponse()->getContent();
|
|
}
|
|
}
|
|
|
|
private function createDeviceBindFixture(int $unid, array $overrides = []): PluginAccountBind
|
|
{
|
|
$bind = PluginAccountBind::mk();
|
|
$bind->save(array_merge([
|
|
'unid' => $unid,
|
|
'type' => Account::WAP,
|
|
'phone' => $this->randomPhone('1375500'),
|
|
'appid' => '',
|
|
'openid' => '',
|
|
'unionid' => '',
|
|
'headimg' => 'https://example.com/device.png',
|
|
'nickname' => '测试设备',
|
|
'password' => '',
|
|
'extra' => [],
|
|
'sort' => 0,
|
|
'status' => 1,
|
|
'create_time' => date('Y-m-d H:i:s'),
|
|
'update_time' => date('Y-m-d H:i:s'),
|
|
'delete_time' => null,
|
|
], $overrides));
|
|
|
|
return PluginAccountBind::mk()->withTrashed()->findOrEmpty($bind->getKey());
|
|
}
|
|
|
|
private function setRequestPayload(Request $request, array $data): void
|
|
{
|
|
$property = new \ReflectionProperty(Request::class, 'request');
|
|
$property->setAccessible(true);
|
|
$property->setValue($request, $data);
|
|
}
|
|
|
|
private function switchAccountLang(string $langSet): void
|
|
{
|
|
$this->app->lang->switchLangSet($langSet);
|
|
$file = TEST_PROJECT_ROOT . "/plugin/think-plugs-account/src/lang/{$langSet}.php";
|
|
if (is_file($file)) {
|
|
$this->app->lang->load($file, $langSet);
|
|
}
|
|
}
|
|
}
|