-
Notifications
You must be signed in to change notification settings - Fork 931
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: a simple e2e test with knuu #3795
base: main
Are you sure you want to change the base?
chore: a simple e2e test with knuu #3795
Conversation
currently the following error is thrown and the progress is blocked due to that: $ make test-e2e
--> Running end to end tests
go run ./test/e2e
2024/10/02 18:16:03 proto: duplicate proto type registered: celestia.core.v1.da.DataAvailabilityHeader
2024/10/02 18:16:04 proto: duplicate proto type registered: celestia.core.v1.proof.ShareProof
2024/10/02 18:16:04 proto: duplicate proto type registered: celestia.core.v1.proof.RowProof
2024/10/02 18:16:04 proto: duplicate proto type registered: celestia.core.v1.proof.NMTProof
2024/10/02 18:16:04 proto: duplicate proto type registered: celestia.core.v1.proof.Proof
2024/10/02 18:16:04 proto: duplicate proto type registered: celestia.core.v1.tx.TxStatusRequest
2024/10/02 18:16:04 proto: duplicate proto type registered: celestia.core.v1.tx.TxStatusResponse
panic: error with code 1 is already registered: "invalid signal version because signal version can not be less than the current version"
goroutine 1 [running]:
cosmossdk.io/errors.RegisterWithGRPCCode({0x314d082, 0x6}, 0x1, 0x2, {0x325ebed, 0x56})
/home/moji/go/pkg/mod/cosmossdk.io/[email protected]/errors.go:43 +0x265
cosmossdk.io/errors.Register(...)
/home/moji/go/pkg/mod/cosmossdk.io/[email protected]/errors.go:35
github.com/celestiaorg/celestia-app/v3/x/signal/types.init()
/home/moji/go/pkg/mod/github.com/celestiaorg/celestia-app/[email protected]/x/signal/types/errors.go:8 +0x45
exit status 2
make: *** [Makefile:158: test-e2e] Error 1 update: This one is fixed and no longer an issue |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3795 +/- ##
==========================================
- Coverage 44.83% 43.74% -1.10%
==========================================
Files 265 317 +52
Lines 14620 22710 +8090
==========================================
+ Hits 6555 9934 +3379
- Misses 7313 11708 +4395
- Partials 752 1068 +316 ☔ View full report in Codecov by Sentry. |
5992d50
to
2134cd6
Compare
Update: by pointing to the feature_branch_app_v3 the issue of app version conflict is resolved. |
Update: since we need to activate |
3c01d85
to
28de789
Compare
Co-authored-by: tty47 <[email protected]>
Co-authored-by: tty47 <[email protected]>
Co-authored-by: tty47 <[email protected]>
1ae74cc
to
a2b3b2b
Compare
This PR proposes to have a simple e2e test for celestia-node with knuu.
The main purpose of this PR is to show how to use knuu for e2e tests.
The e2e tests are passing locally: