- Set up cobra CLI with all commands (backup, restore, prune, verify, fetch) - Integrate uber/fx for dependency injection and lifecycle management - Add globals package with build-time variables (Version, Commit) - Implement config loading from YAML with validation - Create core data models (FileInfo, ChunkInfo, BlobInfo, Snapshot) - Add Makefile with build, test, lint, and clean targets - Include minimal test suite for compilation verification - Update documentation with --quick flag for verify command - Fix markdown numbering in implementation TODO
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
package models
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
// TestModelsCompilation ensures all model types can be instantiated
|
|
func TestModelsCompilation(t *testing.T) {
|
|
// This test primarily serves as a compilation test
|
|
// to ensure all types are properly defined
|
|
|
|
// Test FileInfo
|
|
fi := &FileInfo{
|
|
Path: "/test/file.txt",
|
|
MTime: time.Now(),
|
|
Size: 1024,
|
|
}
|
|
if fi.Path != "/test/file.txt" {
|
|
t.Errorf("FileInfo.Path not set correctly")
|
|
}
|
|
|
|
// Test ChunkInfo
|
|
ci := &ChunkInfo{
|
|
Hash: "abc123",
|
|
Size: 512,
|
|
Offset: 0,
|
|
}
|
|
if ci.Hash != "abc123" {
|
|
t.Errorf("ChunkInfo.Hash not set correctly")
|
|
}
|
|
|
|
// Test BlobInfo
|
|
bi := &BlobInfo{
|
|
Hash: "blob123",
|
|
FinalHash: "final123",
|
|
CreatedAt: time.Now(),
|
|
Size: 1024,
|
|
ChunkCount: 2,
|
|
}
|
|
if bi.Hash != "blob123" {
|
|
t.Errorf("BlobInfo.Hash not set correctly")
|
|
}
|
|
|
|
// Test Snapshot
|
|
s := &Snapshot{
|
|
ID: "2024-01-01T00:00:00Z",
|
|
Hostname: "test-host",
|
|
Version: "1.0.0",
|
|
CreatedAt: time.Now(),
|
|
}
|
|
if s.ID != "2024-01-01T00:00:00Z" {
|
|
t.Errorf("Snapshot.ID not set correctly")
|
|
}
|
|
} |