-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtorcontroller_test.go
60 lines (48 loc) · 1.04 KB
/
torcontroller_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package torcontroller
import (
// "fmt"
"testing"
// "io/ioutils"
)
const (
addr = "127.0.0.1:9051"
// plain password MUST BE put in double quotes
password = "\"DrAwatRubexA3e=\""
// or, you can encode it in hexadicimal
passwordHex = "44724177617452756265784133653d"
)
func setupClient(t *testing.T) *Client {
c, err := NewClient(addr)
if err != nil {
t.Fatal(err)
}
return c
}
func TestAuthenticate(t *testing.T) {
c := setupClient(t)
defer c.Close()
err := c.Authenticate("A bad password")
if err == nil {
t.Fatal("Error, expected error code 515, got", 250)
}
c.ReConnect() // Bad authentificate causes the server to close de socket
err = c.Authenticate(passwordHex)
if err != nil {
t.Fatal(err)
}
err = c.Authenticate(password)
if err != nil {
t.Fatal(err)
}
}
func TestNewClient(t *testing.T) {
c, err := NewClient(addr)
cSec, errSec := NewClient("4242:4242")
if err != nil {
t.Fatal(err)
} else if errSec == nil {
cSec.Close()
t.Fatal("Error must be, but is not returned by NewClient")
}
c.Close()
}