-
Notifications
You must be signed in to change notification settings - Fork 211
/
poet_test.go
274 lines (230 loc) · 6.54 KB
/
poet_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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
package activation_test
import (
"bytes"
"context"
"crypto/ed25519"
"errors"
"net/url"
"testing"
"time"
"github.com/spacemeshos/poet/registration"
"github.com/spacemeshos/poet/server"
"github.com/spacemeshos/poet/shared"
"github.com/stretchr/testify/require"
"go.uber.org/zap"
"go.uber.org/zap/zaptest"
"golang.org/x/sync/errgroup"
"github.com/spacemeshos/go-spacemesh/activation"
"github.com/spacemeshos/go-spacemesh/common/types"
"github.com/spacemeshos/go-spacemesh/signing"
"github.com/spacemeshos/go-spacemesh/sql/localsql/certifier"
)
// HTTPPoetTestHarness utilizes a local self-contained poet server instance
// targeted by an HTTP client. It is intended to be used in tests only.
type HTTPPoetTestHarness struct {
Service *server.Server
}
func (h *HTTPPoetTestHarness) RestURL() *url.URL {
return &url.URL{
Scheme: "http",
Host: h.Service.GrpcRestProxyAddr().String(),
}
}
func (h *HTTPPoetTestHarness) Client(
db *activation.PoetDb,
cfg activation.PoetConfig,
logger *zap.Logger,
opts ...activation.PoetServiceOpt,
) (activation.PoetService, error) {
return activation.NewPoetService(
db,
h.ServerCfg(),
cfg,
logger,
1,
opts...,
)
}
func (h *HTTPPoetTestHarness) ServerCfg() types.PoetServer {
return types.PoetServer{Pubkey: types.NewBase64Enc(h.Service.PublicKey()), Address: h.RestURL().String()}
}
type HTTPPoetOpt func(*server.Config)
func WithGenesis(genesis time.Time) HTTPPoetOpt {
return func(cfg *server.Config) {
cfg.Genesis = server.Genesis(genesis)
}
}
func WithEpochDuration(epoch time.Duration) HTTPPoetOpt {
return func(cfg *server.Config) {
cfg.Round.EpochDuration = epoch
}
}
func WithPhaseShift(phase time.Duration) HTTPPoetOpt {
return func(cfg *server.Config) {
cfg.Round.PhaseShift = phase
}
}
func WithCycleGap(gap time.Duration) HTTPPoetOpt {
return func(cfg *server.Config) {
cfg.Round.CycleGap = gap
}
}
func WithCertifier(certifier *registration.CertifierConfig) HTTPPoetOpt {
return func(cfg *server.Config) {
cfg.Registration.Certifier = certifier
}
}
func WithTrustedKeysDirPath(path string) HTTPPoetOpt {
return func(cfg *server.Config) {
cfg.Registration.Certifier.TrustedKeysDirPath = path
}
}
// NewHTTPPoetTestHarness returns a new instance of HTTPPoetHarness.
func NewHTTPPoetTestHarness(ctx context.Context, poetDir string, opts ...HTTPPoetOpt) (*HTTPPoetTestHarness, error) {
cfg := server.DefaultConfig()
cfg.PoetDir = poetDir
cfg.RawRESTListener = "localhost:0"
cfg.RawRPCListener = "localhost:0"
cfg.ConfigRPCListener = "localhost:0"
for _, opt := range opts {
opt(cfg)
}
server.SetupConfig(cfg)
poet, err := server.New(ctx, *cfg)
if err != nil {
return nil, err
}
return &HTTPPoetTestHarness{
Service: poet,
}, nil
}
func TestHTTPPoet(t *testing.T) {
t.Parallel()
r := require.New(t)
var eg errgroup.Group
poetDir := t.TempDir()
t.Cleanup(func() { r.NoError(eg.Wait()) })
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
certPubKey, certPrivKey, err := ed25519.GenerateKey(nil)
r.NoError(err)
c, err := NewHTTPPoetTestHarness(ctx, poetDir, WithCertifier(®istration.CertifierConfig{
PubKey: registration.Base64Enc(certPubKey),
}))
r.NoError(err)
r.NotNil(c)
eg.Go(func() error {
err := c.Service.Start(ctx)
return errors.Join(err, c.Service.Close())
})
client, err := activation.NewHTTPPoetClient(
types.PoetServer{Address: c.RestURL().String()},
activation.DefaultPoetConfig(),
activation.WithLogger(zaptest.NewLogger(t)),
)
require.NoError(t, err)
signer, err := signing.NewEdSigner(signing.WithPrefix([]byte("prefix")))
require.NoError(t, err)
ch := types.RandomHash()
signature := signer.Sign(signing.POET, ch.Bytes())
prefix := bytes.Join([][]byte{signer.Prefix(), {byte(signing.POET)}}, nil)
t.Run("submit with cert", func(t *testing.T) {
cert := shared.Cert{Pubkey: signer.NodeID().Bytes()}
encoded, err := shared.EncodeCert(&cert)
require.NoError(t, err)
poetRound, err := client.Submit(
context.Background(),
time.Time{},
prefix,
ch.Bytes(),
signature,
signer.NodeID(),
activation.PoetAuth{
PoetCert: &certifier.PoetCert{
Data: encoded,
Signature: ed25519.Sign(certPrivKey, encoded),
},
},
)
require.NoError(t, err)
require.NotNil(t, poetRound)
})
t.Run("return proper error code on rejected cert", func(t *testing.T) {
_, err := client.Submit(
context.Background(),
time.Time{},
prefix,
ch.Bytes(),
signature,
signer.NodeID(),
activation.PoetAuth{PoetCert: &certifier.PoetCert{Data: []byte("oops")}},
)
require.ErrorIs(t, err, activation.ErrUnauthorized)
})
}
func TestSubmitTooLate(t *testing.T) {
t.Parallel()
r := require.New(t)
var eg errgroup.Group
poetDir := t.TempDir()
t.Cleanup(func() { r.NoError(eg.Wait()) })
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
c, err := NewHTTPPoetTestHarness(ctx, poetDir)
r.NoError(err)
r.NotNil(c)
eg.Go(func() error {
err := c.Service.Start(ctx)
return errors.Join(err, c.Service.Close())
})
client, err := activation.NewHTTPPoetClient(
types.PoetServer{Address: c.RestURL().String()},
activation.DefaultPoetConfig(),
activation.WithLogger(zaptest.NewLogger(t)),
)
require.NoError(t, err)
signer, err := signing.NewEdSigner(signing.WithPrefix([]byte("prefix")))
require.NoError(t, err)
ch := types.RandomHash()
signature := signer.Sign(signing.POET, ch.Bytes())
prefix := bytes.Join([][]byte{signer.Prefix(), {byte(signing.POET)}}, nil)
_, err = client.Submit(
context.Background(),
time.Now(),
prefix,
ch.Bytes(),
signature,
signer.NodeID(),
activation.PoetAuth{},
)
r.ErrorIs(err, activation.ErrInvalidRequest)
}
func TestInfoWithCertifierInfo(t *testing.T) {
t.Parallel()
r := require.New(t)
var eg errgroup.Group
poetDir := t.TempDir()
t.Cleanup(func() { r.NoError(eg.Wait()) })
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
c, err := NewHTTPPoetTestHarness(ctx, poetDir, WithCertifier(®istration.CertifierConfig{
URL: "http://localhost:8080",
PubKey: []byte("pubkey"),
}))
r.NoError(err)
r.NotNil(c)
eg.Go(func() error {
err := c.Service.Start(ctx)
return errors.Join(err, c.Service.Close())
})
client, err := activation.NewHTTPPoetClient(
types.PoetServer{Address: c.RestURL().String()},
activation.DefaultPoetConfig(),
activation.WithLogger(zaptest.NewLogger(t)),
)
require.NoError(t, err)
info, err := client.Info(context.Background())
r.NoError(err)
r.Equal("http://localhost:8080", info.Certifier.Url.String())
r.Equal([]byte("pubkey"), info.Certifier.Pubkey)
}