math-optim/algo/util_test.go

44 lines
974 B
Go
Raw Normal View History

2022-06-28 23:40:35 +02:00
// Copyright 2022 wanderer <a_mirre at utb dot cz>
// SPDX-License-Identifier: GPL-3.0-or-later
package algo
import (
"os"
"testing"
)
// nolint: ifshort
func TestCreateFolder(t *testing.T) {
// let's assume this will never exist in a clean project...
testPath := "whatever-path"
got := createFolder(testPath)
var want error
if want != got {
t.Errorf("issue creating folder, testPath: %q, full cmd: %q", testPath, got.Error())
2022-06-28 23:40:35 +02:00
}
os.RemoveAll(testPath)
}
2022-06-29 16:54:55 +02:00
// nolint: ifshort
func TestCreatePath(t *testing.T) {
// let's assume this, too, will never exist in a clean project...
testPathRoot := "whatever-path"
testPath := testPathRoot + "/whatever-subpath/subsubpath"
2022-06-29 16:54:55 +02:00
got := createPath(testPath)
var want error
if want != got {
t.Errorf("issue creating folders in path, testPath: %q, full cmd: %q", testPath, got.Error())
}
// clean up from the root.
if err := os.RemoveAll(testPathRoot); err != nil {
t.Error("error cleaning up: ", err)
}
2022-06-29 16:54:55 +02:00
}