math-optim/algo/algo_test.go
surtur 01a0ed12c4
All checks were successful
continuous-integration/drone/push Build is passing
go(report): aggregate all tex files tracking plots
2022-07-16 22:05:15 +02:00

63 lines
1.2 KiB
Go

// Copyright 2022 wanderer <a_mirre at utb dot cz>
// SPDX-License-Identifier: GPL-3.0-or-later
package algo
import (
"os"
"sync"
"testing"
"git.dotya.ml/wanderer/math-optim/report"
)
var wg sync.WaitGroup
var m sync.Mutex
func TestDoRandomSearchExec(t *testing.T) {
wg.Add(1)
go DoRandomSearch(&wg, &m)
wg.Wait()
picsDir := report.GetPicsDir()
if err := os.RemoveAll(picsDir); err != nil {
t.Error(err)
}
// if `stat` on picsDir succeeds now, something is wrong (namely the
// clean-up apparently did not succeed).
if _, err := os.Stat(picsDir); err == nil {
t.Error("picsDir should have already been cleaned up")
}
}
func TestDoSHCExec(t *testing.T) {
wg.Add(1)
go DoStochasticHillClimbing(&wg, &m)
wg.Wait()
picsDir := report.GetPicsDir()
if err := os.RemoveAll(picsDir); err != nil {
t.Error(err)
}
// if `stat` on picsDir succeeds now, something is wrong (namely the
// clean-up apparently did not succeed).
if _, err := os.Stat(picsDir); err == nil {
t.Error("picsDir should have already been cleaned up")
}
}
func TestNewValues(t *testing.T) {
if v := newValues(); v == nil {
t.Error("failed to get values from newValues()")
}
}