-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathimport_test.go
501 lines (398 loc) Β· 12.3 KB
/
import_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
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
/*
* Cadence - The resource-oriented smart contract programming language
*
* Copyright Flow Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package tests
import (
"fmt"
"testing"
"time"
"github.com/stretchr/testify/require"
"github.com/onflow/cadence"
"github.com/onflow/cadence/common"
"github.com/onflow/cadence/encoding/json"
. "github.com/onflow/cadence/runtime"
"github.com/onflow/cadence/sema"
"github.com/onflow/cadence/tests/checker"
. "github.com/onflow/cadence/tests/runtime_utils"
. "github.com/onflow/cadence/tests/utils"
)
func TestRuntimeCyclicImport(t *testing.T) {
t.Parallel()
runtime := NewTestInterpreterRuntime()
imported1 := []byte(`
import p2
`)
imported2 := []byte(`
import p1
`)
script := []byte(`
import p1
access(all) fun main() {}
`)
var checkCount int
runtimeInterface := &TestRuntimeInterface{
OnGetCode: func(location Location) (bytes []byte, err error) {
switch location {
case common.IdentifierLocation("p1"):
return imported1, nil
case common.IdentifierLocation("p2"):
return imported2, nil
default:
return nil, fmt.Errorf("unknown import location: %s", location)
}
},
OnProgramChecked: func(location Location, duration time.Duration) {
checkCount += 1
},
}
_, err := runtime.ExecuteScript(
Script{
Source: script,
},
Context{
Interface: runtimeInterface,
Location: common.ScriptLocation{},
},
)
RequireError(t, err)
require.Contains(t, err.Error(), "cyclic import of `p1`")
// Script
var checkerErr *sema.CheckerError
require.ErrorAs(t, err, &checkerErr)
errs := checker.RequireCheckerErrors(t, checkerErr, 1)
var importedProgramErr *sema.ImportedProgramError
require.ErrorAs(t, errs[0], &importedProgramErr)
// P1
var checkerErr2 *sema.CheckerError
require.ErrorAs(t, importedProgramErr.Err, &checkerErr2)
errs = checker.RequireCheckerErrors(t, checkerErr2, 1)
var importedProgramErr2 *sema.ImportedProgramError
require.ErrorAs(t, errs[0], &importedProgramErr2)
// P2
var checkerErr3 *sema.CheckerError
require.ErrorAs(t, importedProgramErr2.Err, &checkerErr3)
errs = checker.RequireCheckerErrors(t, checkerErr3, 1)
require.IsType(t, &sema.CyclicImportsError{}, errs[0])
}
func TestRuntimeCheckCyclicImportsAfterUpdate(t *testing.T) {
runtime := NewTestInterpreterRuntime()
contractsAddress := common.MustBytesToAddress([]byte{0x1})
accountCodes := map[Location][]byte{}
signerAccount := contractsAddress
runtimeInterface := &TestRuntimeInterface{
OnGetCode: func(location Location) ([]byte, error) {
return accountCodes[location], nil
},
Storage: NewTestLedger(nil, nil),
OnGetSigningAccounts: func() ([]Address, error) {
return []Address{signerAccount}, nil
},
OnResolveLocation: NewSingleIdentifierLocationResolver(t),
OnGetAccountContractCode: func(location common.AddressLocation) ([]byte, error) {
return accountCodes[location], nil
},
OnUpdateAccountContractCode: func(location common.AddressLocation, code []byte) error {
accountCodes[location] = code
return nil
},
OnEmitEvent: func(event cadence.Event) error {
return nil
},
OnDecodeArgument: func(b []byte, t cadence.Type) (value cadence.Value, err error) {
return json.Decode(nil, b)
},
}
environment := NewBaseInterpreterEnvironment(Config{})
nextTransactionLocation := NewTransactionLocationGenerator()
deploy := func(name string, contract string, update bool) error {
var txSource = DeploymentTransaction
if update {
txSource = UpdateTransaction
}
return runtime.ExecuteTransaction(
Script{
Source: txSource(
name,
[]byte(contract),
),
},
Context{
Interface: runtimeInterface,
Location: nextTransactionLocation(),
Environment: environment,
},
)
}
const fooContract = `
access(all) contract Foo {}
`
const barContract = `
import Foo from 0x0000000000000001
access(all) contract Bar {}
`
const updatedFooContract = `
import Bar from 0x0000000000000001
access(all) contract Foo {}
`
err := deploy("Foo", fooContract, false)
require.NoError(t, err)
err = deploy("Bar", barContract, false)
require.NoError(t, err)
// Update `Foo` contract creating a cycle.
err = deploy("Foo", updatedFooContract, true)
var checkerErr *sema.CheckerError
require.ErrorAs(t, err, &checkerErr)
errs := checker.RequireCheckerErrors(t, checkerErr, 1)
var importedProgramErr *sema.ImportedProgramError
require.ErrorAs(t, errs[0], &importedProgramErr)
var nestedCheckerErr *sema.CheckerError
require.ErrorAs(t, importedProgramErr.Err, &nestedCheckerErr)
errs = checker.RequireCheckerErrors(t, nestedCheckerErr, 1)
require.IsType(t, &sema.CyclicImportsError{}, errs[0])
}
func TestRuntimeCheckCyclicImportAddress(t *testing.T) {
runtime := NewTestInterpreterRuntime()
contractsAddress := common.MustBytesToAddress([]byte{0x1})
accountCodes := map[Location][]byte{}
signerAccount := contractsAddress
runtimeInterface := &TestRuntimeInterface{
OnGetCode: func(location Location) ([]byte, error) {
return accountCodes[location], nil
},
Storage: NewTestLedger(nil, nil),
OnGetSigningAccounts: func() ([]Address, error) {
return []Address{signerAccount}, nil
},
OnResolveLocation: func(identifiers []Identifier, location Location) ([]ResolvedLocation, error) {
if len(identifiers) == 0 {
require.IsType(t, common.AddressLocation{}, location)
addressLocation := location.(common.AddressLocation)
require.Equal(t, contractsAddress, addressLocation.Address)
// `Foo` and `Bar` are already deployed at the address.
identifiers = append(
identifiers,
Identifier{
Identifier: "Foo",
},
Identifier{
Identifier: "Bar",
},
)
}
return MultipleIdentifierLocationResolver(identifiers, location)
},
OnGetAccountContractCode: func(location common.AddressLocation) ([]byte, error) {
return accountCodes[location], nil
},
OnUpdateAccountContractCode: func(location common.AddressLocation, code []byte) error {
accountCodes[location] = code
return nil
},
OnEmitEvent: func(event cadence.Event) error {
return nil
},
OnDecodeArgument: func(b []byte, t cadence.Type) (value cadence.Value, err error) {
return json.Decode(nil, b)
},
}
environment := NewBaseInterpreterEnvironment(Config{})
nextTransactionLocation := NewTransactionLocationGenerator()
deploy := func(name string, contract string, update bool) error {
var txSource = DeploymentTransaction
if update {
txSource = UpdateTransaction
}
return runtime.ExecuteTransaction(
Script{
Source: txSource(
name,
[]byte(contract),
),
},
Context{
Interface: runtimeInterface,
Location: nextTransactionLocation(),
Environment: environment,
},
)
}
const fooContract = `
access(all) contract Foo {}
`
const barContract = `
import Foo from 0x0000000000000001
access(all) contract Bar {}
`
const updatedFooContract = `
import 0x0000000000000001
access(all) contract Foo {}
`
err := deploy("Foo", fooContract, false)
require.NoError(t, err)
err = deploy("Bar", barContract, false)
require.NoError(t, err)
// Update `Foo` contract creating a cycle.
err = deploy("Foo", updatedFooContract, true)
var checkerErr *sema.CheckerError
require.ErrorAs(t, err, &checkerErr)
errs := checker.RequireCheckerErrors(t, checkerErr, 1)
// Direct cycle, by importing `Foo` in `Foo`
require.IsType(t, &sema.CyclicImportsError{}, errs[0])
}
func TestRuntimeCheckCyclicImportToSelfDuringDeploy(t *testing.T) {
runtime := NewTestInterpreterRuntime()
contractsAddress := common.MustBytesToAddress([]byte{0x1})
accountCodes := map[Location][]byte{}
signerAccount := contractsAddress
runtimeInterface := &TestRuntimeInterface{
OnGetCode: func(location Location) ([]byte, error) {
return accountCodes[location], nil
},
Storage: NewTestLedger(nil, nil),
OnGetSigningAccounts: func() ([]Address, error) {
return []Address{signerAccount}, nil
},
OnResolveLocation: func(identifiers []Identifier, location Location) ([]ResolvedLocation, error) {
if len(identifiers) == 0 {
require.IsType(t, common.AddressLocation{}, location)
addressLocation := location.(common.AddressLocation)
require.Equal(t, contractsAddress, addressLocation.Address)
}
// There are no contracts in the account, so the identifiers are empty.
return MultipleIdentifierLocationResolver(identifiers, location)
},
OnGetAccountContractCode: func(location common.AddressLocation) ([]byte, error) {
return accountCodes[location], nil
},
OnUpdateAccountContractCode: func(location common.AddressLocation, code []byte) error {
accountCodes[location] = code
return nil
},
OnEmitEvent: func(event cadence.Event) error {
return nil
},
OnDecodeArgument: func(b []byte, t cadence.Type) (value cadence.Value, err error) {
return json.Decode(nil, b)
},
}
environment := NewBaseInterpreterEnvironment(Config{})
nextTransactionLocation := NewTransactionLocationGenerator()
deploy := func(name string, contract string, update bool) error {
var txSource = DeploymentTransaction
if update {
txSource = UpdateTransaction
}
return runtime.ExecuteTransaction(
Script{
Source: txSource(
name,
[]byte(contract),
),
},
Context{
Interface: runtimeInterface,
Location: nextTransactionLocation(),
Environment: environment,
},
)
}
const fooContract = `
import 0x0000000000000001
access(all) contract Foo {}
`
err := deploy("Foo", fooContract, false)
var checkerErr *sema.CheckerError
require.ErrorAs(t, err, &checkerErr)
errs := checker.RequireCheckerErrors(t, checkerErr, 1)
require.IsType(t, &sema.CyclicImportsError{}, errs[0])
}
func TestRuntimeContractImport(t *testing.T) {
t.Parallel()
addressValue := Address{
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
}
runtime := NewTestInterpreterRuntime()
contract := []byte(`
access(all) contract Foo {
access(all) let x: [Int]
access(all) fun answer(): Int {
return 42
}
access(all) struct Bar {}
init() {
self.x = []
}
}`,
)
deploy := DeploymentTransaction("Foo", contract)
script := []byte(`
import Foo from 0x01
access(all) fun main() {
var foo: &Foo = Foo
var x: &[Int] = Foo.x
var bar: Foo.Bar = Foo.Bar()
}
`)
accountCodes := map[Location][]byte{}
var events []cadence.Event
runtimeInterface := &TestRuntimeInterface{
OnGetCode: func(location Location) (bytes []byte, err error) {
return accountCodes[location], nil
},
Storage: NewTestLedger(nil, nil),
OnGetSigningAccounts: func() ([]Address, error) {
return []Address{addressValue}, nil
},
OnResolveLocation: NewSingleIdentifierLocationResolver(t),
OnGetAccountContractCode: func(location common.AddressLocation) (code []byte, err error) {
return accountCodes[location], nil
},
OnUpdateAccountContractCode: func(location common.AddressLocation, code []byte) error {
accountCodes[location] = code
return nil
},
OnCreateAccount: func(payer Address) (address Address, err error) {
return addressValue, nil
},
OnEmitEvent: func(event cadence.Event) error {
events = append(events, event)
return nil
},
}
nextTransactionLocation := NewTransactionLocationGenerator()
err := runtime.ExecuteTransaction(
Script{
Source: deploy,
},
Context{
Interface: runtimeInterface,
Location: nextTransactionLocation(),
},
)
require.NoError(t, err)
nextScriptLocation := NewScriptLocationGenerator()
_, err = runtime.ExecuteScript(
Script{
Source: script,
},
Context{
Interface: runtimeInterface,
Location: nextScriptLocation(),
},
)
require.NoError(t, err)
}