我正在用laravel为我的模型编写一些测试,当我使用空间/拉拉-活动日志启用活动日志时,我遇到了一些麻烦。
因此,我创建了一个用户,使用Factory在系统中进行身份验证,当我尝试注销时,我得到了以下错误:
Tests\Feature\Usuario\CriarUsuarioTest::testAcessaPaginaDeRegistro Illuminate\Database\Eloquent\JsonEncodingException:无法为模型Spatie\Activitylog\\Activitylog\Activitylog\Activity编码JSON的属性属性:::不支持.
我的测试TestCase.php
protected function setUp()
{
parent::setUp();
$this->user = create('App\Models\Usuario');
$this->singIn($this->user)
->disableExceptionHandling();
}
...
...
...
protected function singIn($user)
{
$this->actingAs($user);
return $this;
}
protected function singOut()
{
// routeLogout() goes to '/logout' route.
$this->post(routeLogout()); // <- Here, where the error occurs
return $this;
}我的App/Models/Usuario.php模型:
namespace App\Models;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Webpatser\Uuid\Uuid;
use Spatie\Activitylog\Traits\LogsActivity;
class Usuario extends Authenticatable
{
use LogsActivity, Notifiable, SoftDeletes;
protected $table = 'usuario';
protected $fillable = [/*...*/] ; // I remove this to post here on SO
protected static $logFillable = true;
public $timestamps = true;
protected $dates = [
'created_at',
'updated_at',
'deleted_at'
];
protected static function boot()
{
// Handle the \LogsActivity boot method
parent::boot();
static::saving(function ($usuario){
$usuario->uuid = Uuid::generate()->string;
});
}
public function getRouteKeyName()
{
return 'uuid';
}
}我的config/activitylog.php文件:
return [
'enabled' => env('ACTIVITY_LOGGER_ENABLED', true),
'delete_records_older_than_days' => 365,
'default_log_name' => 'default',
'default_auth_driver' => null,
'subject_returns_soft_deleted_models' => false,
'activity_model' => \Spatie\Activitylog\Models\Activity::class,
];我的phpunit.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="API_DEBUG" value="true"/>
<env name="memory_limit" value="512M"/>
<env name="APP_DATABASE" value="test"/>
</php>
</phpunit>我的create_activity_log_migration文件:
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateActivityLogTable extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::create('activity_log', function (Blueprint $table) {
$table->increments('id');
$table->string('log_name')->nullable();
$table->string('description');
$table->integer('subject_id')->nullable();
$table->string('subject_type')->nullable();
$table->integer('causer_id')->nullable();
$table->string('causer_type')->nullable();
$table->text('properties')->nullable();
$table->timestamps();
$table->index('log_name');
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::drop('activity_log');
}
}我注意到,当我禁用活动日志的模型,它的工作很好。而且,当我通过修补程序或浏览器使用系统时,日志也可以工作。
发布于 2018-01-03 13:55:42
我无法重现错误,但我确实有一些注意事项:
created、updated或deleted事件。created事件。这反过来触发活动日志。Activity时,您将得到异常Illuminate\Database\Eloquent\JsonEncodingException: Unable to encode attribute [properties] for model [Spatie\Activitylog\Models\Activity] to JSON: Type is not supported.。这几乎肯定是在Illuminate\Database\Eloquent\Concerns\HasAttributes@castAttributeAsJson方法中抛出的,该方法对属性值执行一个简单的json_encode。properties的一部分?在创建用户之后尝试dd($user->attributeValuesToBeLogged('created'))。发布于 2018-01-03 14:21:14
我找到了答案(但我不知道这是否是最好的解决办法);
只要将一个$this->createApplication();放在SetUp方法中,在TestCase.php文件中,错误就会消失。
谢谢大家伙计们。
https://stackoverflow.com/questions/47799161
复制相似问题