+ [misc] Add unit tests for searchTao::unify() method

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
liugang
2025-11-12 08:25:29 +08:00
co-authored by Claude
parent bc2a75745d
commit 6cb8d0dd32
2 changed files with 52 additions and 0 deletions
+15
View File
@@ -328,4 +328,19 @@ class searchTaoTest extends baseTest
if(dao::isError()) return dao::getError();
return $result;
}
/**
* Test unify method.
*
* @param string $string
* @param string $to
* @access public
* @return string
*/
public function unifyTest(string $string, string $to = ','): string
{
$result = $this->invokeArgs('unify', [$string, $to]);
if(dao::isError()) return dao::getError();
return $result;
}
}
+37
View File
@@ -0,0 +1,37 @@
#!/usr/bin/env php
<?php
/**
title=测试 searchTao::unify();
timeout=0
cid=0
- 测试将多种特殊符号统一替换为逗号 @hello,world,test,data
- 测试将特殊符号替换为空格 @hello world test data
- 测试将多个连续符号合并为一个 @hello,world
- 测试去除首尾的目标符号 @hello,world,test
- 测试包含中文标点的字符串替换 @你好,世界,测试
- 测试空字符串输入 @0
- 测试仅包含特殊符号的字符串 @0
*/
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/tao.class.php';
su('admin');
$searchTest = new searchTaoTest();
r($searchTest->unifyTest('hello_world、test-data')) && p() && e('hello,world,test,data'); // 测试将多种特殊符号统一替换为逗号
r($searchTest->unifyTest('hello_world、test-data', ' ')) && p() && e('hello world test data'); // 测试将特殊符号替换为空格
r($searchTest->unifyTest('hello___world', ',')) && p() && e('hello,world'); // 测试将多个连续符号合并为一个
r($searchTest->unifyTest('_hello、world-test_', ',')) && p() && e('hello,world,test'); // 测试去除首尾的目标符号
r($searchTest->unifyTest('你好、世界。测试')) && p() && e('你好,世界,测试'); // 测试包含中文标点的字符串替换
r($searchTest->unifyTest('')) && p() && e('0'); // 测试空字符串输入
r($searchTest->unifyTest('_、-。,', ',')) && p() && e('0'); // 测试仅包含特殊符号的字符串