+ [misc] Add unit tests for productZen::getBackLink4Create() 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:31:02 +08:00
co-authored by Claude
parent bf821afcc1
commit 2e64ae56a7
2 changed files with 43 additions and 0 deletions
+14
View File
@@ -329,4 +329,18 @@ class productZenTest extends baseTest
return $result;
}
/**
* Test getBackLink4Create method.
*
* @param string $extra
* @access public
* @return string
*/
public function getBackLink4CreateTest(string $extra = '')
{
$result = $this->invokeArgs('getBackLink4Create', array($extra));
if(dao::isError()) return dao::getError();
return $result;
}
}
+29
View File
@@ -0,0 +1,29 @@
#!/usr/bin/env php
<?php
/**
title=测试 productZen::getBackLink4Create();
timeout=0
cid=0
- 测试步骤1:extra参数为空字符串 @0
- 测试步骤2:extra参数from=qa @1
- 测试步骤3:extra参数from=global @1
- 测试步骤4:extra参数from=other @0
- 测试步骤5:extra参数包含逗号和空格 @1
*/
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/zen.class.php';
su('admin');
$productTest = new productZenTest();
r($productTest->getBackLink4CreateTest('')) && p() && e('0'); // 测试步骤1:extra参数为空字符串
r(strpos($productTest->getBackLink4CreateTest('from=qa'), 'm=qa&f=index') !== false) && p() && e('1'); // 测试步骤2:extra参数from=qa
r(strpos($productTest->getBackLink4CreateTest('from=global'), 'm=product&f=all') !== false) && p() && e('1'); // 测试步骤3:extra参数from=global
r($productTest->getBackLink4CreateTest('from=other')) && p() && e('0'); // 测试步骤4:extra参数from=other
r(strpos($productTest->getBackLink4CreateTest('from=qa, param=1'), 'm=qa&f=index') !== false) && p() && e('1'); // 测试步骤5:extra参数包含逗号和空格