Files
akvorado/cmd/orchestrator_test.go
2025-11-14 23:22:02 +01:00

182 lines
5.1 KiB
Go

// SPDX-FileCopyrightText: 2022 Free Mobile
// SPDX-License-Identifier: AGPL-3.0-only
package cmd
import (
"bytes"
"io"
"os"
"path/filepath"
"reflect"
"strconv"
"strings"
"sync/atomic"
"testing"
"time"
"akvorado/common/daemon"
"akvorado/common/helpers"
"akvorado/common/helpers/yaml"
"akvorado/common/reporter"
)
func TestOrchestratorStart(t *testing.T) {
r := reporter.NewMock(t)
config := OrchestratorConfiguration{}
config.Reset()
if err := orchestratorStart(r, config, daemon.NewMock(t), true); err != nil {
t.Fatalf("orchestratorStart() error:\n%+v", err)
}
}
func TestOrchestratorConfig(t *testing.T) {
tests, err := os.ReadDir("testdata/configurations")
if err != nil {
t.Fatalf("ReadDir(%q) error:\n%+v", "testdata/configurations", err)
}
for _, test := range tests {
if !test.IsDir() {
continue
}
t.Run(test.Name(), func(t *testing.T) {
expected, err := os.ReadFile(
filepath.Join("testdata/configurations", test.Name(), "expected.yaml"))
if err != nil {
t.Fatalf("ReadFile() error:\n%+v", err)
}
var expectedYAML struct {
Paths map[string]any `yaml:"paths"`
}
if err := yaml.Unmarshal(expected, &expectedYAML); err != nil {
t.Fatalf("yaml.Unmarshal(expected) error:\n%+v", err)
}
root := RootCmd
buf := new(bytes.Buffer)
root.SetOut(buf)
root.SetArgs([]string{
"orchestrator", "--dump", "--check",
filepath.Join("testdata/configurations", test.Name(), "in.yaml"),
})
if err := root.Execute(); err != nil {
t.Fatalf("`orchestrator` command error:\n%+v", err)
}
var gotYAML map[string]any
if err := yaml.Unmarshal(buf.Bytes(), &gotYAML); err != nil {
t.Fatalf("yaml.Unmarshal(output) error:\n%+v", err)
}
for path, expected := range expectedYAML.Paths {
var got any
got = gotYAML
i := 0
for component := range strings.SplitSeq(path, ".") {
var ok bool
i++
switch gotConcrete := got.(type) {
case []any:
index, err := strconv.Atoi(component)
if err != nil {
t.Fatalf("key %q at level %d should be an int", path, i)
}
got = gotConcrete[index]
case map[any]any:
got, ok = gotConcrete[component]
if !ok {
t.Fatalf("key %q does not exist in result", path)
}
case map[string]any:
got, ok = gotConcrete[component]
if !ok {
t.Fatalf("key %q does not exist in result", path)
}
default:
t.Fatalf("key %q lead to unexpected type %v at level %d",
path, reflect.TypeOf(got), i)
}
}
if diff := helpers.Diff(got, expected); diff != "" {
t.Fatalf("`orchestrator` --dump, key %q (-got, +want):\n%s", path, diff)
}
}
})
}
}
func TestOrchestrator(t *testing.T) {
root := RootCmd
buf := new(bytes.Buffer)
root.SetOut(buf)
root.SetArgs([]string{"orchestrator", "--check", "/dev/null"})
err := root.Execute()
if err != nil {
t.Errorf("`orchestrator` error:\n%+v", err)
}
}
func TestOrchestratorWatch(t *testing.T) {
tmp := t.TempDir()
if err := os.CopyFS(tmp, os.DirFS("../config")); err != nil {
t.Fatalf("CopyFS() error:\n%+v", err)
}
OrchestratorOptions.Path = filepath.Join(tmp, "akvorado.yaml")
config := OrchestratorConfiguration{}
paths, err := OrchestratorOptions.Parse(io.Discard, "orchestrator", &config)
if err != nil {
t.Fatalf("Parse() error:\n%+v", err)
}
modified := atomic.Bool{}
r := reporter.NewMock(t)
daemonComponent, err := daemon.New(r)
if err != nil {
t.Fatalf("daemon.New() error:\n%+v", err)
}
orchestratorWatch(r, daemonComponent, paths, &modified)
daemonComponent.Start()
// Add a file: no change
if err := os.WriteFile(filepath.Join(tmp, "titi.yaml"), []byte("---\n"), 0o666); err != nil {
t.Fatalf("WriteFile() error:\n%+v", err)
}
time.Sleep(20 * time.Millisecond)
if modified.Load() {
t.Fatal("orchestratorWatch() detected a change that should not be")
}
// Make a configuration error: no change
if err := os.Rename(filepath.Join(tmp, "inlet.yaml"), filepath.Join(tmp, "inlet-old.yaml")); err != nil {
t.Fatalf("Rename() error:\n%+v", err)
}
if err := os.WriteFile(filepath.Join(tmp, "inlet-new.yaml"), []byte("---\nflows: 767643\n"), 0o666); err != nil {
t.Fatalf("WriteFile() error:\n%+v", err)
}
if err := os.Rename(filepath.Join(tmp, "inlet-new.yaml"), filepath.Join(tmp, "inlet.yaml")); err != nil {
t.Fatalf("Rename() error:\n%+v", err)
}
time.Sleep(20 * time.Millisecond)
if modified.Load() {
t.Fatal("orchestratorWatch() detected a change that should be rejected")
}
// Modify a file: change
f, err := os.OpenFile(filepath.Join(tmp, "outlet.yaml"), os.O_APPEND|os.O_WRONLY, 0o644)
if err != nil {
t.Fatalf("OpenFile() error:\n%+v", err)
}
f.WriteString("\n")
f.Close()
if err := os.Rename(filepath.Join(tmp, "inlet-old.yaml"), filepath.Join(tmp, "inlet.yaml")); err != nil {
t.Fatalf("Rename() error:\n%+v", err)
}
// Check there is a restart attempted
select {
case <-daemonComponent.Terminated():
case <-time.After(time.Second):
t.Fatalf("orchestratorWatch() did not restart the service")
}
daemonComponent.Stop()
if !modified.Load() {
t.Fatal("orchestratorWatch() did not register a change")
}
}