24 lines
485 B
Go
24 lines
485 B
Go
|
package ssh
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestExecute(t *testing.T) {
|
||
|
assert := assert.New(t)
|
||
|
|
||
|
mgmt := NewManager("~/.ssh/id_rsa")
|
||
|
assert.NotNil(mgmt, "no new manager created")
|
||
|
|
||
|
mgmt.ConnectTo(net.ParseIP("2a06:8782:ffbb:1337::127"))
|
||
|
|
||
|
mgmt.ExecuteEverywhere("echo $HOSTNAME")
|
||
|
mgmt.ExecuteOn(net.ParseIP("2a06:8782:ffbb:1337::127"), "uptime")
|
||
|
mgmt.ExecuteOn(net.ParseIP("2a06:8782:ffbb:1337::127"), "echo $HOSTNAME")
|
||
|
|
||
|
mgmt.Close()
|
||
|
}
|