Files
huangjingfen/pro_v3.5.1_副本/vendor/doctrine/lexer/tests/AbstractLexerTest.php
apple 434aa8c69d feat(fsgx): 完成全部24项开发任务 Phase1-7
Phase1 后端核心:
- 新增 fsgx_v1.sql 迁移脚本(is_queue_goods/frozen_points/available_points/no_assess)
- SystemConfigServices 返佣设置扩展(周期人数/分档比例/范围/时机)
- StoreOrderCreateServices 周期循环佣金计算
- StoreOrderTakeServices 佣金发放后同步冻结积分
- StoreProductServices/StoreProduct 保存 is_queue_goods

Phase2 后端接口:
- GET /api/hjf/brokerage/progress 佣金周期进度
- GET /api/hjf/assets/overview 资产总览
- HjfPointsServices 每日 frozen_points 0.4‰ 释放定时任务
- PUT /adminapi/hjf/member/{uid}/no_assess 不考核接口
- GET /adminapi/hjf/points/release_log 积分日志接口

Phase3 前端清理:
- hjfCustom.js 路由精简(仅保留 points/log)
- hjfQueue.js/hjfMember.js API 清理/重定向至 CRMEB 原生接口
- pages.json 公排→推荐佣金/佣金记录/佣金规则

Phase4-5 前端改造:
- queue/status.vue 推荐佣金进度页整体重写
- 商品详情/订单确认/支付结果页文案与逻辑改造
- 个人中心/资产页/引导页/规则页文案改造
- HjfQueueProgress/HjfRefundNotice/HjfAssetCard 组件改造
- 推广中心嵌入佣金进度摘要
- hjfMockData.js 全量更新(公排字段→佣金字段)

Phase6 Admin 增强:
- 用户列表新增 frozen_points/available_points 列及不考核操作按钮
- hjfPoints.js USE_MOCK=false 对接真实积分日志接口

Phase7 配置文档:
- docs/fsgx-phase7-config-checklist.md 后台配置与全链路验收清单

Made-with: Cursor
2026-03-23 22:32:19 +08:00

307 lines
9.8 KiB
PHP

<?php
declare(strict_types=1);
namespace Doctrine\Tests\Common\Lexer;
use Doctrine\Common\Lexer\Token;
use PHPUnit\Framework\TestCase;
use function array_map;
use function assert;
use function count;
use function setlocale;
use const LC_ALL;
class AbstractLexerTest extends TestCase
{
/** @var ConcreteLexer */
private $concreteLexer;
public function setUp(): void
{
$this->concreteLexer = new ConcreteLexer();
}
public function tearDown(): void
{
setlocale(LC_ALL, null);
}
/**
* @psalm-return list<array{string, list<Token<string, string|int>>}>
*/
public function dataProvider(): array
{
return [
[
'price=10',
[
new Token('price', 'string', 0),
new Token('=', 'operator', 5),
new Token(10, 'int', 6),
],
],
];
}
public function testResetPeek(): void
{
$expectedTokens = [
new Token('price', 'string', 0),
new Token('=', 'operator', 5),
new Token(10, 'int', 6),
];
$this->concreteLexer->setInput('price=10');
$this->assertEquals($expectedTokens[0], $this->concreteLexer->peek());
$this->assertEquals($expectedTokens[1], $this->concreteLexer->peek());
$this->concreteLexer->resetPeek();
$this->assertEquals($expectedTokens[0], $this->concreteLexer->peek());
}
public function testResetPosition(): void
{
$expectedTokens = [
new Token('price', 'string', 0),
new Token('=', 'operator', 5),
new Token(10, 'int', 6),
];
$this->concreteLexer->setInput('price=10');
$this->assertNull($this->concreteLexer->lookahead);
$this->assertTrue($this->concreteLexer->moveNext());
$this->assertEquals($expectedTokens[0], $this->concreteLexer->lookahead);
$this->assertTrue($this->concreteLexer->moveNext());
$this->assertEquals($expectedTokens[1], $this->concreteLexer->lookahead);
$this->concreteLexer->resetPosition(0);
$this->assertTrue($this->concreteLexer->moveNext());
$this->assertEquals($expectedTokens[0], $this->concreteLexer->lookahead);
}
/**
* @psalm-param list<Token<string, string|int>> $expectedTokens
*
* @dataProvider dataProvider
*/
public function testMoveNext(string $input, array $expectedTokens): void
{
$this->concreteLexer->setInput($input);
$this->assertNull($this->concreteLexer->lookahead);
for ($i = 0; $i < count($expectedTokens); $i++) {
$this->assertTrue($this->concreteLexer->moveNext());
$this->assertEquals($expectedTokens[$i], $this->concreteLexer->lookahead);
}
$this->assertFalse($this->concreteLexer->moveNext());
$this->assertNull($this->concreteLexer->lookahead);
}
public function testSkipUntil(): void
{
$this->concreteLexer->setInput('price=10');
$this->assertTrue($this->concreteLexer->moveNext());
$this->concreteLexer->skipUntil('operator');
$this->assertEquals(
new Token('=', 'operator', 5),
$this->concreteLexer->lookahead
);
}
public function testUtf8Mismatch(): void
{
$this->concreteLexer->setInput("\xE9=10");
$this->assertTrue($this->concreteLexer->moveNext());
$this->assertEquals(
new Token("\xE9=10", 'string', 0),
$this->concreteLexer->lookahead
);
}
/**
* @psalm-param list<Token<string, string|int>> $expectedTokens
*
* @dataProvider dataProvider
*/
public function testPeek(string $input, array $expectedTokens): void
{
$this->concreteLexer->setInput($input);
foreach ($expectedTokens as $expectedToken) {
$actualToken = $this->concreteLexer->peek();
assert($actualToken !== null);
$this->assertEquals($expectedToken, $actualToken);
$this->assertSame($expectedToken['value'], $actualToken['value']);
$this->assertSame($expectedToken['type'], $actualToken['type']);
$this->assertSame($expectedToken['position'], $actualToken['position']);
}
$this->assertNull($this->concreteLexer->peek());
}
/**
* @psalm-param list<Token<string, string|int>> $expectedTokens
*
* @dataProvider dataProvider
*/
public function testGlimpse(string $input, array $expectedTokens): void
{
$this->concreteLexer->setInput($input);
foreach ($expectedTokens as $expectedToken) {
$actualToken = $this->concreteLexer->glimpse();
assert($actualToken !== null);
$this->assertEquals($expectedToken, $actualToken);
$this->assertEquals($expectedToken, $this->concreteLexer->glimpse());
$this->assertSame($expectedToken['value'], $actualToken['value']);
$this->assertSame($expectedToken['type'], $actualToken['type']);
$this->assertSame($expectedToken['position'], $actualToken['position']);
$this->concreteLexer->moveNext();
}
$this->assertNull($this->concreteLexer->peek());
}
/**
* @psalm-return list<array{string, int, string}>
*/
public function inputUntilPositionDataProvider(): array
{
return [
['price=10', 5, 'price'],
];
}
/**
* @dataProvider inputUntilPositionDataProvider
*/
public function testGetInputUntilPosition(
string $input,
int $position,
string $expectedInput
): void {
$this->concreteLexer->setInput($input);
$this->assertSame($expectedInput, $this->concreteLexer->getInputUntilPosition($position));
}
/**
* @psalm-param list<Token<string, string|int>> $expectedTokens
*
* @dataProvider dataProvider
*/
public function testIsNextToken(string $input, array $expectedTokens): void
{
$this->concreteLexer->setInput($input);
$this->concreteLexer->moveNext();
for ($i = 0; $i < count($expectedTokens); $i++) {
assert($expectedTokens[$i]->type !== null);
$this->assertTrue($this->concreteLexer->isNextToken($expectedTokens[$i]->type));
$this->concreteLexer->moveNext();
}
}
/**
* @psalm-param list<Token<string, string|int>> $expectedTokens
*
* @dataProvider dataProvider
*/
public function testIsNextTokenAny(string $input, array $expectedTokens): void
{
$allTokenTypes = array_map(static function ($token): string {
assert($token->type !== null);
return $token->type;
}, $expectedTokens);
$this->concreteLexer->setInput($input);
$this->concreteLexer->moveNext();
for ($i = 0; $i < count($expectedTokens); $i++) {
assert($expectedTokens[$i]->type !== null);
$this->assertTrue($this->concreteLexer->isNextTokenAny([$expectedTokens[$i]->type]));
$this->assertTrue($this->concreteLexer->isNextTokenAny($allTokenTypes));
$this->concreteLexer->moveNext();
}
}
public function testGetLiteral(): void
{
$this->assertSame('Doctrine\Tests\Common\Lexer\ConcreteLexer::INT', $this->concreteLexer->getLiteral('int'));
$this->assertSame('fake_token', $this->concreteLexer->getLiteral('fake_token'));
}
/**
* @requires PHP 8.1
*/
public function testGetLiteralWithEnumLexer(): void
{
$enumLexer = new EnumLexer();
$this->assertSame(
'Doctrine\Tests\Common\Lexer\TokenType::OPERATOR',
$enumLexer->getLiteral(TokenType::OPERATOR)
);
}
public function testIsA(): void
{
$this->assertTrue($this->concreteLexer->isA('11', 'int'));
$this->assertTrue($this->concreteLexer->isA('1.1', 'int'));
$this->assertTrue($this->concreteLexer->isA('=', 'operator'));
$this->assertTrue($this->concreteLexer->isA('>', 'operator'));
$this->assertTrue($this->concreteLexer->isA('<', 'operator'));
$this->assertTrue($this->concreteLexer->isA('fake_text', 'string'));
}
public function testAddCatchablePatternsToMutableLexer(): void
{
$mutableLexer = new MutableLexer();
$mutableLexer->addCatchablePattern('[a-z]');
$mutableLexer->setInput('one');
$token = $mutableLexer->glimpse();
$this->assertNotNull($token);
$this->assertEquals('o', $token->value);
$mutableLexer = new MutableLexer();
$mutableLexer->addCatchablePattern('[a-z]+');
$mutableLexer->setInput('one');
$token = $mutableLexer->glimpse();
$this->assertNotNull($token);
$this->assertEquals('one', $token->value);
}
public function testMarkerAnnotationLocaleTr(): void
{
setlocale(LC_ALL, 'tr_TR.utf8', 'tr_TR');
$mutableLexer = new MutableLexer();
$mutableLexer->addCatchablePattern('[a-z_\\\][a-z0-9_\:\\\]*[a-z_][a-z0-9_]*');
$mutableLexer->addCatchablePattern('(?:[+-]?[0-9]+(?:[\.][0-9]+)*)(?:[eE][+-]?[0-9]+)?');
$mutableLexer->addCatchablePattern('"(?:""|[^"])*+"');
$mutableLexer->setInput('@ODM\Id');
self::assertNull($mutableLexer->token);
self::assertNull($mutableLexer->lookahead);
self::assertTrue($mutableLexer->moveNext());
self::assertNull($mutableLexer->token);
self::assertNotNull($mutableLexer->lookahead);
self::assertEquals('@', $mutableLexer->lookahead->value);
self::assertTrue($mutableLexer->moveNext());
self::assertNotNull($mutableLexer->token);
self::assertEquals('@', $mutableLexer->token->value);
self::assertEquals('ODM\Id', $mutableLexer->lookahead->value);
}
}