25 lines
517 B
Go
25 lines
517 B
Go
package executor
|
|
|
|
import "testing"
|
|
|
|
var agentOP = AgentOsOperator{
|
|
InstallCommandPrefix: []string{
|
|
"apt-get", "install", "-y",
|
|
},
|
|
RemoveCommandPrefix: []string{"/usr/bin/apt", "remove", "-y"},
|
|
CanAccessInternet: true,
|
|
IsOsTypeUbuntu: true,
|
|
IsAgentInnerWall: true,
|
|
}
|
|
|
|
func TestBaseFunc(t *testing.T) {
|
|
|
|
//agentOP.Exec("shutdownFirewall")
|
|
//agentOP.Exec("modifyHostname")
|
|
//agentOP.Exec("disableSwap")
|
|
//agentOP.Exec("enableSwap")
|
|
//agentOP.Exec("removeDocker")
|
|
agentOP.Exec("installDocker")
|
|
|
|
}
|