-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathtesting_test.go
178 lines (142 loc) · 3.99 KB
/
testing_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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
//go:build !js
package tests
import (
"context"
"crypto/rand"
"encoding/base64"
"io/ioutil"
"os"
"testing"
"github.com/libp2p/go-libp2p/core/crypto"
"github.com/libp2p/go-libp2p/core/peer"
ds "github.com/ipfs/go-datastore"
dsync "github.com/ipfs/go-datastore/sync"
iface "github.com/ipfs/interface-go-ipfs-core"
cfg "github.com/ipfs/kubo/config"
ipfsCore "github.com/ipfs/kubo/core"
"github.com/ipfs/kubo/core/coreapi"
mock "github.com/ipfs/kubo/core/mock"
"github.com/ipfs/kubo/repo"
mocknet "github.com/libp2p/go-libp2p/p2p/net/mock"
"github.com/stretchr/testify/require"
)
func testingRepo(ctx context.Context, t *testing.T) repo.Repo {
t.Helper()
c := cfg.Config{}
priv, pub, err := crypto.GenerateKeyPairWithReader(crypto.RSA, 2048, rand.Reader)
require.NoError(t, err)
pid, err := peer.IDFromPublicKey(pub)
require.NoError(t, err)
privkeyb, err := crypto.MarshalPrivateKey(priv)
require.NoError(t, err)
c.Pubsub.Enabled = cfg.True
c.Bootstrap = []string{}
c.Addresses.Swarm = []string{"/ip4/127.0.0.1/tcp/4001", "/ip4/127.0.0.1/udp/4001/quic"}
c.Identity.PeerID = pid.Pretty()
c.Identity.PrivKey = base64.StdEncoding.EncodeToString(privkeyb)
c.Swarm.ResourceMgr.Enabled = cfg.False // we don't need ressources manager for test
return &repo.Mock{
D: dsync.MutexWrap(ds.NewMapDatastore()),
C: c,
}
}
func testingIPFSAPIs(ctx context.Context, t *testing.T, count int) ([]iface.CoreAPI, func()) {
t.Helper()
mn := testingMockNet(t)
defer mn.Close()
coreAPIs := make([]iface.CoreAPI, count)
cleans := make([]func(), count)
for i := 0; i < count; i++ {
node := (*ipfsCore.IpfsNode)(nil)
node, cleans[i] = testingIPFSNode(ctx, t, mn)
coreAPIs[i] = testingCoreAPI(t, node)
}
return coreAPIs, func() {
for i := 0; i < count; i++ {
cleans[i]()
}
}
}
func testingIPFSAPIsNonMocked(ctx context.Context, t *testing.T, count int) ([]iface.CoreAPI, func()) {
t.Helper()
coreAPIs := make([]iface.CoreAPI, count)
cleans := make([]func(), count)
for i := 0; i < count; i++ {
core, err := ipfsCore.NewNode(ctx, &ipfsCore.BuildCfg{
Online: true,
Repo: testingRepo(ctx, t),
ExtraOpts: map[string]bool{
"pubsub": true,
},
})
require.NoError(t, err)
coreAPIs[i] = testingCoreAPI(t, core)
cleans[i] = func() {
core.Close()
}
}
return coreAPIs, func() {
for i := 0; i < count; i++ {
cleans[i]()
}
}
}
func testingIPFSNodeWithoutPubsub(ctx context.Context, t *testing.T, m mocknet.Mocknet) (*ipfsCore.IpfsNode, func()) {
t.Helper()
core, err := ipfsCore.NewNode(ctx, &ipfsCore.BuildCfg{
Online: true,
Repo: testingRepo(ctx, t),
Host: mock.MockHostOption(m),
ExtraOpts: map[string]bool{
"pubsub": false,
},
})
require.NoError(t, err)
cleanup := func() { core.Close() }
return core, cleanup
}
func testingIPFSNode(ctx context.Context, t *testing.T, m mocknet.Mocknet) (*ipfsCore.IpfsNode, func()) {
t.Helper()
core, err := ipfsCore.NewNode(ctx, &ipfsCore.BuildCfg{
Online: true,
Repo: testingRepo(ctx, t),
Host: mock.MockHostOption(m),
ExtraOpts: map[string]bool{
"pubsub": true,
},
})
require.NoError(t, err)
cleanup := func() { core.Close() }
return core, cleanup
}
func testingNonMockedIPFSNode(ctx context.Context, t *testing.T) (*ipfsCore.IpfsNode, func()) {
t.Helper()
core, err := ipfsCore.NewNode(ctx, &ipfsCore.BuildCfg{
Online: true,
Repo: testingRepo(ctx, t),
ExtraOpts: map[string]bool{
"pubsub": true,
},
})
require.NoError(t, err)
cleanup := func() { core.Close() }
return core, cleanup
}
func testingCoreAPI(t *testing.T, core *ipfsCore.IpfsNode) iface.CoreAPI {
t.Helper()
api, err := coreapi.NewCoreAPI(core)
require.NoError(t, err)
return api
}
func testingMockNet(t *testing.T) mocknet.Mocknet {
mn := mocknet.New()
t.Cleanup(func() { mn.Close() })
return mn
}
func testingTempDir(t *testing.T, name string) (string, func()) {
t.Helper()
path, err := ioutil.TempDir("", name)
require.NoError(t, err)
cleanup := func() { os.RemoveAll(path) }
return path, cleanup
}