2020-04-30 22:25:53 +02:00
|
|
|
package entity
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
)
|
|
|
|
|
2020-05-10 19:43:49 +02:00
|
|
|
type AccountMap map[string]Account
|
|
|
|
|
|
|
|
var AccountFixtures = AccountMap{
|
2020-04-30 22:25:53 +02:00
|
|
|
"webdav-dummy": {
|
|
|
|
ID: 1000000,
|
|
|
|
AccName: "Test Account",
|
|
|
|
AccOwner: "",
|
|
|
|
AccURL: "http://webdav-dummy/",
|
|
|
|
AccType: "webdav",
|
|
|
|
AccKey: "",
|
|
|
|
AccUser: "admin",
|
|
|
|
AccPass: "photoprism",
|
|
|
|
AccError: "",
|
|
|
|
AccErrors: 0,
|
|
|
|
AccShare: true,
|
|
|
|
AccSync: true,
|
|
|
|
RetryLimit: 3,
|
|
|
|
SharePath: "/Photos",
|
|
|
|
ShareSize: "",
|
2020-05-13 10:15:43 +02:00
|
|
|
ShareExpires: 1,
|
2020-04-30 22:25:53 +02:00
|
|
|
SyncPath: "/Photos",
|
2021-07-22 13:52:22 +02:00
|
|
|
SyncStatus: "refresh",
|
2020-04-30 22:25:53 +02:00
|
|
|
SyncInterval: 3600,
|
2021-08-29 13:26:05 +02:00
|
|
|
SyncDate: sql.NullTime{Time: TimeStamp()},
|
2020-04-30 22:25:53 +02:00
|
|
|
SyncUpload: true,
|
|
|
|
SyncDownload: true,
|
|
|
|
SyncFilenames: true,
|
|
|
|
SyncRaw: true,
|
2021-08-29 13:26:05 +02:00
|
|
|
CreatedAt: TimeStamp(),
|
|
|
|
UpdatedAt: TimeStamp(),
|
2020-04-30 22:25:53 +02:00
|
|
|
DeletedAt: nil,
|
|
|
|
},
|
2020-05-13 10:15:43 +02:00
|
|
|
"webdav-dummy2": {
|
|
|
|
ID: 1000001,
|
|
|
|
AccName: "Test Account2",
|
|
|
|
AccOwner: "",
|
|
|
|
AccURL: "http://webdav-dummy/",
|
|
|
|
AccType: "webdav",
|
2021-07-22 13:52:22 +02:00
|
|
|
AccKey: "",
|
2020-05-13 10:15:43 +02:00
|
|
|
AccUser: "admin",
|
|
|
|
AccPass: "photoprism",
|
|
|
|
AccError: "",
|
|
|
|
AccErrors: 0,
|
|
|
|
AccShare: false,
|
|
|
|
AccSync: false,
|
|
|
|
RetryLimit: 3,
|
|
|
|
SharePath: "/Photos",
|
|
|
|
ShareSize: "",
|
|
|
|
ShareExpires: 0,
|
|
|
|
SyncPath: "/Photos",
|
2021-07-22 13:52:22 +02:00
|
|
|
SyncStatus: "refresh",
|
2020-05-13 10:15:43 +02:00
|
|
|
SyncInterval: 3600,
|
2021-08-29 13:26:05 +02:00
|
|
|
SyncDate: sql.NullTime{Time: TimeStamp()},
|
2020-05-13 10:15:43 +02:00
|
|
|
SyncUpload: true,
|
|
|
|
SyncDownload: true,
|
|
|
|
SyncFilenames: true,
|
|
|
|
SyncRaw: true,
|
2021-08-29 13:26:05 +02:00
|
|
|
CreatedAt: TimeStamp(),
|
|
|
|
UpdatedAt: TimeStamp(),
|
2020-05-13 10:15:43 +02:00
|
|
|
DeletedAt: nil,
|
|
|
|
},
|
2020-04-30 22:25:53 +02:00
|
|
|
}
|
|
|
|
|
2020-05-13 10:15:43 +02:00
|
|
|
var AccountFixtureWebdavDummy = AccountFixtures["webdav-dummy"]
|
|
|
|
var AccountFixtureWebdavDummy2 = AccountFixtures["webdav-dummy2"]
|
|
|
|
|
2020-04-30 22:25:53 +02:00
|
|
|
// CreateLabelFixtures inserts known entities into the database for testing.
|
|
|
|
func CreateAccountFixtures() {
|
|
|
|
for _, entity := range AccountFixtures {
|
|
|
|
Db().Create(&entity)
|
|
|
|
}
|
|
|
|
}
|