-
Notifications
You must be signed in to change notification settings - Fork 6
/
announce_test.go
68 lines (60 loc) · 1.73 KB
/
announce_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
61
62
63
64
65
66
67
68
// Copyright (c) 2017-2021 Ivan Jelincic <[email protected]>
//
// This file is part of tordam
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package tordam
import (
"context"
"crypto/ed25519"
"crypto/rand"
"encoding/base64"
"os"
"testing"
)
func TestAnnounce(t *testing.T) {
pk, sk, err := ed25519.GenerateKey(rand.Reader)
if err != nil {
t.Fatal(err)
}
Cfg.Datadir = os.TempDir()
LogInit(os.Stdout)
vals := []string{
"p7qaewjgnvnaeihhyybmoofd5avh665kr3awoxlh5rt6ox743kjdr6qd.onion:666",
base64.StdEncoding.EncodeToString(pk),
"12345:54321,666:3521",
}
ret, err := Ann.Init(Ann{}, context.Background(), vals)
if err != nil {
t.Fatal(err)
}
for _, i := range ret {
if _, err := base64.StdEncoding.DecodeString(i); err != nil {
t.Fatal(err)
}
}
vals = []string{
"p7qaewjgnvnaeihhyybmoofd5avh665kr3awoxlh5rt6ox743kjdr6qd.onion:666",
base64.StdEncoding.EncodeToString(ed25519.Sign(sk, []byte(ret[0]))),
}
ret, err = Ann.Validate(Ann{}, context.Background(), vals)
if err != nil {
t.Fatal(err)
}
for _, i := range ret {
if err := ValidateOnionInternal(i); err != nil {
t.Fatal(err)
}
}
}