mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 08:44:04 +01:00
Backend: Add unit tests for internal/entity
This commit is contained in:
@@ -19,18 +19,87 @@ func TestNewFileSync(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestFirstOrCreateFileSync(t *testing.T) {
|
||||
fileSync := &FileSync{AccountID: 123, FileID: 888, RemoteName: "test123"}
|
||||
result := FirstOrCreateFileSync(fileSync)
|
||||
t.Run("not yet existing", func(t *testing.T) {
|
||||
fileSync := &FileSync{AccountID: 123, FileID: 888, RemoteName: "test123"}
|
||||
result := FirstOrCreateFileSync(fileSync)
|
||||
|
||||
if result == nil {
|
||||
t.Fatal("result should not be nil")
|
||||
}
|
||||
if result == nil {
|
||||
t.Fatal("result should not be nil")
|
||||
}
|
||||
|
||||
if result.FileID != fileSync.FileID {
|
||||
t.Errorf("FileID should be the same: %d %d", result.FileID, fileSync.FileID)
|
||||
}
|
||||
if result.FileID != fileSync.FileID {
|
||||
t.Errorf("FileID should be the same: %d %d", result.FileID, fileSync.FileID)
|
||||
}
|
||||
|
||||
if result.AccountID != fileSync.AccountID {
|
||||
t.Errorf("AccountID should be the same: %d %d", result.AccountID, fileSync.AccountID)
|
||||
}
|
||||
if result.AccountID != fileSync.AccountID {
|
||||
t.Errorf("AccountID should be the same: %d %d", result.AccountID, fileSync.AccountID)
|
||||
}
|
||||
})
|
||||
|
||||
t.Run("existing", func(t *testing.T) {
|
||||
fileSync := NewFileSync(778, "NameForRemote")
|
||||
result := FirstOrCreateFileSync(fileSync)
|
||||
|
||||
if result == nil {
|
||||
t.Fatal("result share should not be nil")
|
||||
}
|
||||
|
||||
if result.FileID != fileSync.FileID {
|
||||
t.Errorf("FileID should be the same: %d %d", result.FileID, fileSync.FileID)
|
||||
}
|
||||
|
||||
if result.AccountID != fileSync.AccountID {
|
||||
t.Errorf("AccountID should be the same: %d %d", result.AccountID, fileSync.AccountID)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
func TestFileSync_Updates(t *testing.T) {
|
||||
t.Run("success", func(t *testing.T) {
|
||||
fileSync := NewFileSync(123, "NameBeforeUpdate")
|
||||
|
||||
assert.Equal(t, "NameBeforeUpdate", fileSync.RemoteName)
|
||||
assert.Equal(t, uint(0x7b), fileSync.AccountID)
|
||||
|
||||
err := fileSync.Updates(FileSync{RemoteName: "NameAfterUpdate", AccountID: 999})
|
||||
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
assert.Equal(t, "NameAfterUpdate", fileSync.RemoteName)
|
||||
assert.Equal(t, uint(0x3e7), fileSync.AccountID)
|
||||
})
|
||||
}
|
||||
|
||||
func TestFileSync_Update(t *testing.T) {
|
||||
t.Run("success", func(t *testing.T) {
|
||||
fileSync := NewFileSync(123, "NameBeforeUpdate2")
|
||||
assert.Equal(t, "NameBeforeUpdate2", fileSync.RemoteName)
|
||||
assert.Equal(t, uint(0x7b), fileSync.AccountID)
|
||||
|
||||
err := fileSync.Update("RemoteName", "new-name")
|
||||
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
assert.Equal(t, "new-name", fileSync.RemoteName)
|
||||
assert.Equal(t, uint(0x7b), fileSync.AccountID)
|
||||
})
|
||||
}
|
||||
|
||||
func TestFileSync_Save(t *testing.T) {
|
||||
t.Run("success", func(t *testing.T) {
|
||||
fileSync := NewFileSync(123, "Nameavc")
|
||||
|
||||
initialDate := fileSync.UpdatedAt
|
||||
|
||||
err := fileSync.Save()
|
||||
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
afterDate := fileSync.UpdatedAt
|
||||
|
||||
assert.True(t, afterDate.After(initialDate))
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user