forked from omni-network/omni
-
Notifications
You must be signed in to change notification settings - Fork 1
/
portals_test.go
61 lines (51 loc) · 1.99 KB
/
portals_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
package e2e_test
import (
"testing"
"github.com/omni-network/omni/lib/netconf"
"github.com/stretchr/testify/require"
)
// TestPortalOffsets ensures that cross chain messages are sent from all source chains to all destination chains
// and that at least half of the messages are received by the destination chains.
func TestPortalOffsets(t *testing.T) {
t.Parallel()
testPortal(t, func(t *testing.T, network netconf.Network, source Portal, dests []Portal) {
t.Helper()
for _, dest := range dests {
for _, stream := range network.StreamsBetween(source.Chain.ID, dest.Chain.ID) {
sourceOffset, err := source.Contract.OutXMsgOffset(nil, dest.Chain.ID, uint64(stream.ShardID))
require.NoError(t, err)
destOffset, err := dest.Contract.InXMsgOffset(nil, source.Chain.ID, uint64(stream.ShardID))
require.NoError(t, err)
// require at least some xmsgs were sent
require.Positive(t, sourceOffset,
"no xmsgs sent from source chain %v to dest chain %v",
source.Chain.ID, dest.Chain.ID)
// require at least half were received
require.GreaterOrEqual(t, destOffset, sourceOffset/2,
"dest chain %v offset=%d, source chain %v offset=%d",
dest.Chain.ID, destOffset, source.Chain.ID, sourceOffset)
}
}
})
}
// TestSupportedChains ensures that all portals have been relayed supported chains from the PortalRegistry, via the XRegistry.
func TestSupportedChains(t *testing.T) {
// TODO: enable when cchain setNetwork xmsgs are enabled
t.Skip()
t.Parallel()
testPortal(t, func(t *testing.T, network netconf.Network, source Portal, dests []Portal) {
t.Helper()
for _, dest := range dests {
supported, err := source.Contract.IsSupportedDest(nil, dest.Chain.ID)
require.NoError(t, err)
if source.Chain.ID == dest.Chain.ID {
require.False(t, supported,
"source chain %v supports itself", source.Chain.ID)
} else {
require.True(t, supported,
"source chain %v does not support dest chain %v",
source.Chain.ID, dest.Chain.ID)
}
}
})
}