freifunkmanager/ssh/manager_test.go

23 lines
432 B
Go
Raw Normal View History

2017-05-06 14:37:24 +02:00
package ssh
import (
"net"
"testing"
2018-07-24 15:07:11 +02:00
"time"
2017-05-06 14:37:24 +02:00
"github.com/stretchr/testify/assert"
)
func TestManager(t *testing.T) {
assert := assert.New(t)
2018-08-10 13:46:18 +02:00
mgmt := NewManager("~/.ssh/id_rsa", 5*time.Second)
2017-05-06 14:37:24 +02:00
assert.NotNil(mgmt, "no new manager created")
2018-07-15 21:04:17 +02:00
client, _ := mgmt.ConnectTo(net.TCPAddr{IP: net.ParseIP("fd2f:5119:f2c::127"), Port: 22})
2018-08-10 13:46:18 +02:00
assert.NotNil(client, "no connection to client")
if client == nil {
client.Close()
}
2017-05-06 14:37:24 +02:00
}