2020-10-28 12:35:36 +08:00
|
|
|
package installers
|
|
|
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
2021-06-03 22:08:38 +08:00
|
|
|
func TestDeployManager_LoadNodeFiles(t *testing.T) {
|
|
|
|
|
files := NewDeployManager().LoadNodeFiles()
|
|
|
|
|
for _, file := range files {
|
|
|
|
|
t.Logf("%#v", file)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func TestDeployManager_LoadNSNodeFiles(t *testing.T) {
|
|
|
|
|
files := NewDeployManager().LoadNSNodeFiles()
|
2020-10-28 12:35:36 +08:00
|
|
|
for _, file := range files {
|
|
|
|
|
t.Logf("%#v", file)
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-22 18:42:57 +08:00
|
|
|
|
|
|
|
|
func TestDeployManager_FindNSNodeFile(t *testing.T) {
|
|
|
|
|
file := NewDeployManager().FindNSNodeFile("linux", "amd64")
|
|
|
|
|
t.Log(file)
|
|
|
|
|
|
|
|
|
|
}
|