我需要一个函数,该函数会给我一些由PHP代码完成的表和记录的列表。该功能将从单元测试中执行。
我的想法是通过Carbon设置时间,执行一些php代码,然后运行此函数,该函数将获取数据库中所有表的列表,并对每个表运行一次select,以查找创建时的特定日期- at和update-at字段。
然后,它返回在batabase中创建的记录的集合(按表名分组)。
或者,如果我愿意获得数据库事务所做的修改的列表。
我不知道这样的函数是否存在于MySQL级别的某个地方,或者是否存在于Laravel或PHPUnit中。
如果不存在,请帮助我编写。谢谢。
答案 0 :(得分:0)
这是我现在解决的方法:
功能
function databaseChanges(Carbon $dateTime): array
{
$schema = config('database.connections.mysql.database');
$tables = DB::select(
"
SELECT `table_name`
FROM `information_schema`.`tables`
WHERE true
AND `table_type` = 'base table'
AND `table_schema`= ?
"
, [$schema]
);
$result = [];
foreach ($tables as $table) {
try {
$records = DB::table($table->table_name)
->select('created_at', 'updated_at')
->where('created_at', $dateTime)
->orWhere('updated_at', $dateTime)
->get();
if ($records->count() > 0) {
$result[$table->table_name] = $records;
}
} catch (QueryException $ex) {
//\Log::debug(get_class($ex));
}
}
return $result;
}
单元测试
class DataBaseTest extends TestCase
{
use DatabaseTransactions;
public function test_data_base_changes(): void
{
$now = Carbon::now();
Carbon::setTestNow($now); // stop the time
$user = factory(User::class)->create();
$changes = databaseChanges($now);
$this->assertSame(['accounts', 'users'], array_keys($changes));
}
}