a06f331eb8
CI / benchmark (push) Has been skipped
install-script / posix-syntax (push) Successful in 6m1s
CI / build-onnx (push) Failing after 6m43s
init-smoke / dry-run (push) Failing after 15m57s
security / govulncheck (push) Has been cancelled
security / trivy-fs (push) Has been cancelled
CI / test (1.26, ubuntu-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
CI / test (1.26, macos-latest) (push) Has been cancelled
CI / build-windows (push) Has been cancelled
CI / lint (push) Has been cancelled
install-script / powershell-syntax (push) Has been cancelled
install-script / install (macos-14) (push) Has been cancelled
install-script / install (ubuntu-latest) (push) Has been cancelled
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
package server
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestLoadOrCreateServerID_GeneratesWhenMissing(t *testing.T) {
|
|
dir := t.TempDir()
|
|
path := filepath.Join(dir, "nested", "server.id")
|
|
|
|
id, err := LoadOrCreateServerID(path)
|
|
require.NoError(t, err)
|
|
_, parseErr := uuid.Parse(id)
|
|
assert.NoError(t, parseErr)
|
|
|
|
// Persisted to disk.
|
|
data, err := os.ReadFile(path)
|
|
require.NoError(t, err)
|
|
assert.Contains(t, string(data), id)
|
|
}
|
|
|
|
func TestLoadOrCreateServerID_ReusesExisting(t *testing.T) {
|
|
dir := t.TempDir()
|
|
path := filepath.Join(dir, "server.id")
|
|
|
|
first, err := LoadOrCreateServerID(path)
|
|
require.NoError(t, err)
|
|
|
|
second, err := LoadOrCreateServerID(path)
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, first, second, "server id should be stable across calls")
|
|
}
|
|
|
|
func TestLoadOrCreateServerID_ReplacesMalformedFile(t *testing.T) {
|
|
dir := t.TempDir()
|
|
path := filepath.Join(dir, "server.id")
|
|
require.NoError(t, os.WriteFile(path, []byte("not a uuid"), 0o600))
|
|
|
|
id, err := LoadOrCreateServerID(path)
|
|
require.NoError(t, err)
|
|
_, parseErr := uuid.Parse(id)
|
|
assert.NoError(t, parseErr)
|
|
}
|