mirror of
https://github.com/lordmathis/llamactl.git
synced 2025-11-06 00:54:23 +00:00
481 lines
12 KiB
Go
481 lines
12 KiB
Go
package manager_test
|
|
|
|
import (
|
|
"fmt"
|
|
"llamactl/pkg/backends/llamacpp"
|
|
"llamactl/pkg/config"
|
|
"llamactl/pkg/instance"
|
|
"llamactl/pkg/manager"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestNewInstanceManager(t *testing.T) {
|
|
cfg := config.InstancesConfig{
|
|
PortRange: [2]int{8000, 9000},
|
|
LogsDir: "/tmp/test",
|
|
MaxInstances: 5,
|
|
LlamaExecutable: "llama-server",
|
|
DefaultAutoRestart: true,
|
|
DefaultMaxRestarts: 3,
|
|
DefaultRestartDelay: 5,
|
|
TimeoutCheckInterval: 5,
|
|
}
|
|
|
|
manager := manager.NewInstanceManager(cfg)
|
|
if manager == nil {
|
|
t.Fatal("NewInstanceManager returned nil")
|
|
}
|
|
|
|
// Test initial state
|
|
instances, err := manager.ListInstances()
|
|
if err != nil {
|
|
t.Fatalf("ListInstances failed: %v", err)
|
|
}
|
|
if len(instances) != 0 {
|
|
t.Errorf("Expected empty instance list, got %d instances", len(instances))
|
|
}
|
|
}
|
|
|
|
func TestCreateInstance_Success(t *testing.T) {
|
|
manager := createTestManager()
|
|
|
|
options := &instance.CreateInstanceOptions{
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/model.gguf",
|
|
Port: 8080,
|
|
},
|
|
}
|
|
|
|
inst, err := manager.CreateInstance("test-instance", options)
|
|
if err != nil {
|
|
t.Fatalf("CreateInstance failed: %v", err)
|
|
}
|
|
|
|
if inst.Name != "test-instance" {
|
|
t.Errorf("Expected instance name 'test-instance', got %q", inst.Name)
|
|
}
|
|
if inst.Running {
|
|
t.Error("New instance should not be running")
|
|
}
|
|
if inst.GetOptions().Port != 8080 {
|
|
t.Errorf("Expected port 8080, got %d", inst.GetOptions().Port)
|
|
}
|
|
}
|
|
|
|
func TestCreateInstance_ValidationAndLimits(t *testing.T) {
|
|
// Test duplicate names
|
|
mngr := createTestManager()
|
|
options := &instance.CreateInstanceOptions{
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/model.gguf",
|
|
},
|
|
}
|
|
|
|
_, err := mngr.CreateInstance("test-instance", options)
|
|
if err != nil {
|
|
t.Fatalf("First CreateInstance failed: %v", err)
|
|
}
|
|
|
|
// Try to create duplicate
|
|
_, err = mngr.CreateInstance("test-instance", options)
|
|
if err == nil {
|
|
t.Error("Expected error for duplicate instance name")
|
|
}
|
|
if !strings.Contains(err.Error(), "already exists") {
|
|
t.Errorf("Expected duplicate name error, got: %v", err)
|
|
}
|
|
|
|
// Test max instances limit
|
|
cfg := config.InstancesConfig{
|
|
PortRange: [2]int{8000, 9000},
|
|
MaxInstances: 1, // Very low limit for testing
|
|
TimeoutCheckInterval: 5,
|
|
}
|
|
limitedManager := manager.NewInstanceManager(cfg)
|
|
|
|
_, err = limitedManager.CreateInstance("instance1", options)
|
|
if err != nil {
|
|
t.Fatalf("CreateInstance 1 failed: %v", err)
|
|
}
|
|
|
|
// This should fail due to max instances limit
|
|
_, err = limitedManager.CreateInstance("instance2", options)
|
|
if err == nil {
|
|
t.Error("Expected error when exceeding max instances limit")
|
|
}
|
|
if !strings.Contains(err.Error(), "maximum number of instances") {
|
|
t.Errorf("Expected max instances error, got: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestPortManagement(t *testing.T) {
|
|
manager := createTestManager()
|
|
|
|
// Test auto port assignment
|
|
options1 := &instance.CreateInstanceOptions{
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/model.gguf",
|
|
},
|
|
}
|
|
|
|
inst1, err := manager.CreateInstance("instance1", options1)
|
|
if err != nil {
|
|
t.Fatalf("CreateInstance failed: %v", err)
|
|
}
|
|
|
|
port1 := inst1.GetOptions().Port
|
|
if port1 < 8000 || port1 > 9000 {
|
|
t.Errorf("Expected port in range 8000-9000, got %d", port1)
|
|
}
|
|
|
|
// Test port conflict detection
|
|
options2 := &instance.CreateInstanceOptions{
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/model2.gguf",
|
|
Port: port1, // Same port - should conflict
|
|
},
|
|
}
|
|
|
|
_, err = manager.CreateInstance("instance2", options2)
|
|
if err == nil {
|
|
t.Error("Expected error for port conflict")
|
|
}
|
|
if !strings.Contains(err.Error(), "port") && !strings.Contains(err.Error(), "in use") {
|
|
t.Errorf("Expected port conflict error, got: %v", err)
|
|
}
|
|
|
|
// Test port release on deletion
|
|
specificPort := 8080
|
|
options3 := &instance.CreateInstanceOptions{
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/model.gguf",
|
|
Port: specificPort,
|
|
},
|
|
}
|
|
|
|
_, err = manager.CreateInstance("port-test", options3)
|
|
if err != nil {
|
|
t.Fatalf("CreateInstance failed: %v", err)
|
|
}
|
|
|
|
err = manager.DeleteInstance("port-test")
|
|
if err != nil {
|
|
t.Fatalf("DeleteInstance failed: %v", err)
|
|
}
|
|
|
|
// Should be able to create new instance with same port
|
|
_, err = manager.CreateInstance("new-port-test", options3)
|
|
if err != nil {
|
|
t.Errorf("Expected to reuse port after deletion, got error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestInstanceOperations(t *testing.T) {
|
|
manager := createTestManager()
|
|
|
|
options := &instance.CreateInstanceOptions{
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/model.gguf",
|
|
},
|
|
}
|
|
|
|
// Create instance
|
|
created, err := manager.CreateInstance("test-instance", options)
|
|
if err != nil {
|
|
t.Fatalf("CreateInstance failed: %v", err)
|
|
}
|
|
|
|
// Get instance
|
|
retrieved, err := manager.GetInstance("test-instance")
|
|
if err != nil {
|
|
t.Fatalf("GetInstance failed: %v", err)
|
|
}
|
|
if retrieved.Name != created.Name {
|
|
t.Errorf("Expected name %q, got %q", created.Name, retrieved.Name)
|
|
}
|
|
|
|
// Update instance
|
|
newOptions := &instance.CreateInstanceOptions{
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/new-model.gguf",
|
|
Port: 8081,
|
|
},
|
|
}
|
|
|
|
updated, err := manager.UpdateInstance("test-instance", newOptions)
|
|
if err != nil {
|
|
t.Fatalf("UpdateInstance failed: %v", err)
|
|
}
|
|
if updated.GetOptions().Model != "/path/to/new-model.gguf" {
|
|
t.Errorf("Expected model '/path/to/new-model.gguf', got %q", updated.GetOptions().Model)
|
|
}
|
|
|
|
// List instances
|
|
instances, err := manager.ListInstances()
|
|
if err != nil {
|
|
t.Fatalf("ListInstances failed: %v", err)
|
|
}
|
|
if len(instances) != 1 {
|
|
t.Errorf("Expected 1 instance, got %d", len(instances))
|
|
}
|
|
|
|
// Delete instance
|
|
err = manager.DeleteInstance("test-instance")
|
|
if err != nil {
|
|
t.Fatalf("DeleteInstance failed: %v", err)
|
|
}
|
|
|
|
_, err = manager.GetInstance("test-instance")
|
|
if err == nil {
|
|
t.Error("Instance should not exist after deletion")
|
|
}
|
|
|
|
// Test operations on non-existent instances
|
|
_, err = manager.GetInstance("nonexistent")
|
|
if err == nil || !strings.Contains(err.Error(), "not found") {
|
|
t.Errorf("Expected 'not found' error, got: %v", err)
|
|
}
|
|
|
|
err = manager.DeleteInstance("nonexistent")
|
|
if err == nil || !strings.Contains(err.Error(), "not found") {
|
|
t.Errorf("Expected 'not found' error, got: %v", err)
|
|
}
|
|
|
|
_, err = manager.UpdateInstance("nonexistent", options)
|
|
if err == nil || !strings.Contains(err.Error(), "not found") {
|
|
t.Errorf("Expected 'not found' error, got: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestPersistence(t *testing.T) {
|
|
tempDir := t.TempDir()
|
|
|
|
cfg := config.InstancesConfig{
|
|
PortRange: [2]int{8000, 9000},
|
|
InstancesDir: tempDir,
|
|
MaxInstances: 10,
|
|
TimeoutCheckInterval: 5,
|
|
}
|
|
|
|
// Test instance persistence on creation
|
|
manager1 := manager.NewInstanceManager(cfg)
|
|
options := &instance.CreateInstanceOptions{
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/model.gguf",
|
|
Port: 8080,
|
|
},
|
|
}
|
|
|
|
_, err := manager1.CreateInstance("test-instance", options)
|
|
if err != nil {
|
|
t.Fatalf("CreateInstance failed: %v", err)
|
|
}
|
|
|
|
// Check that JSON file was created
|
|
expectedPath := filepath.Join(tempDir, "test-instance.json")
|
|
if _, err := os.Stat(expectedPath); os.IsNotExist(err) {
|
|
t.Errorf("Expected persistence file %s to exist", expectedPath)
|
|
}
|
|
|
|
// Test loading instances from disk
|
|
manager2 := manager.NewInstanceManager(cfg)
|
|
instances, err := manager2.ListInstances()
|
|
if err != nil {
|
|
t.Fatalf("ListInstances failed: %v", err)
|
|
}
|
|
if len(instances) != 1 {
|
|
t.Fatalf("Expected 1 loaded instance, got %d", len(instances))
|
|
}
|
|
if instances[0].Name != "test-instance" {
|
|
t.Errorf("Expected loaded instance name 'test-instance', got %q", instances[0].Name)
|
|
}
|
|
|
|
// Test port map populated from loaded instances (port conflict should be detected)
|
|
_, err = manager2.CreateInstance("new-instance", options) // Same port
|
|
if err == nil || !strings.Contains(err.Error(), "port") {
|
|
t.Errorf("Expected port conflict error, got: %v", err)
|
|
}
|
|
|
|
// Test file deletion on instance deletion
|
|
err = manager2.DeleteInstance("test-instance")
|
|
if err != nil {
|
|
t.Fatalf("DeleteInstance failed: %v", err)
|
|
}
|
|
|
|
if _, err := os.Stat(expectedPath); !os.IsNotExist(err) {
|
|
t.Error("Expected persistence file to be deleted")
|
|
}
|
|
}
|
|
|
|
func TestTimeoutFunctionality(t *testing.T) {
|
|
// Test timeout checker initialization
|
|
cfg := config.InstancesConfig{
|
|
PortRange: [2]int{8000, 9000},
|
|
TimeoutCheckInterval: 10,
|
|
MaxInstances: 5,
|
|
}
|
|
|
|
manager := manager.NewInstanceManager(cfg)
|
|
if manager == nil {
|
|
t.Fatal("Manager should be initialized with timeout checker")
|
|
}
|
|
manager.Shutdown() // Clean up
|
|
|
|
// Test timeout behavior with actual timeout logic
|
|
testManager := createTestManager()
|
|
defer testManager.Shutdown()
|
|
|
|
idleTimeout := 1 // 1 minute
|
|
options := &instance.CreateInstanceOptions{
|
|
IdleTimeout: &idleTimeout,
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/model.gguf",
|
|
},
|
|
}
|
|
|
|
inst, err := testManager.CreateInstance("timeout-test", options)
|
|
if err != nil {
|
|
t.Fatalf("CreateInstance failed: %v", err)
|
|
}
|
|
|
|
_, err = testManager.StartInstance("timeout-test")
|
|
if err != nil {
|
|
t.Fatalf("StartInstance failed: %v", err)
|
|
}
|
|
|
|
// Create a mock time provider to simulate timeout
|
|
mockTime := NewMockTimeProvider(time.Now())
|
|
inst.SetTimeProvider(mockTime)
|
|
inst.UpdateLastRequestTime()
|
|
|
|
// Advance time to trigger timeout
|
|
mockTime.SetTime(time.Now().Add(2 * time.Minute))
|
|
|
|
// Verify the instance should timeout
|
|
if !inst.ShouldTimeout() {
|
|
t.Fatal("Instance should be configured to timeout")
|
|
}
|
|
|
|
// Test stopping timed out instance
|
|
_, err = testManager.StopInstance("timeout-test")
|
|
if err != nil {
|
|
t.Fatalf("StopInstance failed: %v", err)
|
|
}
|
|
|
|
stoppedInst, err := testManager.GetInstance("timeout-test")
|
|
if err != nil {
|
|
t.Fatalf("GetInstance failed: %v", err)
|
|
}
|
|
if stoppedInst.Running {
|
|
t.Error("Instance should not be running after timeout stop")
|
|
}
|
|
}
|
|
|
|
func TestConcurrentAccess(t *testing.T) {
|
|
manager := createTestManager()
|
|
defer manager.Shutdown()
|
|
|
|
// Test concurrent operations
|
|
var wg sync.WaitGroup
|
|
errChan := make(chan error, 10)
|
|
|
|
// Concurrent instance creation
|
|
for i := 0; i < 5; i++ {
|
|
wg.Add(1)
|
|
go func(index int) {
|
|
defer wg.Done()
|
|
options := &instance.CreateInstanceOptions{
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/model.gguf",
|
|
},
|
|
}
|
|
instanceName := fmt.Sprintf("concurrent-test-%d", index)
|
|
if _, err := manager.CreateInstance(instanceName, options); err != nil {
|
|
errChan <- err
|
|
}
|
|
}(i)
|
|
}
|
|
|
|
// Concurrent list operations
|
|
for i := 0; i < 3; i++ {
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
if _, err := manager.ListInstances(); err != nil {
|
|
errChan <- err
|
|
}
|
|
}()
|
|
}
|
|
|
|
wg.Wait()
|
|
close(errChan)
|
|
|
|
// Check for any errors during concurrent access
|
|
for err := range errChan {
|
|
t.Errorf("Concurrent access error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestShutdown(t *testing.T) {
|
|
manager := createTestManager()
|
|
|
|
// Create test instance
|
|
options := &instance.CreateInstanceOptions{
|
|
LlamaServerOptions: llamacpp.LlamaServerOptions{
|
|
Model: "/path/to/model.gguf",
|
|
},
|
|
}
|
|
_, err := manager.CreateInstance("test-instance", options)
|
|
if err != nil {
|
|
t.Fatalf("CreateInstance failed: %v", err)
|
|
}
|
|
|
|
// Shutdown should not panic
|
|
manager.Shutdown()
|
|
|
|
// Multiple shutdowns should not panic
|
|
manager.Shutdown()
|
|
}
|
|
|
|
// Helper function to create a test manager with standard config
|
|
func createTestManager() manager.InstanceManager {
|
|
cfg := config.InstancesConfig{
|
|
PortRange: [2]int{8000, 9000},
|
|
LogsDir: "/tmp/test",
|
|
MaxInstances: 10,
|
|
LlamaExecutable: "llama-server",
|
|
DefaultAutoRestart: true,
|
|
DefaultMaxRestarts: 3,
|
|
DefaultRestartDelay: 5,
|
|
TimeoutCheckInterval: 5,
|
|
}
|
|
return manager.NewInstanceManager(cfg)
|
|
}
|
|
|
|
// Helper for timeout tests
|
|
type MockTimeProvider struct {
|
|
currentTime time.Time
|
|
mu sync.RWMutex
|
|
}
|
|
|
|
func NewMockTimeProvider(t time.Time) *MockTimeProvider {
|
|
return &MockTimeProvider{currentTime: t}
|
|
}
|
|
|
|
func (m *MockTimeProvider) Now() time.Time {
|
|
m.mu.RLock()
|
|
defer m.mu.RUnlock()
|
|
return m.currentTime
|
|
}
|
|
|
|
func (m *MockTimeProvider) SetTime(t time.Time) {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
m.currentTime = t
|
|
}
|