我制作了一个新的,干净的Codeigniter 2.2.1项目来测试这个问题。
我的环境:
MacOSX 10.10
PHP 5.6.8 (cli) (built: Apr 20 2015 10:59:03)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies
with Xdebug v2.2.3, Copyright (c) 2002-2013, by Derick Rethans
Codigniter 2.2.1
Codeception: *
Codeception/aspectmock: *
我做了很多黑客与代码集合
最后,我可以使用& get_instance()函数进行测试,一切都可以正常运行。
但是,
当我想模拟模型或Lib类
时没有发生我期望的事。
这是我的_bootstrap文件
include __DIR__.'/../vendor/autoload.php'; // composer autoload
$kernel = \AspectMock\Kernel::getInstance();
$kernel->init([
'debug' => true,
'includePaths' => [
__DIR__.'/../application',
__DIR__.'/../system',
],
"excludePaths" => [
__DIR__
],
"cacheDir" => "/tmp/mock_cache",
"appDir" => __DIR__.'/..',
"vendor" => __DIR__.'/../vendor'
]);
.....
Codeigniter hack and my autoload
.....
然后我创建了一个单元测试
php vendor/bin/codecep g:test unit pub
哦,是的,我必须创造" pub"类到应用程序/模型文件夹
然后将其添加到autoload config
并且pub类有一个名为gogo()的公共函数
它将返回" 123"串
class pub extends CI_Model
{
public function gogo()
{
return "123";
}
}
我想嘲笑这回复" 456"
所以我的测试文件是
use AspectMock\Test as test;
...
protected $CI;
protected function _before()
{
$this->CI = &get_instance();
}
protected function _after()
{
\AspectMock\Test::clean();
}
// tests
public function testMe()
{
$mymodel = test::double("pub", ["gogo" => "456"]);
$this->assertEquals("456", $this->CI->pub->gogo());
}
结果失败
Failed asserting that two strings are equal.
--- Expected
+++ Actual
@@ @@
-'456'
+'123'
哪一步出错?
答案 0 :(得分:1)
CodeIgniter没有真正的自动加载器。 试试这个:https://github.com/Codeception/AspectMock#without-autoloader