Skip to content
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

Port remaining e2e tests to run on testnet #1537

Open
8 tasks
Br1ght0ne opened this issue Oct 15, 2024 · 0 comments
Open
8 tasks

Port remaining e2e tests to run on testnet #1537

Br1ght0ne opened this issue Oct 15, 2024 · 0 comments
Assignees
Labels

Comments

@Br1ght0ne
Copy link
Contributor

Br1ght0ne commented Oct 15, 2024

  • contracts::contract_custom_call_no_signatures_strategy
--- STDERR:              e2e::contracts contract_custom_call_no_signatures_strategy ---
Error: Codec("`ReceiptDecoder`: failed to find matching receipts entry for U64")
  • contracts::test_contract_submit_and_response
--- STDERR:              e2e::contracts test_contract_submit_and_response ---
Error: Codec("`ReceiptDecoder`: failed to find matching receipts entry for U64")
  • contracts::contract_method_call_respects_maturity
--- STDERR:              e2e::contracts contract_method_call_respects_maturity ---
thread 'contract_method_call_respects_maturity' panicked at e2e/tests/contracts.rs:447:37:
should have failed since we're calling with a maturity that is greater than the current block height: CallResponse { value: (), receipts: [Call { id: 0000000000000000000000000000000000000000000000000000000000000000, to: 4a550cc67814c2aefe155782374c0596c3958c4ce492b70670d11702ca992355, amount: 0, asset_id: f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07, gas: 1359, param1: 10480, param2: 10521, pc: 11712, is: 11712 }, ReturnData { id: 4a550cc67814c2aefe155782374c0596c3958c4ce492b70670d11702ca992355, ptr: 0, len: 0, digest: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855, pc: 12656, is: 11712, data: Some() }, Return { id: 0000000000000000000000000000000000000000000000000000000000000000, val: 1, pc: 10388, is: 10368 }, ScriptResult { result: Success, gas_used: 8008 }], gas_used: 8008, log_decoder: LogDecoder { log_formatters: {}, decoder_config: DecoderConfig { max_depth: 45, max_tokens: 10000 } }, tx_id: Some(009c7b77c719a46953acfeac9523deac60043c87ab68df60573a9648e27281b7) }
  • contracts::test_arguments_with_gas_forwarded
--- STDERR:              e2e::contracts test_arguments_with_gas_forwarded ---
Error: Transaction(Reverted { reason: "OutOfGas", revert_id: 0, receipts: [Call { id: 0000000000000000000000000000000000000000000000000000000000000000, to: 890bcadc8552499fbf408763f5f73d6fece8bbbb77be1db98c5c239c3e36cbbf, amount: 0, asset_id: f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07, gas: 4096, param1: 10488, param2: 10503, pc: 11712, is: 11712 }, Panic { id: 890bcadc8552499fbf408763f5f73d6fece8bbbb77be1db98c5c239c3e36cbbf, reason: PanicInstruction { reason: OutOfGas, instruction: ADDI { dst: 0x3e, lhs: 0x3e, rhs: 4 } (bytes: 50 fb e0 04) }, pc: 25952, is: 11712, contract_id: None }, ScriptResult { result: Panic, gas_used: 21576 }] })
  • contracts::low_level_call
--- STDERR:              e2e::contracts low_level_call ---
Error: Transaction(Reverted { reason: "OutOfGas", revert_id: 0, receipts: [Call { id: 0000000000000000000000000000000000000000000000000000000000000000, to: 9ac8ce7b96e9de7e5065584b6970998440bcf439560fdff94091ec1a8f292a0e, amount: 0, asset_id: f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07, gas: 32307, param1: 10480, param2: 10507, pc: 12008, is: 12008 }, Call { id: 9ac8ce7b96e9de7e5065584b6970998440bcf439560fdff94091ec1a8f292a0e, to: 92bfaacd5a4ef02c13cb1ba0cdbec62418b3330f819f5b8b95cc2af20fef67dd, amount: 0, asset_id: 0000000000000000000000000000000000000000000000000000000000000000, gas: 10000, param1: 67108838, param2: 67108830, pc: 16944, is: 16944 }, Panic { id: 92bfaacd5a4ef02c13cb1ba0cdbec62418b3330f819f5b8b95cc2af20fef67dd, reason: PanicInstruction { reason: OutOfGas, instruction: SWWQ { key_addr: 0x11, status: 0x10, src_addr: 0x14, lenq: 0x10 } (bytes: 3b 45 05 10) }, pc: 28276, is: 16944, contract_id: None }, ScriptResult { result: Panic, gas_used: 46440 }] })
  • providers::test_sway_timestamp
--- STDERR:              e2e::providers test_sway_timestamp ---
thread 'test_sway_timestamp' panicked at e2e/tests/providers.rs:731:5:
assertion `left == right` failed
  left: 2024-10-21T11:09:57Z
 right: 2024-10-21T11:09:46Z
  • providers::test_amount_and_asset_forwarding
--- STDERR:              e2e::providers test_amount_and_asset_forwarding ---
Error: Provider("io error: Response errors; not enough coins to fit the target")
  • providers::test_cache_invalidation_on_await
--- STDERR:              e2e::providers test_cache_invalidation_on_await ---
thread 'test_cache_invalidation_on_await' panicked at /home/runner/actions-runner/_work/fuels-rs/fuels-rs/packages/fuels-accounts/src/provider/retry_util.rs:160:17:
all attempts failed or timed out
@Br1ght0ne Br1ght0ne added enhancement New feature or request ci GitHub CI build/pipeline package:e2e labels Oct 15, 2024
@Br1ght0ne Br1ght0ne self-assigned this Oct 15, 2024
@Br1ght0ne Br1ght0ne added testing and removed ci GitHub CI build/pipeline labels Oct 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant