Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
adbb3f85
Unverified
Commit
adbb3f85
authored
Nov 13, 2023
by
Ethen Pociask
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[indexer.withdrawal_type_supplies] updated models & and tests
parent
b4fa4c75
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
69 additions
and
52 deletions
+69
-52
models.go
indexer/api/models/models.go
+3
-1
common.go
indexer/api/routes/common.go
+0
-3
validator.go
indexer/api/service/validator.go
+20
-21
bridge_transfers.go
indexer/database/bridge_transfers.go
+13
-6
bridge_transfers_e2e_test.go
indexer/e2e_tests/bridge_transfers_e2e_test.go
+31
-19
setup.go
indexer/e2e_tests/setup.go
+2
-2
No files found.
indexer/api/models/models.go
View file @
adbb3f85
package
models
import
"github.com/ethereum/go-ethereum/common"
import
(
"github.com/ethereum/go-ethereum/common"
)
// Params ... Query params
type
Params
struct
{
...
...
indexer/api/routes/common.go
View file @
adbb3f85
...
...
@@ -7,9 +7,6 @@ import (
const
(
InternalServerError
=
"Internal server error"
// defaultPageLimit ... Default page limit for pagination
defaultPageLimit
=
100
)
// jsonResponse ... Marshals and writes a JSON response provided arbitrary data
...
...
indexer/api/service/validator.go
View file @
adbb3f85
package
service
import
(
"strconv"
"errors"
"strconv"
"github.com/ethereum/go-ethereum/common"
)
...
...
@@ -11,25 +10,6 @@ import (
// Validator ... Validates API user request parameters
type
Validator
struct
{}
// ParseValidateLimit ... Validates and parses the limit query parameters
func
(
v
*
Validator
)
ParseValidateLimit
(
limit
string
)
(
int
,
error
)
{
if
limit
==
""
{
return
100
,
nil
}
val
,
err
:=
strconv
.
Atoi
(
limit
)
if
err
!=
nil
{
return
0
,
errors
.
New
(
"limit must be an integer value"
)
}
if
val
<=
0
{
return
0
,
errors
.
New
(
"limit must be greater than 0"
)
}
// TODO - Add a check against a max limit value
return
val
,
nil
}
// ParseValidateAddress ... Validates and parses the address query parameter
func
(
v
*
Validator
)
ParseValidateAddress
(
addr
string
)
(
common
.
Address
,
error
)
{
if
!
common
.
IsHexAddress
(
addr
)
{
...
...
@@ -60,3 +40,22 @@ func (v *Validator) ValidateCursor(cursor string) error {
return
nil
}
// ParseValidateLimit ... Validates and parses the limit query parameters
func
(
v
*
Validator
)
ParseValidateLimit
(
limit
string
)
(
int
,
error
)
{
if
limit
==
""
{
return
100
,
nil
}
val
,
err
:=
strconv
.
Atoi
(
limit
)
if
err
!=
nil
{
return
0
,
errors
.
New
(
"limit must be an integer value"
)
}
if
val
<=
0
{
return
0
,
errors
.
New
(
"limit must be greater than 0"
)
}
// TODO - Add a check against a max limit value
return
val
,
nil
}
indexer/database/bridge_transfers.go
View file @
adbb3f85
...
...
@@ -3,6 +3,7 @@ package database
import
(
"errors"
"fmt"
"strings"
"gorm.io/gorm"
"gorm.io/gorm/clause"
...
...
@@ -255,22 +256,28 @@ func (db *bridgeTransfersDB) L2BridgeWithdrawalSum(filter models.WithdrawFilter)
clause
=
""
case
models
.
Finalized
:
clause
=
"finalized_l1_
transaction_hash
IS NOT NULL"
clause
=
"finalized_l1_
event_guid
IS NOT NULL"
case
models
.
Proven
:
clause
=
"proven_l1_
transaction_hash
IS NOT NULL"
clause
=
"proven_l1_
event_guid
IS NOT NULL"
default
:
return
0
,
fmt
.
Errorf
(
"unknown filter argument: %d"
,
filter
)
}
// NOTE - Scanning to float64 reduces precision versus scanning to big.Int since amount is a uint256
// This is ok though given all bridges will never exceed max float64 (10^308 || 1.7E+308) in wei value locked
// since that would require 10^308 / 10^18 = 10^290 ETH locked in the bridge
var
sum
float64
result
:=
db
.
gorm
.
Model
(
&
L2TransactionWithdrawal
{})
.
Select
(
"sum(amount)"
)
.
Scan
(
&
sum
)
.
Where
(
clause
)
if
result
.
Error
!=
nil
{
result
:=
db
.
gorm
.
Model
(
&
L2TransactionWithdrawal
{})
.
Where
(
clause
)
.
Select
(
"sum(amount)"
)
.
Scan
(
&
sum
)
if
result
.
Error
!=
nil
&&
strings
.
Contains
(
result
.
Error
.
Error
(),
"converting NULL to float64 is unsupported"
)
{
// no rows found
return
0
,
nil
}
else
if
result
.
Error
!=
nil
{
return
0
,
result
.
Error
}
else
{
return
sum
,
nil
}
return
sum
,
nil
}
// L2BridgeWithdrawalWithFilter queries for a bridge withdrawal with set fields in the `BridgeTransfer` filter
...
...
indexer/e2e_tests/bridge_transfers_e2e_test.go
View file @
adbb3f85
...
...
@@ -460,13 +460,13 @@ func TestClientBridgeFunctions(t *testing.T) {
// (2) Create test actors that will deposit and withdraw using the standard bridge
aliceAddr
:=
testSuite
.
OpCfg
.
Secrets
.
Addresses
()
.
Alice
bobAddr
:=
testSuite
.
OpCfg
.
Secrets
.
Addresses
()
.
Bob
malAddr
:=
testSuite
.
OpCfg
.
Secrets
.
Addresses
()
.
Mallory
//
malAddr := testSuite.OpCfg.Secrets.Addresses().Mallory
type
actor
struct
{
addr
common
.
Address
priv
*
ecdsa
.
PrivateKey
amt
*
big
.
Int
receipt
types
.
Receipt
receipt
*
types
.
Receipt
}
mintSum
:=
bigint
.
Zero
...
...
@@ -482,11 +482,11 @@ func TestClientBridgeFunctions(t *testing.T) {
priv
:
testSuite
.
OpCfg
.
Secrets
.
Bob
,
amt
:
big
.
NewInt
(
0
),
},
{
addr
:
malAddr
,
priv
:
testSuite
.
OpCfg
.
Secrets
.
Mallory
,
amt
:
big
.
NewInt
(
0
),
},
//
{
//
addr: malAddr,
//
priv: testSuite.OpCfg.Secrets.Mallory,
//
amt: big.NewInt(0),
//
},
}
type
supplies
struct
{
...
...
@@ -502,8 +502,8 @@ func TestClientBridgeFunctions(t *testing.T) {
}
// (3) Iterate over each actor and deposit / withdraw
for
_
,
actor
:=
range
actors
{
t
.
Logf
(
"
simulating deposit/withdrawal flow for %s"
,
actor
.
addr
.
String
())
for
i
,
actor
:=
range
actors
{
t
.
Logf
(
"
%d - simulating deposit/withdrawal flow for %s"
,
i
,
actor
.
addr
.
String
())
l2Opts
,
err
:=
bind
.
NewKeyedTransactorWithChainID
(
actor
.
priv
,
testSuite
.
OpCfg
.
L2ChainIDBig
())
require
.
NoError
(
t
,
err
)
...
...
@@ -536,8 +536,8 @@ func TestClientBridgeFunctions(t *testing.T) {
}))
s
.
all
=
new
(
big
.
Int
)
.
Add
(
s
.
all
,
l2ToL1MessagePasserWithdrawTx
.
Value
())
actor
.
receipt
=
*
l2ToL1WithdrawReceipt
actor
.
amt
=
l2ToL1MessagePasserWithdrawTx
.
Value
()
actor
s
[
i
]
.
receipt
=
l2ToL1WithdrawReceipt
actor
s
[
i
]
.
amt
=
l2ToL1MessagePasserWithdrawTx
.
Value
()
// (3.d) Ensure that withdrawal and deposit txs are retrievable via API
deposits
,
err
:=
testSuite
.
Client
.
GetAllDepositsByAddress
(
actor
.
addr
)
...
...
@@ -560,26 +560,38 @@ func TestClientBridgeFunctions(t *testing.T) {
require
.
Equal
(
t
,
mintFloat
,
assessment
.
L1DepositSum
)
withdrawFloat
,
_
:=
s
.
all
.
Float64
()
require
.
Equal
(
t
,
withdrawFloat
,
assessment
.
FinalizedWithdraw
Sum
)
require
.
Equal
(
t
,
withdrawFloat
,
assessment
.
InitWithdrawal
Sum
)
// (5) Prove withdrawal for two actors and verify supplies
require
.
Equal
(
t
,
assessment
.
ProvenWithdrawSum
,
float64
(
0
))
require
.
Equal
(
t
,
assessment
.
FinalizedWithdrawSum
,
float64
(
0
))
for
i
:=
0
;
i
<
2
;
i
++
{
_
,
proveReceipt
:=
op_e2e
.
ProveWithdrawal
(
t
,
*
testSuite
.
OpCfg
,
testSuite
.
L1Client
,
testSuite
.
OpSys
.
EthInstances
[
"sequencer"
],
actors
[
i
]
.
priv
,
&
actors
[
i
]
.
receipt
)
// (5) Prove & finalize withdrawals on L1
for
_
,
actor
:=
range
actors
{
params
,
proveReceipt
:=
op_e2e
.
ProveWithdrawal
(
t
,
*
testSuite
.
OpCfg
,
testSuite
.
L1Client
,
testSuite
.
OpSys
.
EthInstances
[
"sequencer"
],
actor
.
priv
,
actor
.
receipt
)
require
.
NoError
(
t
,
wait
.
For
(
context
.
Background
(),
500
*
time
.
Millisecond
,
func
()
(
bool
,
error
)
{
l1Header
:=
testSuite
.
Indexer
.
BridgeProcessor
.
LastL1Header
seen
:=
l1Header
!=
nil
&&
l1Header
.
Number
.
Uint64
()
>=
proveReceipt
.
BlockNumber
.
Uint64
()
return
seen
,
nil
}))
s
.
proven
=
new
(
big
.
Int
)
.
Add
(
s
.
proven
,
actors
[
i
]
.
amt
)
s
.
proven
=
new
(
big
.
Int
)
.
Add
(
s
.
proven
,
actor
.
amt
)
finalReceipt
:=
op_e2e
.
FinalizeWithdrawal
(
t
,
*
testSuite
.
OpCfg
,
testSuite
.
L1Client
,
actor
.
priv
,
proveReceipt
,
params
)
require
.
NoError
(
t
,
wait
.
For
(
context
.
Background
(),
500
*
time
.
Millisecond
,
func
()
(
bool
,
error
)
{
l1Header
:=
testSuite
.
Indexer
.
BridgeProcessor
.
LastFinalizedL1Header
seen
:=
l1Header
!=
nil
&&
l1Header
.
Number
.
Uint64
()
>=
finalReceipt
.
BlockNumber
.
Uint64
()
return
seen
,
nil
}))
s
.
finalized
=
new
(
big
.
Int
)
.
Add
(
s
.
finalized
,
actor
.
amt
)
}
// (6) Validate assessment for proven & finalized withdrawals
assessment
,
err
=
testSuite
.
Client
.
GetSupplyAssessment
()
require
.
NoError
(
t
,
err
)
provenFloat
,
_
:=
s
.
proven
.
Float64
()
require
.
Equal
(
t
,
provenFloat
,
assessment
.
Finalized
WithdrawSum
)
// (6) Finalize withdrawal for one actor and verify supplies
require
.
Equal
(
t
,
provenFloat
,
assessment
.
Proven
WithdrawSum
)
finalFloat
,
_
:=
s
.
finalized
.
Float64
()
require
.
Equal
(
t
,
finalFloat
,
assessment
.
FinalizedWithdrawSum
)
}
indexer/e2e_tests/setup.go
View file @
adbb3f85
...
...
@@ -106,7 +106,7 @@ func createE2ETestSuite(t *testing.T) E2ETestSuite {
// the system is running, mark this test for Parallel execution
t
.
Parallel
()
indexerLog
:=
testlog
.
Logger
(
t
,
log
.
Lvl
Info
)
.
New
(
"role"
,
"indexer"
)
indexerLog
:=
testlog
.
Logger
(
t
,
log
.
Lvl
Debug
)
.
New
(
"role"
,
"indexer"
)
ix
,
err
:=
indexer
.
NewIndexer
(
context
.
Background
(),
indexerLog
,
indexerCfg
,
func
(
cause
error
)
{
if
cause
!=
nil
{
t
.
Fatalf
(
"indexer shut down with critical error: %v"
,
cause
)
...
...
@@ -120,7 +120,7 @@ func createE2ETestSuite(t *testing.T) E2ETestSuite {
require
.
NoError
(
t
,
ix
.
Stop
(
context
.
Background
()),
"cleanly shut down indexer"
)
})
apiLog
:=
testlog
.
Logger
(
t
,
log
.
Lvl
Info
)
.
New
(
"role"
,
"indexer_api"
)
apiLog
:=
testlog
.
Logger
(
t
,
log
.
Lvl
Debug
)
.
New
(
"role"
,
"indexer_api"
)
apiCfg
:=
&
api
.
Config
{
DB
:
&
api
.
TestDBConnector
{
BridgeTransfers
:
ix
.
DB
.
BridgeTransfers
},
// reuse the same DB
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment