Semaphore/api/projects/inventory_test.go

29 lines
628 B
Go
Raw Normal View History

package projects
import (
"testing"
)
func TestIsValidInventoryPath(t *testing.T) {
if !IsValidInventoryPath("inventories/test") {
t.Fatal(" a path below the cwd should be valid")
}
if !IsValidInventoryPath("inventories/test/../prod") {
t.Fatal(" a path below the cwd should be valid")
}
if IsValidInventoryPath("/test/../../../inventory") {
t.Fatal(" a path out of the cwd should be invalid")
}
if IsValidInventoryPath("/test/inventory") {
t.Fatal(" a path out of the cwd should be invalid")
}
if IsValidInventoryPath("c:\\test\\inventory") {
t.Fatal(" a path out of the cwd should be invalid")
}
}