-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpocketic.go
429 lines (369 loc) · 10.7 KB
/
pocketic.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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
package pocketic
import (
"encoding/base64"
"encoding/json"
"fmt"
"net/http"
"time"
"github.com/aviate-labs/agent-go"
"github.com/aviate-labs/agent-go/principal"
)
var (
DefaultSubnetSpec = SubnetSpec{
StateConfig: SubnetStateConfigNew{},
InstructionConfig: SubnetInstructionConfigProduction{},
DTSFlag: false,
}
DefaultSubnetConfig = SubnetConfigSet{
NNS: &DefaultSubnetSpec,
// The JSON API requires an empty array for the Application and System subnets.
Application: make([]SubnetSpec, 0),
System: make([]SubnetSpec, 0),
}
)
type CanisterIDRange struct {
Start principal.Principal
End principal.Principal
}
func (c CanisterIDRange) MarshalJSON() ([]byte, error) {
return json.Marshal(canisterIDRange{
Start: rawCanisterID{CanisterID: base64.StdEncoding.EncodeToString(c.Start.Raw)},
End: rawCanisterID{CanisterID: base64.StdEncoding.EncodeToString(c.End.Raw)},
})
}
func (c *CanisterIDRange) UnmarshalJSON(bytes []byte) error {
var r canisterIDRange
if err := json.Unmarshal(bytes, &r); err != nil {
return err
}
start, err := base64.StdEncoding.DecodeString(r.Start.CanisterID)
if err != nil {
return err
}
c.Start = principal.Principal{Raw: start}
end, err := base64.StdEncoding.DecodeString(r.End.CanisterID)
if err != nil {
return err
}
c.End = principal.Principal{Raw: end}
return nil
}
type Config struct {
subnetConfig SubnetConfigSet
serverConfig []serverOption
client *http.Client
logger agent.Logger
delay, timeout time.Duration
}
type DTSFlag bool
func (f DTSFlag) MarshalJSON() ([]byte, error) {
if f {
return json.Marshal("Enabled")
}
return json.Marshal("Disabled")
}
func (f *DTSFlag) UnmarshalJSON(bytes []byte) error {
var s string
if err := json.Unmarshal(bytes, &s); err != nil {
return err
}
if s != "Enabled" && s != "Disabled" {
return fmt.Errorf("invalid DTS flag: %s", s)
}
*f = s == "Enabled"
return nil
}
type Option func(*Config)
// WithApplicationSubnet adds an empty Application subnet.
func WithApplicationSubnet() Option {
return func(p *Config) {
p.subnetConfig.Application = append(p.subnetConfig.Application, DefaultSubnetSpec)
}
}
// WithBitcoinSubnet adds an empty Bitcoin subnet.
func WithBitcoinSubnet() Option {
return func(p *Config) {
p.subnetConfig.Bitcoin = &DefaultSubnetSpec
}
}
// WithDTSFlag sets the DTS flag for all subnets.
func WithDTSFlag() Option {
return func(p *Config) {
for _, subnet := range p.subnetConfig.Application {
subnet.WithDTSFlag()
}
p.subnetConfig.Bitcoin.WithDTSFlag()
p.subnetConfig.Fiduciary.WithDTSFlag()
p.subnetConfig.II.WithDTSFlag()
p.subnetConfig.NNS.WithDTSFlag()
p.subnetConfig.SNS.WithDTSFlag()
for _, subnet := range p.subnetConfig.System {
subnet.WithDTSFlag()
}
}
}
// WithFiduciarySubnet adds an empty Fiduciary subnet.
func WithFiduciarySubnet() Option {
return func(p *Config) {
p.subnetConfig.Fiduciary = &DefaultSubnetSpec
}
}
// WithHTTPClient sets the HTTP client for the PocketIC client.
func WithHTTPClient(client *http.Client) Option {
return func(p *Config) {
p.client = client
}
}
// WithIISubnet adds an empty Internet Identity subnet.
func WithIISubnet() Option {
return func(p *Config) {
p.subnetConfig.II = &DefaultSubnetSpec
}
}
// WithLogger sets the logger for the PocketIC client.
func WithLogger(logger agent.Logger) Option {
return func(p *Config) {
p.logger = logger
}
}
// WithNNSSubnet adds an empty NNS subnet.
func WithNNSSubnet() Option {
return func(p *Config) {
p.subnetConfig.NNS = &DefaultSubnetSpec
}
}
func WithPollingDelay(delay, timeout time.Duration) Option {
return func(p *Config) {
p.delay = delay
p.timeout = timeout
}
}
// WithSNSSubnet adds an empty SNS subnet.
func WithSNSSubnet() Option {
return func(p *Config) {
p.subnetConfig.SNS = &DefaultSubnetSpec
}
}
// WithSubnetConfigSet sets the subnet configuration.
func WithSubnetConfigSet(subnetConfig SubnetConfigSet) Option {
return func(p *Config) {
p.subnetConfig = subnetConfig
}
}
// WithSystemSubnet adds an empty System subnet.
func WithSystemSubnet() Option {
return func(p *Config) {
p.subnetConfig.System = append(p.subnetConfig.System, DefaultSubnetSpec)
}
}
// WithTTL sets the time-to-live for the PocketIC server, in seconds.
func WithTTL(ttl int) Option {
return func(p *Config) {
p.serverConfig = append(p.serverConfig, withTTL(ttl))
}
}
// PocketIC is a client for the local PocketIC server.
type PocketIC struct {
InstanceID int
httpGateway *HttpGatewayInfo
topology map[string]Topology
logger agent.Logger
client *http.Client
delay, timeout time.Duration
server *server
}
// New creates a new PocketIC client.
// The order of the options is important, some options may override others.
func New(opts ...Option) (*PocketIC, error) {
config := Config{
subnetConfig: DefaultSubnetConfig,
client: http.DefaultClient,
logger: new(agent.NoopLogger),
delay: 10 * time.Millisecond,
timeout: 1 * time.Second,
}
for _, fn := range opts {
fn(&config)
}
s, err := newServer(config.serverConfig...)
if err != nil {
return nil, err
}
// Create a new instance.
req, err := newRequest(http.MethodPost, fmt.Sprintf("%s/instances", s.URL()), config.subnetConfig)
if err != nil {
return nil, fmt.Errorf("failed to create instance: %v", err)
}
resp, err := config.client.Do(req)
if err != nil {
return nil, fmt.Errorf("failed to create instance: %v", err)
}
var respBody createResponse[InstanceConfig]
if respBody.Error != nil {
return nil, respBody.Error
}
if resp.StatusCode != http.StatusCreated {
return nil, fmt.Errorf("failed to create instance: %s", resp.Status)
}
if err := json.NewDecoder(resp.Body).Decode(&respBody); err != nil {
return nil, fmt.Errorf("failed to create instance: %v", err)
}
return &PocketIC{
InstanceID: respBody.Created.InstanceID,
httpGateway: nil,
topology: respBody.Created.Topology,
logger: config.logger,
client: config.client,
delay: config.delay,
timeout: config.timeout,
server: s,
}, nil
}
// InstanceURL returns the URL of the PocketIC instance.
func (pic PocketIC) InstanceURL() string {
return fmt.Sprintf("%s/instances/%d", pic.server.URL(), pic.InstanceID)
}
// Status pings the PocketIC instance.
func (pic PocketIC) Status() error {
return pic.do(
http.MethodGet,
fmt.Sprintf("%s/status", pic.server.URL()),
nil,
nil,
)
}
// Topology returns the topology of the PocketIC instance.
func (pic PocketIC) Topology() map[string]Topology {
return pic.topology
}
// VerifySignature verifies a signature.
func (pic PocketIC) VerifySignature(sig VerifyCanisterSigArg) error {
return pic.do(
http.MethodPost,
fmt.Sprintf("%s/verify_signature", pic.server.URL()),
sig,
nil,
)
}
type SubnetConfigSet struct {
Application []SubnetSpec `json:"application"`
Bitcoin *SubnetSpec `json:"bitcoin,omitempty"`
Fiduciary *SubnetSpec `json:"fiduciary,omitempty"`
II *SubnetSpec `json:"ii,omitempty"`
NNS *SubnetSpec `json:"nns,omitempty"`
SNS *SubnetSpec `json:"sns,omitempty"`
System []SubnetSpec `json:"system"`
}
type SubnetInstructionConfig interface {
instructionConfig()
}
// SubnetInstructionConfigBenchmarking uses very high instruction limits useful for asymptotic canister benchmarking.
type SubnetInstructionConfigBenchmarking struct{}
func (c SubnetInstructionConfigBenchmarking) MarshalJSON() ([]byte, error) {
return json.Marshal("Benchmarking")
}
func (c SubnetInstructionConfigBenchmarking) UnmarshalJSON(bytes []byte) error {
var s string
if err := json.Unmarshal(bytes, &s); err != nil {
return err
}
if s != "Benchmarking" {
return fmt.Errorf("invalid instruction config: %s", s)
}
return nil
}
func (SubnetInstructionConfigBenchmarking) instructionConfig() {}
// SubnetInstructionConfigProduction uses default instruction limits as in production.
type SubnetInstructionConfigProduction struct{}
func (c SubnetInstructionConfigProduction) MarshalJSON() ([]byte, error) {
return json.Marshal("Production")
}
func (c SubnetInstructionConfigProduction) UnmarshalJSON(bytes []byte) error {
var s string
if err := json.Unmarshal(bytes, &s); err != nil {
return err
}
if s != "Production" {
return fmt.Errorf("invalid instruction config: %s", s)
}
return nil
}
func (SubnetInstructionConfigProduction) instructionConfig() {}
type SubnetKind string
var (
ApplicationSubnet SubnetKind = "Application"
BitcoinSubnet SubnetKind = "Bitcoin"
FiduciarySubnet SubnetKind = "Fiduciary"
IISubnet SubnetKind = "II"
NNSSubnet SubnetKind = "NNS"
SNSSubnet SubnetKind = "SNS"
SystemSubnet SubnetKind = "System"
)
// SubnetSpec specifies various configurations for a subnet.
type SubnetSpec struct {
StateConfig SubnetStateConfig `json:"state_config"`
InstructionConfig SubnetInstructionConfig `json:"instruction_config"`
DTSFlag DTSFlag `json:"dts_flag"`
}
// WithDTSFlag sets the DTS flag, returns if the SubnetSpec is nil.
// Safe to call on a nil SubnetSpec.
func (s *SubnetSpec) WithDTSFlag() {
if s == nil {
return
}
s.DTSFlag = true
}
type SubnetStateConfig interface {
stateConfig()
}
// SubnetStateConfigFromPath load existing subnet state from the given path. The path must be on a filesystem
// accessible to the server process.
type SubnetStateConfigFromPath struct {
Path string
SubnetID SubnetID
}
func (c SubnetStateConfigFromPath) MarshalJSON() ([]byte, error) {
return json.Marshal([]any{c.Path, c.SubnetID})
}
func (c SubnetStateConfigFromPath) UnmarshalJSON(bytes []byte) error {
var v []json.RawMessage
if err := json.Unmarshal(bytes, &v); err != nil {
return err
}
if len(v) != 2 {
return fmt.Errorf("invalid state config: %v", v)
}
if err := json.Unmarshal(v[0], &c.Path); err != nil {
return err
}
return json.Unmarshal(v[1], &c.SubnetID)
}
func (SubnetStateConfigFromPath) stateConfig() {}
// SubnetStateConfigNew creates new subnet with empty state.
type SubnetStateConfigNew struct{}
func (c SubnetStateConfigNew) MarshalJSON() ([]byte, error) {
return json.Marshal("New")
}
func (c SubnetStateConfigNew) UnmarshalJSON(bytes []byte) error {
var s string
if err := json.Unmarshal(bytes, &s); err != nil {
return err
}
if s != "New" {
return fmt.Errorf("invalid state config: %s", s)
}
return nil
}
func (SubnetStateConfigNew) stateConfig() {}
type Topology struct {
SubnetKind SubnetKind `json:"subnet_kind"`
Size int `json:"size"`
CanisterRanges []CanisterIDRange `json:"canister_ranges"`
}
type canisterIDRange struct {
Start rawCanisterID `json:"start"`
End rawCanisterID `json:"end"`
}
type rawCanisterID struct {
CanisterID string `json:"canister_id"`
}