1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-28 18:11:17 +02:00
pocketbase/tests/logs.go

54 lines
827 B
Go
Raw Normal View History

2022-07-06 23:19:05 +02:00
package tests
func MockRequestLogsData(app *TestApp) error {
_, err := app.LogsDB().NewQuery(`
delete from {{_requests}};
insert into {{_requests}} (
[[id]],
[[url]],
[[method]],
[[status]],
[[auth]],
[[userIp]],
[[remoteIp]],
2022-07-06 23:19:05 +02:00
[[referer]],
[[userAgent]],
[[meta]],
[[created]],
[[updated]]
)
values
(
"873f2133-9f38-44fb-bf82-c8f53b310d91",
"/test1",
"get",
200,
"guest",
"127.0.0.1",
"127.0.0.1",
2022-07-06 23:19:05 +02:00
"",
"",
"{}",
"2022-05-01 10:00:00.123",
"2022-05-01 10:00:00.123"
),
(
"f2133873-44fb-9f38-bf82-c918f53b310d",
"/test2",
"post",
400,
"admin",
"127.0.0.1",
"127.0.0.1",
2022-07-06 23:19:05 +02:00
"",
"",
'{"errorDetails":"error_details..."}',
"2022-05-02 10:00:00.123",
"2022-05-02 10:00:00.123"
);
`).Execute()
return err
}