- Implemented Settings page for changing user passwords with validation and feedback. - Created Setup page for initial admin account setup with form handling and navigation. - Added API service layer for handling requests related to proxy hosts, remote servers, and import functionality. - Introduced mock data for testing purposes and set up testing framework with vitest. - Configured Tailwind CSS for styling and Vite for development and build processes. - Added scripts for Dockerfile validation, Python syntax checking, and Sourcery integration. - Implemented release and coverage scripts for better CI/CD practices.
96 lines
2.3 KiB
Go
96 lines
2.3 KiB
Go
package caddy
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/Wikid82/CaddyProxyManagerPlus/backend/internal/models"
|
|
)
|
|
|
|
func TestClient_Load_Success(t *testing.T) {
|
|
// Mock Caddy admin API
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
require.Equal(t, "/load", r.URL.Path)
|
|
require.Equal(t, http.MethodPost, r.Method)
|
|
w.WriteHeader(http.StatusOK)
|
|
}))
|
|
defer server.Close()
|
|
|
|
client := NewClient(server.URL)
|
|
config, _ := GenerateConfig([]models.ProxyHost{
|
|
{
|
|
UUID: "test",
|
|
DomainNames: "test.com",
|
|
ForwardHost: "app",
|
|
ForwardPort: 8080,
|
|
Enabled: true,
|
|
},
|
|
}, "/tmp/caddy-data", "admin@example.com")
|
|
|
|
err := client.Load(context.Background(), config)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestClient_Load_Failure(t *testing.T) {
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
w.Write([]byte(`{"error": "invalid config"}`))
|
|
}))
|
|
defer server.Close()
|
|
|
|
client := NewClient(server.URL)
|
|
config := &Config{}
|
|
|
|
err := client.Load(context.Background(), config)
|
|
require.Error(t, err)
|
|
require.Contains(t, err.Error(), "400")
|
|
}
|
|
|
|
func TestClient_GetConfig_Success(t *testing.T) {
|
|
testConfig := &Config{
|
|
Apps: Apps{
|
|
HTTP: &HTTPApp{
|
|
Servers: map[string]*Server{
|
|
"test": {Listen: []string{":80"}},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
require.Equal(t, "/config/", r.URL.Path)
|
|
require.Equal(t, http.MethodGet, r.Method)
|
|
w.WriteHeader(http.StatusOK)
|
|
json.NewEncoder(w).Encode(testConfig)
|
|
}))
|
|
defer server.Close()
|
|
|
|
client := NewClient(server.URL)
|
|
config, err := client.GetConfig(context.Background())
|
|
require.NoError(t, err)
|
|
require.NotNil(t, config)
|
|
require.NotNil(t, config.Apps.HTTP)
|
|
}
|
|
|
|
func TestClient_Ping_Success(t *testing.T) {
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
}))
|
|
defer server.Close()
|
|
|
|
client := NewClient(server.URL)
|
|
err := client.Ping(context.Background())
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestClient_Ping_Unreachable(t *testing.T) {
|
|
client := NewClient("http://localhost:9999")
|
|
err := client.Ping(context.Background())
|
|
require.Error(t, err)
|
|
}
|