Laravel 4模型事件不适用于PHPUnit

时间:2013-07-02 14:18:36

标签: phpunit laravel laravel-4

我使用creating模型事件

在Laravel 4中构建模型侧验证
class User extends Eloquent {

    public function isValid()
    {
        return Validator::make($this->toArray(), array('name' => 'required'))->passes();
    }

    public static function boot()
    {
        parent::boot();

        static::creating(function($user)
        {
            echo "Hello";
            if (!$user->isValid()) return false;
        });
    }
}

它运行良好,但我有PHPUnit的问题。以下两个测试完全相同,但是第一个测试通过:

class UserTest extends TestCase {

    public function testSaveUserWithoutName()
    {
        $count = User::all()->count();

        $user = new User;
        $saving = $user->save();

        assertFalse($saving);                       // pass
        assertEquals($count, User::all()->count()); // pass
    }

    public function testSaveUserWithoutNameBis()
    {
        $count = User::all()->count();

        $user = new User;
        $saving = $user->save();

        assertFalse($saving);                       // fail
        assertEquals($count, User::all()->count()); // fail, the user is created
    }
}

如果我尝试在同一个测试中创建一个用户两次,它就可以工作,但就像绑定事件只出现在我的测试类的第一个测试中一样。在第一次测试执行期间,echo "Hello";仅打印一次。

我简化了我的问题,但你可以看到问题:我无法在不同的单元测试中测试几个验证规则。我从几个小时开始尝试几乎所有东西,但我现在快要跳出窗户!有什么想法吗?

2 个答案:

答案 0 :(得分:3)

这个问题在Github中有详细记载。请参阅上面的评论,进一步解释。

我修改过一个'解决方案'在Github中,在测试期间自动重置所有模型事件。将以下内容添加到TestCase.php文件中。

应用/测试/ TestCase.php

public function setUp()
{
    parent::setUp();
    $this->resetEvents();
}


private function resetEvents()
{
    // Get all models in the Model directory
    $pathToModels = '/app/models';   // <- Change this to your model directory
    $files = File::files($pathToModels);

    // Remove the directory name and the .php from the filename
    $files = str_replace($pathToModels.'/', '', $files);
    $files = str_replace('.php', '', $files);

    // Remove "BaseModel" as we dont want to boot that moodel
    if(($key = array_search('BaseModel', $files)) !== false) {
        unset($files[$key]);
    }

    // Reset each model event listeners.
    foreach ($files as $model) {

        // Flush any existing listeners.
        call_user_func(array($model, 'flushEventListeners'));

        // Reregister them.
        call_user_func(array($model, 'boot'));
    }
}

答案 1 :(得分:0)

我的模型在子目录中,所以我编辑了@TheShiftExchange代码

//Get all models in the Model directory
$pathToModels = '/path/to/app/models';
$files = File::allFiles($pathToModels);

foreach ($files as $file) {
    $fileName = $file->getFileName();
    if (!ends_with($fileName, 'Search.php') && !starts_with($fileName, 'Base')) {
        $model = str_replace('.php', '', $fileName);
        // Flush any existing listeners.
        call_user_func(array($model, 'flushEventListeners'));
        // Re-register them.
        call_user_func(array($model, 'boot'));
    }
}