@layerzerolabs/protocol-stellar-v2 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +727 -0
- package/.turbo/turbo-lint.log +158 -0
- package/.turbo/turbo-test.log +796 -0
- package/Cargo.lock +2237 -0
- package/Cargo.toml +63 -0
- package/clippy.toml +7 -0
- package/contracts/common-macros/Cargo.toml +20 -0
- package/contracts/common-macros/src/error.rs +53 -0
- package/contracts/common-macros/src/event.rs +16 -0
- package/contracts/common-macros/src/lib.rs +255 -0
- package/contracts/common-macros/src/ownable.rs +63 -0
- package/contracts/common-macros/src/snapshots/common_macros__tests__tests__snapshot_generated_storage_code.snap +310 -0
- package/contracts/common-macros/src/storage.rs +439 -0
- package/contracts/common-macros/src/tests.rs +287 -0
- package/contracts/common-macros/src/ttl_configurable.rs +60 -0
- package/contracts/endpoint-v2/ARCHITECTURE.md +233 -0
- package/contracts/endpoint-v2/Cargo.toml +30 -0
- package/contracts/endpoint-v2/src/constants.rs +52 -0
- package/contracts/endpoint-v2/src/endpoint_v2.rs +305 -0
- package/contracts/endpoint-v2/src/errors.rs +29 -0
- package/contracts/endpoint-v2/src/events.rs +207 -0
- package/contracts/endpoint-v2/src/interfaces/layerzero_composer.rs +26 -0
- package/contracts/endpoint-v2/src/interfaces/layerzero_endpoint_v2.rs +170 -0
- package/contracts/endpoint-v2/src/interfaces/layerzero_receiver.rs +43 -0
- package/contracts/endpoint-v2/src/interfaces/message_lib.rs +62 -0
- package/contracts/endpoint-v2/src/interfaces/message_lib_manager.rs +220 -0
- package/contracts/endpoint-v2/src/interfaces/messaging_channel.rs +121 -0
- package/contracts/endpoint-v2/src/interfaces/messaging_composer.rs +63 -0
- package/contracts/endpoint-v2/src/interfaces/mod.rs +17 -0
- package/contracts/endpoint-v2/src/interfaces/send_lib.rs +70 -0
- package/contracts/endpoint-v2/src/lib.rs +22 -0
- package/contracts/endpoint-v2/src/message_lib_manager.rs +315 -0
- package/contracts/endpoint-v2/src/messaging_channel.rs +218 -0
- package/contracts/endpoint-v2/src/messaging_composer.rs +76 -0
- package/contracts/endpoint-v2/src/storage.rs +78 -0
- package/contracts/endpoint-v2/src/tests/endpoint_setup.rs +131 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +237 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/delegate.rs +42 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/initializable.rs +76 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/lz_receive_alert.rs +211 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/mod.rs +18 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/native_token.rs +10 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/owner.rs +10 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/pay_messaging_fees.rs +424 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/quote.rs +144 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/recover_token.rs +72 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/require_oapp_auth.rs +29 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/send.rs +513 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_delegate.rs +43 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_zro.rs +27 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/transfer_ownership.rs +30 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/ttl_config.rs +202 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verifiable.rs +59 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verify.rs +172 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/zro.rs +23 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/mod.rs +10 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/register_library.rs +131 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_registered.rs +35 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_supported_eid.rs +28 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_config.rs +79 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_lib_timeout.rs +246 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_library.rs +285 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_send_library.rs +180 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library.rs +405 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library_timeout.rs +80 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_send_library.rs +131 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +358 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/clear.rs +316 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound_nonce.rs +288 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound_payload_hash.rs +316 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/internal.rs +388 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/lazy_inbound_nonce.rs +307 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/mod.rs +10 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/next_guid.rs +239 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +324 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/outbound_nonce.rs +242 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +232 -0
- package/contracts/endpoint-v2/src/tests/messaging_composer/clear_compose.rs +212 -0
- package/contracts/endpoint-v2/src/tests/messaging_composer/compose_queue.rs +213 -0
- package/contracts/endpoint-v2/src/tests/messaging_composer/lz_compose_alert.rs +269 -0
- package/contracts/endpoint-v2/src/tests/messaging_composer/mod.rs +4 -0
- package/contracts/endpoint-v2/src/tests/messaging_composer/send_compose.rs +173 -0
- package/contracts/endpoint-v2/src/tests/mock.rs +132 -0
- package/contracts/endpoint-v2/src/tests/mod.rs +12 -0
- package/contracts/endpoint-v2/src/tests/util/build_payload.rs +126 -0
- package/contracts/endpoint-v2/src/tests/util/compute_guid.rs +82 -0
- package/contracts/endpoint-v2/src/tests/util/keccak256.rs +115 -0
- package/contracts/endpoint-v2/src/tests/util/mod.rs +3 -0
- package/contracts/endpoint-v2/src/util.rs +52 -0
- package/contracts/message-libs/Cargo.toml +12 -0
- package/contracts/message-libs/block-message-lib/Cargo.toml +19 -0
- package/contracts/message-libs/block-message-lib/src/lib.rs +70 -0
- package/contracts/message-libs/lib.rs +2 -0
- package/contracts/message-libs/message-lib-common/Cargo.toml +24 -0
- package/contracts/message-libs/message-lib-common/src/errors.rs +20 -0
- package/contracts/message-libs/message-lib-common/src/interfaces/dvn.rs +55 -0
- package/contracts/message-libs/message-lib-common/src/interfaces/executor.rs +46 -0
- package/contracts/message-libs/message-lib-common/src/interfaces/mod.rs +7 -0
- package/contracts/message-libs/message-lib-common/src/interfaces/treasury.rs +17 -0
- package/contracts/message-libs/message-lib-common/src/lib.rs +14 -0
- package/contracts/message-libs/message-lib-common/src/packet_codec_v1.rs +99 -0
- package/contracts/message-libs/message-lib-common/src/testing_utils.rs +27 -0
- package/contracts/message-libs/message-lib-common/src/tests/mod.rs +2 -0
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1.rs +162 -0
- package/contracts/message-libs/message-lib-common/src/tests/worker_options.rs +319 -0
- package/contracts/message-libs/message-lib-common/src/worker_options.rs +190 -0
- package/contracts/message-libs/simple-message-lib/Cargo.toml +26 -0
- package/contracts/message-libs/simple-message-lib/src/errors.rs +11 -0
- package/contracts/message-libs/simple-message-lib/src/lib.rs +14 -0
- package/contracts/message-libs/simple-message-lib/src/simple_message_lib.rs +136 -0
- package/contracts/message-libs/simple-message-lib/src/storage.rs +27 -0
- package/contracts/message-libs/simple-message-lib/src/test.rs +280 -0
- package/contracts/message-libs/treasury/Cargo.toml +27 -0
- package/contracts/message-libs/treasury/src/errors.rs +10 -0
- package/contracts/message-libs/treasury/src/events.rs +28 -0
- package/contracts/message-libs/treasury/src/interfaces/mod.rs +3 -0
- package/contracts/message-libs/treasury/src/interfaces/zro_fee_lib.rs +20 -0
- package/contracts/message-libs/treasury/src/lib.rs +20 -0
- package/contracts/message-libs/treasury/src/storage.rs +18 -0
- package/contracts/message-libs/treasury/src/tests/mod.rs +2 -0
- package/contracts/message-libs/treasury/src/tests/setup.rs +112 -0
- package/contracts/message-libs/treasury/src/tests/treasury_tests.rs +562 -0
- package/contracts/message-libs/treasury/src/treasury.rs +140 -0
- package/contracts/message-libs/uln-302/Cargo.toml +28 -0
- package/contracts/message-libs/uln-302/src/config_validation.rs +173 -0
- package/contracts/message-libs/uln-302/src/errors.rs +29 -0
- package/contracts/message-libs/uln-302/src/events.rs +72 -0
- package/contracts/message-libs/uln-302/src/interfaces/mod.rs +5 -0
- package/contracts/message-libs/uln-302/src/interfaces/receive.rs +82 -0
- package/contracts/message-libs/uln-302/src/interfaces/send.rs +159 -0
- package/contracts/message-libs/uln-302/src/lib.rs +20 -0
- package/contracts/message-libs/uln-302/src/receive.rs +199 -0
- package/contracts/message-libs/uln-302/src/send.rs +349 -0
- package/contracts/message-libs/uln-302/src/storage.rs +47 -0
- package/contracts/message-libs/uln-302/src/tests/config/mod.rs +2 -0
- package/contracts/message-libs/uln-302/src/tests/config/oapp_uln_config.rs +291 -0
- package/contracts/message-libs/uln-302/src/tests/config/uln_config.rs +163 -0
- package/contracts/message-libs/uln-302/src/tests/mod.rs +7 -0
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/commit_verification.rs +183 -0
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/confirmations.rs +128 -0
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/effective_receive_uln_config.rs +104 -0
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/mod.rs +66 -0
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/set_default_receive_uln_configs.rs +79 -0
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/verifiable.rs +463 -0
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/verify.rs +173 -0
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_executor_config.rs +132 -0
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_send_uln_config.rs +117 -0
- package/contracts/message-libs/uln-302/src/tests/send_uln302/mod.rs +6 -0
- package/contracts/message-libs/uln-302/src/tests/send_uln302/quote.rs +586 -0
- package/contracts/message-libs/uln-302/src/tests/send_uln302/send.rs +834 -0
- package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_executor_configs.rs +95 -0
- package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_send_uln_configs.rs +80 -0
- package/contracts/message-libs/uln-302/src/tests/setup.rs +268 -0
- package/contracts/message-libs/uln-302/src/tests/testing_utils.rs +47 -0
- package/contracts/message-libs/uln-302/src/tests/uln302/get_app_receive_uln_config.rs +51 -0
- package/contracts/message-libs/uln-302/src/tests/uln302/get_app_send_uln_config.rs +51 -0
- package/contracts/message-libs/uln-302/src/tests/uln302/get_oapp_executor_config.rs +48 -0
- package/contracts/message-libs/uln-302/src/tests/uln302/mod.rs +4 -0
- package/contracts/message-libs/uln-302/src/tests/uln302/set_config.rs +998 -0
- package/contracts/message-libs/uln-302/src/uln302.rs +117 -0
- package/contracts/oapp-macros/Cargo.toml +21 -0
- package/contracts/oapp-macros/src/lib.rs +408 -0
- package/contracts/oapp-macros/src/oapp_core.rs +49 -0
- package/contracts/oapp-macros/src/oapp_full.rs +15 -0
- package/contracts/oapp-macros/src/oapp_options_type3.rs +46 -0
- package/contracts/oapp-macros/src/oapp_receiver.rs +67 -0
- package/contracts/oapp-macros/src/oapp_sender.rs +23 -0
- package/contracts/oapp-macros/src/util.rs +103 -0
- package/contracts/oapp-macros/tests/test_macros.rs +522 -0
- package/contracts/oapps/Cargo.toml +12 -0
- package/contracts/oapps/counter/Cargo.toml +24 -0
- package/contracts/oapps/counter/integration_tests/mod.rs +3 -0
- package/contracts/oapps/counter/integration_tests/setup.rs +201 -0
- package/contracts/oapps/counter/integration_tests/test_with_sml.rs +166 -0
- package/contracts/oapps/counter/integration_tests/utils.rs +144 -0
- package/contracts/oapps/counter/src/codec.rs +63 -0
- package/contracts/oapps/counter/src/counter.rs +235 -0
- package/contracts/oapps/counter/src/errors.rs +9 -0
- package/contracts/oapps/counter/src/lib.rs +16 -0
- package/contracts/oapps/counter/src/options.rs +30 -0
- package/contracts/oapps/counter/src/storage.rs +33 -0
- package/contracts/oapps/counter/src/tests/mod.rs +37 -0
- package/contracts/oapps/counter/src/tests/test_codec.rs +64 -0
- package/contracts/oapps/counter/src/tests/test_counter.rs +390 -0
- package/contracts/oapps/counter/src/u256_ext.rs +21 -0
- package/contracts/oapps/lib.rs +2 -0
- package/contracts/oapps/oapp/Cargo.toml +21 -0
- package/contracts/oapps/oapp/src/errors.rs +9 -0
- package/contracts/oapps/oapp/src/lib.rs +10 -0
- package/contracts/oapps/oapp/src/oapp_core.rs +92 -0
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +89 -0
- package/contracts/oapps/oapp/src/oapp_receiver.rs +72 -0
- package/contracts/oapps/oapp/src/oapp_sender.rs +66 -0
- package/contracts/oapps/oapp/src/tests/mod.rs +4 -0
- package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +162 -0
- package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +180 -0
- package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +157 -0
- package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +283 -0
- package/contracts/utils/Cargo.toml +21 -0
- package/contracts/utils/src/buffer_reader.rs +143 -0
- package/contracts/utils/src/buffer_writer.rs +117 -0
- package/contracts/utils/src/bytes_ext.rs +19 -0
- package/contracts/utils/src/errors.rs +30 -0
- package/contracts/utils/src/lib.rs +15 -0
- package/contracts/utils/src/option_ext.rs +38 -0
- package/contracts/utils/src/ownable.rs +88 -0
- package/contracts/utils/src/testing_utils.rs +100 -0
- package/contracts/utils/src/tests/buffer_reader.rs +1006 -0
- package/contracts/utils/src/tests/buffer_writer.rs +330 -0
- package/contracts/utils/src/tests/bytes_ext.rs +77 -0
- package/contracts/utils/src/tests/mod.rs +4 -0
- package/contracts/utils/src/tests/ownable.rs +149 -0
- package/contracts/utils/src/ttl.rs +164 -0
- package/contracts/workers/Cargo.toml +13 -0
- package/contracts/workers/executor/Cargo.toml +26 -0
- package/contracts/workers/executor/src/events.rs +22 -0
- package/contracts/workers/executor/src/executor.rs +347 -0
- package/contracts/workers/executor/src/interfaces/executor.rs +40 -0
- package/contracts/workers/executor/src/interfaces/mod.rs +5 -0
- package/contracts/workers/executor/src/interfaces/types.rs +51 -0
- package/contracts/workers/executor/src/lib.rs +10 -0
- package/contracts/workers/executor/src/storage.rs +23 -0
- package/contracts/workers/lib.rs +2 -0
- package/contracts/workers/worker-common/Cargo.toml +18 -0
- package/contracts/workers/worker-common/src/constants.rs +17 -0
- package/contracts/workers/worker-common/src/errors.rs +6 -0
- package/contracts/workers/worker-common/src/events.rs +34 -0
- package/contracts/workers/worker-common/src/interfaces/executor_fee_lib.rs +35 -0
- package/contracts/workers/worker-common/src/interfaces/mod.rs +7 -0
- package/contracts/workers/worker-common/src/interfaces/price_feed.rs +40 -0
- package/contracts/workers/worker-common/src/interfaces/worker.rs +60 -0
- package/contracts/workers/worker-common/src/lib.rs +19 -0
- package/contracts/workers/worker-common/src/storage.rs +32 -0
- package/contracts/workers/worker-common/src/worker_common.rs +166 -0
- package/package.json +25 -0
- package/rust-toolchain.toml +4 -0
- package/rustfmt.toml +17 -0
- package/sdk/.turbo/turbo-build.log +4 -0
- package/sdk/dist/generated/bml.d.ts +452 -0
- package/sdk/dist/generated/bml.js +72 -0
- package/sdk/dist/generated/counter.d.ts +824 -0
- package/sdk/dist/generated/counter.js +125 -0
- package/sdk/dist/generated/endpoint.d.ts +1676 -0
- package/sdk/dist/generated/endpoint.js +216 -0
- package/sdk/dist/generated/sml.d.ts +810 -0
- package/sdk/dist/generated/sml.js +132 -0
- package/sdk/dist/generated/uln302.d.ts +1227 -0
- package/sdk/dist/generated/uln302.js +185 -0
- package/sdk/dist/index.d.ts +5 -0
- package/sdk/dist/index.js +5 -0
- package/sdk/node_modules/.bin/tsc +21 -0
- package/sdk/node_modules/.bin/tsserver +21 -0
- package/sdk/node_modules/.bin/vitest +21 -0
- package/sdk/node_modules/.bin/zx +21 -0
- package/sdk/package.json +40 -0
- package/sdk/src/index.ts +5 -0
- package/sdk/test/index.test.ts +271 -0
- package/sdk/test/suites/constants.ts +13 -0
- package/sdk/test/suites/deploy.ts +277 -0
- package/sdk/test/suites/localnet.ts +42 -0
- package/sdk/test/suites/scan.ts +189 -0
- package/sdk/tsconfig.json +106 -0
- package/tools/ts-bindings-gen/Cargo.toml +14 -0
- package/tools/ts-bindings-gen/src/main.rs +147 -0
- package/turbo.json +12 -0
|
@@ -0,0 +1,796 @@
|
|
|
1
|
+
|
|
2
|
+
> @layerzerolabs/protocol-stellar-v2@0.0.1 test /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
3
|
+
> pnpm exec lz-tool --script "cargo nextest run" stellar
|
|
4
|
+
|
|
5
|
+
📦 Using 4 default cache volume(s) for stellar
|
|
6
|
+
✅ stellar-23.1.4 (Stellar CLI with UID/GID support for permission fixes)
|
|
7
|
+
🔧 stellar version: 23.1.4
|
|
8
|
+
$ docker image ls 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
9
|
+
REPOSITORY TAG IMAGE ID CREATED SIZE
|
|
10
|
+
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling stellar_23.1.4_patch_3 85c65ad905d0 4 days ago 2.73GB
|
|
11
|
+
📥 Pulling Docker image from ECR: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
12
|
+
$ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
13
|
+
stellar_23.1.4_patch_3: Pulling from layerzerolabs/stellar-tooling
|
|
14
|
+
Digest: sha256:edade6ced372eda8f2b8795237da166323936fbb4247ba40bcf34ac019acb955
|
|
15
|
+
Status: Image is up to date for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
16
|
+
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
17
|
+
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
18
|
+
👤 Running container as UID:GID 1001:1001
|
|
19
|
+
🌍 Using 5 default environment variable(s) for stellar
|
|
20
|
+
📜 Executing custom script: cargo nextest run
|
|
21
|
+
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
22
|
+
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
23
|
+
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
24
|
+
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3 bash -c $'cargo nextest run'
|
|
25
|
+
Downloading crates ...
|
|
26
|
+
Downloaded hex-literal v1.1.0
|
|
27
|
+
Downloaded ansi_term v0.12.1
|
|
28
|
+
Downloaded stellar-strkey v0.0.14
|
|
29
|
+
Downloaded insta v1.44.3
|
|
30
|
+
Downloaded similar v2.7.0
|
|
31
|
+
Downloaded console v0.15.11
|
|
32
|
+
Downloaded assert_unordered v0.3.5
|
|
33
|
+
warning: output filename collision.
|
|
34
|
+
The lib target `endpoint_v2` in package `endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)` has the same output filename as the lib target `endpoint_v2` in package `endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)`.
|
|
35
|
+
Colliding filename is: /workspace/contracts/protocol/stellar/target/debug/deps/libendpoint_v2.so
|
|
36
|
+
The targets should have unique names.
|
|
37
|
+
Consider changing their names to be unique or compiling them separately.
|
|
38
|
+
This may become a hard error in the future; see <https://github.com/rust-lang/cargo/issues/6313>.
|
|
39
|
+
warning: output filename collision.
|
|
40
|
+
The lib target `endpoint_v2` in package `endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)` has the same output filename as the lib target `endpoint_v2` in package `endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)`.
|
|
41
|
+
Colliding filename is: /workspace/contracts/protocol/stellar/target/debug/deps/libendpoint_v2.so.dwp
|
|
42
|
+
The targets should have unique names.
|
|
43
|
+
Consider changing their names to be unique or compiling them separately.
|
|
44
|
+
This may become a hard error in the future; see <https://github.com/rust-lang/cargo/issues/6313>.
|
|
45
|
+
warning: output filename collision.
|
|
46
|
+
The lib target `endpoint_v2` in package `endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)` has the same output filename as the lib target `endpoint_v2` in package `endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)`.
|
|
47
|
+
Colliding filename is: /workspace/contracts/protocol/stellar/target/debug/deps/libendpoint_v2.rlib
|
|
48
|
+
The targets should have unique names.
|
|
49
|
+
Consider changing their names to be unique or compiling them separately.
|
|
50
|
+
This may become a hard error in the future; see <https://github.com/rust-lang/cargo/issues/6313>.
|
|
51
|
+
Compiling proc-macro2 v1.0.103
|
|
52
|
+
Compiling libc v0.2.177
|
|
53
|
+
Compiling cfg-if v1.0.4
|
|
54
|
+
Compiling subtle v2.6.1
|
|
55
|
+
Compiling autocfg v1.5.0
|
|
56
|
+
Compiling const-oid v0.9.6
|
|
57
|
+
Compiling quote v1.0.41
|
|
58
|
+
Compiling generic-array v0.14.9
|
|
59
|
+
Compiling zerocopy v0.8.27
|
|
60
|
+
Compiling serde_core v1.0.228
|
|
61
|
+
Compiling typenum v1.19.0
|
|
62
|
+
Compiling paste v1.0.15
|
|
63
|
+
Compiling syn v1.0.109
|
|
64
|
+
Compiling either v1.15.0
|
|
65
|
+
Compiling semver v1.0.27
|
|
66
|
+
Compiling cpufeatures v0.2.17
|
|
67
|
+
Compiling ahash v0.8.12
|
|
68
|
+
Compiling libm v0.2.15
|
|
69
|
+
Compiling dyn-clone v1.0.20
|
|
70
|
+
Compiling data-encoding v2.9.0
|
|
71
|
+
Compiling itertools v0.10.5
|
|
72
|
+
Compiling ethnum v1.5.2
|
|
73
|
+
Compiling escape-bytes v0.1.1
|
|
74
|
+
Compiling base64 v0.22.1
|
|
75
|
+
Compiling equivalent v1.0.2
|
|
76
|
+
Compiling rustc_version v0.4.1
|
|
77
|
+
Compiling hashbrown v0.16.0
|
|
78
|
+
Compiling indexmap-nostd v0.4.0
|
|
79
|
+
Compiling downcast-rs v1.2.1
|
|
80
|
+
Compiling num-traits v0.2.19
|
|
81
|
+
Compiling wasmparser-nostd v0.100.2
|
|
82
|
+
Compiling curve25519-dalek v4.1.3
|
|
83
|
+
Compiling spin v0.9.8
|
|
84
|
+
Compiling smallvec v1.15.1
|
|
85
|
+
Compiling soroban-env-host v23.0.1
|
|
86
|
+
Compiling wasmi_arena v0.4.1
|
|
87
|
+
Compiling indexmap v2.12.0
|
|
88
|
+
Compiling heck v0.5.0
|
|
89
|
+
Compiling static_assertions v1.1.0
|
|
90
|
+
Compiling dtor-proc-macro v0.0.6
|
|
91
|
+
Compiling once_cell v1.21.3
|
|
92
|
+
Compiling ctor-proc-macro v0.0.6
|
|
93
|
+
Compiling base16ct v0.2.0
|
|
94
|
+
Compiling itertools v0.14.0
|
|
95
|
+
Compiling getrandom v0.2.16
|
|
96
|
+
Compiling wasmparser v0.116.1
|
|
97
|
+
Compiling syn v2.0.108
|
|
98
|
+
Compiling num-integer v0.1.46
|
|
99
|
+
Compiling wasmi_core v0.13.0
|
|
100
|
+
Compiling rand_core v0.6.4
|
|
101
|
+
Compiling keccak v0.1.5
|
|
102
|
+
Compiling serde_json v1.0.145
|
|
103
|
+
Compiling ff v0.13.1
|
|
104
|
+
Compiling num-bigint v0.4.6
|
|
105
|
+
Compiling hex-literal v0.4.1
|
|
106
|
+
Compiling ppv-lite86 v0.2.21
|
|
107
|
+
Compiling group v0.13.0
|
|
108
|
+
Compiling dtor v0.1.1
|
|
109
|
+
Compiling ctor v0.5.0
|
|
110
|
+
Compiling hashbrown v0.13.2
|
|
111
|
+
Compiling rand_chacha v0.3.1
|
|
112
|
+
Compiling console v0.15.11
|
|
113
|
+
Compiling include_dir_macros v0.7.4
|
|
114
|
+
Compiling similar v2.7.0
|
|
115
|
+
Compiling rand v0.8.5
|
|
116
|
+
Compiling include_dir v0.7.4
|
|
117
|
+
Compiling hex-literal v1.1.0
|
|
118
|
+
Compiling ansi_term v0.12.1
|
|
119
|
+
Compiling oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
120
|
+
Compiling workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
|
|
121
|
+
Compiling message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
|
|
122
|
+
Compiling soroban-wasmi v0.31.1-soroban.20.0.1
|
|
123
|
+
Compiling ark-std v0.4.0
|
|
124
|
+
Compiling insta v1.44.3
|
|
125
|
+
Compiling assert_unordered v0.3.5
|
|
126
|
+
Compiling ark-serialize-derive v0.4.2
|
|
127
|
+
Compiling ark-ff-macros v0.4.2
|
|
128
|
+
Compiling derivative v2.2.0
|
|
129
|
+
Compiling ark-ff-asm v0.4.2
|
|
130
|
+
Compiling darling_core v0.21.3
|
|
131
|
+
Compiling prettyplease v0.2.37
|
|
132
|
+
Compiling darling_core v0.20.11
|
|
133
|
+
Compiling macro-string v0.1.4
|
|
134
|
+
Compiling zeroize_derive v1.4.2
|
|
135
|
+
Compiling serde_derive v1.0.228
|
|
136
|
+
Compiling derive_arbitrary v1.3.2
|
|
137
|
+
Compiling cfg_eval v0.1.2
|
|
138
|
+
Compiling thiserror-impl v1.0.69
|
|
139
|
+
Compiling curve25519-dalek-derive v0.1.1
|
|
140
|
+
Compiling num-derive v0.4.2
|
|
141
|
+
Compiling soroban-builtin-sdk-macros v23.0.1
|
|
142
|
+
Compiling zeroize v1.8.2
|
|
143
|
+
Compiling arbitrary v1.3.2
|
|
144
|
+
Compiling thiserror v1.0.69
|
|
145
|
+
Compiling visibility v0.1.1
|
|
146
|
+
Compiling bytes-lit v0.0.5
|
|
147
|
+
Compiling der v0.7.10
|
|
148
|
+
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
149
|
+
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapp-macros)
|
|
150
|
+
Compiling serde v1.0.228
|
|
151
|
+
Compiling crypto-common v0.1.6
|
|
152
|
+
Compiling block-buffer v0.10.4
|
|
153
|
+
Compiling crypto-bigint v0.5.5
|
|
154
|
+
Compiling darling_macro v0.21.3
|
|
155
|
+
Compiling darling_macro v0.20.11
|
|
156
|
+
Compiling darling v0.21.3
|
|
157
|
+
Compiling digest v0.9.0
|
|
158
|
+
Compiling darling v0.20.11
|
|
159
|
+
Compiling block-buffer v0.9.0
|
|
160
|
+
Compiling stellar-macros v0.5.0
|
|
161
|
+
Compiling digest v0.10.7
|
|
162
|
+
Compiling serde_with_macros v3.15.1
|
|
163
|
+
Compiling sec1 v0.7.3
|
|
164
|
+
Compiling sha2 v0.9.9
|
|
165
|
+
Compiling sha2 v0.10.9
|
|
166
|
+
Compiling signature v2.2.0
|
|
167
|
+
Compiling ark-serialize v0.4.2
|
|
168
|
+
Compiling hmac v0.12.1
|
|
169
|
+
Compiling crate-git-revision v0.0.6
|
|
170
|
+
Compiling schemars v0.8.22
|
|
171
|
+
Compiling hex v0.4.3
|
|
172
|
+
Compiling sha3 v0.10.8
|
|
173
|
+
Compiling rfc6979 v0.4.0
|
|
174
|
+
Compiling ed25519 v2.2.3
|
|
175
|
+
Compiling elliptic-curve v0.13.8
|
|
176
|
+
Compiling ark-ff v0.4.2
|
|
177
|
+
Compiling stellar-strkey v0.0.13
|
|
178
|
+
Compiling stellar-xdr v23.0.0
|
|
179
|
+
Compiling soroban-env-common v23.0.1
|
|
180
|
+
Compiling soroban-sdk v23.3.0
|
|
181
|
+
Compiling stellar-strkey v0.0.14
|
|
182
|
+
Compiling ecdsa v0.16.9
|
|
183
|
+
Compiling primeorder v0.13.6
|
|
184
|
+
Compiling ed25519-dalek v2.2.0
|
|
185
|
+
Compiling p256 v0.13.2
|
|
186
|
+
Compiling k256 v0.13.4
|
|
187
|
+
Compiling serde_with v3.15.1
|
|
188
|
+
Compiling ark-poly v0.4.2
|
|
189
|
+
Compiling ark-ec v0.4.2
|
|
190
|
+
Compiling ark-bls12-381 v0.4.0
|
|
191
|
+
Compiling soroban-spec v23.3.0
|
|
192
|
+
Compiling soroban-env-macros v23.0.1
|
|
193
|
+
Compiling soroban-spec-rust v23.3.0
|
|
194
|
+
Compiling soroban-sdk-macros v23.3.0
|
|
195
|
+
Compiling soroban-spec-typescript v23.1.4
|
|
196
|
+
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
197
|
+
Compiling soroban-ledger-snapshot v23.3.0
|
|
198
|
+
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
199
|
+
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
200
|
+
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
201
|
+
Compiling stellar-access v0.5.0
|
|
202
|
+
Compiling stellar-contract-utils v0.5.0
|
|
203
|
+
Compiling worker-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker-common)
|
|
204
|
+
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
205
|
+
Compiling block-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/block-message-lib)
|
|
206
|
+
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
207
|
+
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
208
|
+
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
209
|
+
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
210
|
+
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
211
|
+
Finished `test` profile [optimized + debuginfo] target(s) in 2m 14s
|
|
212
|
+
────────────
|
|
213
|
+
Nextest run ID 605b1c48-b2e4-420f-b0ee-ba51c67c353b with nextest profile: default
|
|
214
|
+
Starting 576 tests across 18 binaries
|
|
215
|
+
PASS [ 0.006s] ( 1/576) common-macros tests::tests::missing_storage_type_attribute_fails
|
|
216
|
+
PASS [ 0.006s] ( 2/576) common-macros tests::tests::mixed_valid_and_invalid_variants_fails
|
|
217
|
+
PASS [ 0.006s] ( 3/576) common-macros tests::tests::storage_type_with_empty_parens_fails
|
|
218
|
+
PASS [ 0.006s] ( 4/576) common-macros tests::tests::invalid_default_value_fails
|
|
219
|
+
PASS [ 0.007s] ( 5/576) common-macros tests::tests::tuple_variant_fails
|
|
220
|
+
PASS [ 0.007s] ( 6/576) common-macros tests::tests::multiple_storage_type_attributes_fails
|
|
221
|
+
PASS [ 0.007s] ( 7/576) common-macros tests::tests::invalid_ttl_provider_format_fails
|
|
222
|
+
PASS [ 0.007s] ( 8/576) common-macros tests::tests::storage_type_with_multiple_types_fails
|
|
223
|
+
PASS [ 0.007s] ( 9/576) common-macros tests::tests::non_enum_struct_fails
|
|
224
|
+
PASS [ 0.007s] ( 10/576) common-macros tests::tests::storage_type_without_type_parameter_fails
|
|
225
|
+
PASS [ 0.007s] ( 11/576) common-macros tests::tests::invalid_storage_type_parameter_fails
|
|
226
|
+
PASS [ 0.007s] ( 12/576) common-macros tests::tests::no_auto_ttl_with_arguments_fails
|
|
227
|
+
PASS [ 0.007s] ( 13/576) common-macros tests::tests::unknown_variant_attribute_fails
|
|
228
|
+
PASS [ 0.007s] ( 14/576) common-macros tests::tests::multiple_default_attributes_fails
|
|
229
|
+
PASS [ 0.007s] ( 15/576) common-macros tests::tests::multiple_no_auto_ttl_attributes_fails
|
|
230
|
+
PASS [ 0.005s] ( 16/576) counter tests::test_codec::test_value_panic_on_short_value
|
|
231
|
+
PASS [ 0.005s] ( 17/576) counter tests::test_codec::test_msg_type
|
|
232
|
+
PASS [ 0.005s] ( 18/576) counter tests::test_codec::test_msg_type_panic_on_invalid_data
|
|
233
|
+
PASS [ 0.006s] ( 19/576) counter tests::test_codec::test_encode_and_decode
|
|
234
|
+
PASS [ 0.005s] ( 20/576) counter tests::test_codec::test_zero_value_when_not_provided
|
|
235
|
+
PASS [ 0.005s] ( 21/576) counter tests::test_codec::test_encode_and_decode_with_value
|
|
236
|
+
PASS [ 0.007s] ( 22/576) counter tests::test_codec::test_src_eid_panic_on_invalid_data
|
|
237
|
+
PASS [ 0.008s] ( 23/576) common-macros tests::tests::valid_complex_enum_succeeds
|
|
238
|
+
PASS [ 0.014s] ( 24/576) counter tests::test_counter::test_lz_compose_not_from_executor
|
|
239
|
+
PASS [ 0.012s] ( 25/576) counter tests::test_counter::test_skip_inbound_nonce_no_owner
|
|
240
|
+
PASS [ 0.014s] ( 26/576) counter tests::test_counter::test_next_nonce
|
|
241
|
+
PASS [ 0.015s] ( 27/576) counter tests::test_counter::test_lz_receive_not_from_executor
|
|
242
|
+
PASS [ 0.015s] ( 28/576) counter tests::test_counter::test_skip_inbound_nonce
|
|
243
|
+
PASS [ 0.025s] ( 29/576) counter tests::test_counter::test_increment
|
|
244
|
+
PASS [ 0.027s] ( 30/576) counter tests::test_counter::test_lz_compose
|
|
245
|
+
PASS [ 0.028s] ( 31/576) counter tests::test_counter::test_lz_compose_aba
|
|
246
|
+
PASS [ 0.040s] ( 32/576) common-macros tests::tests::snapshot_generated_storage_code
|
|
247
|
+
PASS [ 0.031s] ( 33/576) counter tests::test_counter::test_lz_receive_vanilla
|
|
248
|
+
PASS [ 0.017s] ( 34/576) endpoint-v2 tests::endpoint_v2::delegate::test_delegate_when_not_set
|
|
249
|
+
PASS [ 0.018s] ( 35/576) endpoint-v2 tests::endpoint_v2::delegate::test_delegate_when_set
|
|
250
|
+
PASS [ 0.033s] ( 36/576) counter tests::test_counter::test_lz_receive_vanilla_ordered_nonce_wrong_nonce
|
|
251
|
+
PASS [ 0.018s] ( 37/576) endpoint-v2 tests::endpoint_v2::initializable::test_initializable_with_established_path
|
|
252
|
+
PASS [ 0.034s] ( 38/576) endpoint-v2 tests::endpoint_v2::clear::test_clear_sequential_nonces
|
|
253
|
+
PASS [ 0.017s] ( 39/576) endpoint-v2 tests::endpoint_v2::initializable::test_initializable_with_receiver_rejecting_init
|
|
254
|
+
PASS [ 0.020s] ( 40/576) endpoint-v2 tests::endpoint_v2::initializable::test_initializable_with_receiver_allowing_init
|
|
255
|
+
PASS [ 0.028s] ( 41/576) endpoint-v2 tests::endpoint_v2::clear::test_clear_success
|
|
256
|
+
PASS [ 0.028s] ( 42/576) endpoint-v2 tests::endpoint_v2::clear::test_clear_updates_lazy_nonce
|
|
257
|
+
PASS [ 0.020s] ( 43/576) endpoint-v2 tests::endpoint_v2::lz_receive_alert::test_lz_receive_alert_auth
|
|
258
|
+
PASS [ 0.016s] ( 44/576) endpoint-v2 tests::endpoint_v2::owner::test_owner
|
|
259
|
+
PASS [ 0.024s] ( 45/576) endpoint-v2 tests::endpoint_v2::lz_receive_alert::test_lz_receive_alert_with_different_origins
|
|
260
|
+
PASS [ 0.019s] ( 46/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_panic_pay_native_fees_insufficient_balance
|
|
261
|
+
PASS [ 0.021s] ( 47/576) endpoint-v2 tests::endpoint_v2::native_token::test_native_token
|
|
262
|
+
PASS [ 0.022s] ( 48/576) endpoint-v2 tests::endpoint_v2::lz_receive_alert::test_lz_receive_alert_with_empty_data
|
|
263
|
+
PASS [ 0.020s] ( 49/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_panic_pay_zro_fees_insufficient_balance
|
|
264
|
+
PASS [ 0.022s] ( 50/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_pay_fees_with_empty_recipients
|
|
265
|
+
PASS [ 0.022s] ( 51/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_pay_fees_with_zero_amounts_skipped
|
|
266
|
+
PASS [ 0.020s] ( 52/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_pay_native_fees_exact_amount
|
|
267
|
+
PASS [ 0.071s] ( 53/576) counter integration_tests::test_with_sml::test_increment_vanilla
|
|
268
|
+
PASS [ 0.025s] ( 54/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_pay_multiple_recipients_same_token
|
|
269
|
+
PASS [ 0.073s] ( 55/576) counter integration_tests::test_with_sml::test_increment_composed
|
|
270
|
+
PASS [ 0.026s] ( 56/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_pay_mixed_native_and_zro_fees
|
|
271
|
+
PASS [ 0.029s] ( 57/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_pay_fees_with_mixed_zero_and_nonzero_amounts
|
|
272
|
+
PASS [ 0.023s] ( 58/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_pay_native_fees_with_refund
|
|
273
|
+
PASS [ 0.023s] ( 59/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_pay_zro_fees_exact_amount
|
|
274
|
+
PASS [ 0.025s] ( 60/576) endpoint-v2 tests::endpoint_v2::pay_messaging_fees::test_pay_zro_fees_with_refund
|
|
275
|
+
PASS [ 0.025s] ( 61/576) endpoint-v2 tests::endpoint_v2::quote::test_quote_with_native_fee
|
|
276
|
+
PASS [ 0.025s] ( 62/576) endpoint-v2 tests::endpoint_v2::quote::test_quote_with_zro_fee
|
|
277
|
+
PASS [ 0.022s] ( 63/576) endpoint-v2 tests::endpoint_v2::recover_token::test_recover_token
|
|
278
|
+
PASS [ 0.019s] ( 64/576) endpoint-v2 tests::endpoint_v2::require_oapp_auth::test_require_oapp_auth_delegate_set
|
|
279
|
+
PASS [ 0.030s] ( 65/576) endpoint-v2 tests::endpoint_v2::quote::test_quote_with_custom_send_library
|
|
280
|
+
PASS [ 0.025s] ( 66/576) endpoint-v2 tests::endpoint_v2::recover_token::test_recover_token_fails_for_non_owner
|
|
281
|
+
PASS [ 0.098s] ( 67/576) counter integration_tests::test_with_sml::test_increment_aba
|
|
282
|
+
PASS [ 0.018s] ( 68/576) endpoint-v2 tests::endpoint_v2::set_delegate::test_set_delegate
|
|
283
|
+
PASS [ 0.017s] ( 69/576) endpoint-v2 tests::endpoint_v2::set_zro::test_set_zro
|
|
284
|
+
PASS [ 0.019s] ( 70/576) endpoint-v2 tests::endpoint_v2::transfer_ownership::test_transfer_ownership
|
|
285
|
+
PASS [ 0.015s] ( 71/576) endpoint-v2 tests::endpoint_v2::ttl_config::test_is_ttl_config_frozen_default_false
|
|
286
|
+
PASS [ 0.017s] ( 72/576) endpoint-v2 tests::endpoint_v2::ttl_config::test_freeze_ttl_config_requires_owner
|
|
287
|
+
PASS [ 0.019s] ( 73/576) endpoint-v2 tests::endpoint_v2::ttl_config::test_freeze_ttl_config_already_frozen
|
|
288
|
+
PASS [ 0.018s] ( 74/576) endpoint-v2 tests::endpoint_v2::ttl_config::test_freeze_ttl_config_success
|
|
289
|
+
PASS [ 0.107s] ( 75/576) counter integration_tests::test_with_sml::test_increment_composed_aba
|
|
290
|
+
PASS [ 0.037s] ( 76/576) endpoint-v2 tests::endpoint_v2::send::test_send_returns_correct_guid
|
|
291
|
+
PASS [ 0.017s] ( 77/576) endpoint-v2 tests::endpoint_v2::ttl_config::test_panic_set_ttl_config_exceeds_max_ttl
|
|
292
|
+
PASS [ 0.037s] ( 78/576) endpoint-v2 tests::endpoint_v2::send::test_send_with_native_fee_and_refund
|
|
293
|
+
PASS [ 0.042s] ( 79/576) endpoint-v2 tests::endpoint_v2::send::test_send_increments_nonce_sequentially
|
|
294
|
+
PASS [ 0.035s] ( 80/576) endpoint-v2 tests::endpoint_v2::send::test_send_with_native_fee_exact_payment
|
|
295
|
+
PASS [ 0.040s] ( 81/576) endpoint-v2 tests::endpoint_v2::send::test_send_to_different_receivers
|
|
296
|
+
PASS [ 0.040s] ( 82/576) endpoint-v2 tests::endpoint_v2::send::test_send_with_custom_send_library
|
|
297
|
+
PASS [ 0.017s] ( 83/576) endpoint-v2 tests::endpoint_v2::ttl_config::test_panic_set_ttl_config_invalid_instance_range
|
|
298
|
+
PASS [ 0.017s] ( 84/576) endpoint-v2 tests::endpoint_v2::ttl_config::test_set_ttl_config_requires_owner
|
|
299
|
+
PASS [ 0.022s] ( 85/576) endpoint-v2 tests::endpoint_v2::ttl_config::test_set_ttl_config_fails_when_frozen
|
|
300
|
+
PASS [ 0.016s] ( 86/576) endpoint-v2 tests::endpoint_v2::verifiable::test_verifiable_with_higher_nonce
|
|
301
|
+
PASS [ 0.020s] ( 87/576) endpoint-v2 tests::endpoint_v2::ttl_config::test_set_ttl_config_success
|
|
302
|
+
PASS [ 0.019s] ( 88/576) endpoint-v2 tests::endpoint_v2::verifiable::test_verifiable_after_skip
|
|
303
|
+
PASS [ 0.019s] ( 89/576) endpoint-v2 tests::endpoint_v2::verifiable::test_verifiable_with_new_path
|
|
304
|
+
PASS [ 0.021s] ( 90/576) endpoint-v2 tests::endpoint_v2::ttl_config::test_set_ttl_config_then_freeze
|
|
305
|
+
PASS [ 0.019s] ( 91/576) endpoint-v2 tests::endpoint_v2::zro::test_zro_after_set
|
|
306
|
+
PASS [ 0.017s] ( 92/576) endpoint-v2 tests::message_lib_manager::register_library::test_register_library_is_unsupported_interface
|
|
307
|
+
PASS [ 0.020s] ( 93/576) endpoint-v2 tests::endpoint_v2::zro::test_zro_when_not_set
|
|
308
|
+
PASS [ 0.020s] ( 94/576) endpoint-v2 tests::message_lib_manager::register_library::test_register_library
|
|
309
|
+
PASS [ 0.021s] ( 95/576) endpoint-v2 tests::message_lib_manager::register_library::test_register_library_is_already_registered
|
|
310
|
+
PASS [ 0.017s] ( 96/576) endpoint-v2 tests::message_lib_manager::register_library::test_register_library_without_owner_auth
|
|
311
|
+
PASS [ 0.026s] ( 97/576) endpoint-v2 tests::endpoint_v2::verify::test_verify_stores_payload_hash
|
|
312
|
+
PASS [ 0.026s] ( 98/576) endpoint-v2 tests::endpoint_v2::verify::test_verify_success
|
|
313
|
+
PASS [ 0.030s] ( 99/576) endpoint-v2 tests::endpoint_v2::verify::test_verify_multiple_nonces
|
|
314
|
+
PASS [ 0.016s] (100/576) endpoint-v2 tests::message_lib_manager::require_registered::test_require_registered_with_unregistered_lib
|
|
315
|
+
PASS [ 0.024s] (101/576) endpoint-v2 tests::message_lib_manager::register_library::test_register_library_owner_auth
|
|
316
|
+
PASS [ 0.016s] (102/576) endpoint-v2 tests::message_lib_manager::require_supported_eid::test_require_supported_eid_with_non_deployed_lib
|
|
317
|
+
PASS [ 0.021s] (103/576) endpoint-v2 tests::message_lib_manager::require_registered::test_require_registered_with_registered_lib
|
|
318
|
+
PASS [ 0.018s] (104/576) endpoint-v2 tests::message_lib_manager::require_supported_eid::test_require_supported_eid_with_unsupported
|
|
319
|
+
PASS [ 0.019s] (105/576) endpoint-v2 tests::message_lib_manager::set_config::test_set_config_delegate_auth
|
|
320
|
+
PASS [ 0.019s] (106/576) endpoint-v2 tests::message_lib_manager::set_config::test_set_config_oapp_auth
|
|
321
|
+
PASS [ 0.022s] (107/576) endpoint-v2 tests::message_lib_manager::set_default_receive_lib_timeout::test_set_default_receive_lib_timeout_invalid_expiry_equal_timestamp
|
|
322
|
+
PASS [ 0.023s] (108/576) endpoint-v2 tests::message_lib_manager::set_default_receive_lib_timeout::test_set_default_receive_lib_timeout_invalid_expiry
|
|
323
|
+
PASS [ 0.017s] (109/576) endpoint-v2 tests::message_lib_manager::set_default_receive_library::test_set_default_receive_library_non_deployed_lib
|
|
324
|
+
PASS [ 0.021s] (110/576) endpoint-v2 tests::message_lib_manager::set_default_receive_lib_timeout::test_set_default_receive_lib_timeout_requires_owner_auth
|
|
325
|
+
PASS [ 0.020s] (111/576) endpoint-v2 tests::message_lib_manager::set_default_receive_lib_timeout::test_set_default_receive_lib_timeout_unregistered_lib
|
|
326
|
+
PASS [ 0.020s] (112/576) endpoint-v2 tests::message_lib_manager::set_default_receive_lib_timeout::test_set_default_receive_lib_timeout_wrong_lib_type
|
|
327
|
+
PASS [ 0.024s] (113/576) endpoint-v2 tests::message_lib_manager::set_default_receive_lib_timeout::test_set_default_receive_lib_timeout_success
|
|
328
|
+
PASS [ 0.023s] (114/576) endpoint-v2 tests::message_lib_manager::set_default_receive_lib_timeout::test_set_default_receive_lib_timeout_success_with_none
|
|
329
|
+
PASS [ 0.022s] (115/576) endpoint-v2 tests::message_lib_manager::set_default_receive_lib_timeout::test_set_default_receive_lib_timeout_unsupported_eid
|
|
330
|
+
PASS [ 0.021s] (116/576) endpoint-v2 tests::message_lib_manager::set_default_receive_library::test_set_default_receive_library_requires_owner_auth
|
|
331
|
+
PASS [ 0.018s] (117/576) endpoint-v2 tests::message_lib_manager::set_default_receive_library::test_set_default_receive_library_unregistered_lib
|
|
332
|
+
PASS [ 0.023s] (118/576) endpoint-v2 tests::message_lib_manager::set_default_receive_library::test_set_default_receive_library_success
|
|
333
|
+
PASS [ 0.025s] (119/576) endpoint-v2 tests::message_lib_manager::set_default_receive_library::test_set_default_receive_library_same_value
|
|
334
|
+
PASS [ 0.021s] (120/576) endpoint-v2 tests::message_lib_manager::set_default_receive_library::test_set_default_receive_library_unsupported_eid
|
|
335
|
+
PASS [ 0.024s] (121/576) endpoint-v2 tests::message_lib_manager::set_default_receive_library::test_set_default_receive_library_with_send_and_receive_type
|
|
336
|
+
PASS [ 0.018s] (122/576) endpoint-v2 tests::message_lib_manager::set_default_send_library::test_set_default_send_library_non_deployed_lib
|
|
337
|
+
PASS [ 0.029s] (123/576) endpoint-v2 tests::message_lib_manager::set_default_receive_library::test_set_default_receive_library_success_with_grace_period
|
|
338
|
+
PASS [ 0.021s] (124/576) endpoint-v2 tests::message_lib_manager::set_default_receive_library::test_set_default_receive_library_wrong_lib_type
|
|
339
|
+
PASS [ 0.017s] (125/576) endpoint-v2 tests::message_lib_manager::set_default_send_library::test_set_default_send_library_unregistered_lib
|
|
340
|
+
PASS [ 0.022s] (126/576) endpoint-v2 tests::message_lib_manager::set_default_send_library::test_set_default_send_library_requires_owner_auth
|
|
341
|
+
PASS [ 0.023s] (127/576) endpoint-v2 tests::message_lib_manager::set_default_send_library::test_set_default_send_library_same_value
|
|
342
|
+
PASS [ 0.022s] (128/576) endpoint-v2 tests::message_lib_manager::set_default_send_library::test_set_default_send_library_unsupported_eid
|
|
343
|
+
PASS [ 0.022s] (129/576) endpoint-v2 tests::message_lib_manager::set_default_send_library::test_set_default_send_library_wrong_lib_type
|
|
344
|
+
PASS [ 0.022s] (130/576) endpoint-v2 tests::message_lib_manager::set_receive_library::test_set_receive_library_grace_period_requires_both_libs
|
|
345
|
+
PASS [ 0.024s] (131/576) endpoint-v2 tests::message_lib_manager::set_receive_library::test_set_receive_library_clear_library
|
|
346
|
+
PASS [ 0.028s] (132/576) endpoint-v2 tests::message_lib_manager::set_default_send_library::test_set_default_send_library_success
|
|
347
|
+
PASS [ 0.023s] (133/576) endpoint-v2 tests::message_lib_manager::set_receive_library::test_set_receive_library_requires_oapp_auth
|
|
348
|
+
PASS [ 0.018s] (134/576) endpoint-v2 tests::message_lib_manager::set_receive_library::test_set_receive_library_unregistered_lib
|
|
349
|
+
PASS [ 0.025s] (135/576) endpoint-v2 tests::message_lib_manager::set_receive_library::test_set_receive_library_success_no_grace_period
|
|
350
|
+
PASS [ 0.027s] (136/576) endpoint-v2 tests::message_lib_manager::set_receive_library::test_set_receive_library_same_value
|
|
351
|
+
PASS [ 0.022s] (137/576) endpoint-v2 tests::message_lib_manager::set_receive_library::test_set_receive_library_unsupported_eid
|
|
352
|
+
PASS [ 0.022s] (138/576) endpoint-v2 tests::message_lib_manager::set_receive_library::test_set_receive_library_wrong_lib_type
|
|
353
|
+
PASS [ 0.030s] (139/576) endpoint-v2 tests::message_lib_manager::set_receive_library::test_set_receive_library_success_with_grace_period
|
|
354
|
+
PASS [ 0.024s] (140/576) endpoint-v2 tests::message_lib_manager::set_send_library::test_set_send_library_requires_oapp_auth
|
|
355
|
+
PASS [ 0.023s] (141/576) endpoint-v2 tests::message_lib_manager::set_send_library::test_set_send_library_same_value
|
|
356
|
+
PASS [ 0.020s] (142/576) endpoint-v2 tests::messaging_channel::burn::test_burn_at_lazy_nonce_boundary
|
|
357
|
+
PASS [ 0.026s] (143/576) endpoint-v2 tests::message_lib_manager::set_receive_library_timeout::test_set_receive_library_timeout_success
|
|
358
|
+
PASS [ 0.019s] (144/576) endpoint-v2 tests::messaging_channel::burn::test_burn_success
|
|
359
|
+
PASS [ 0.021s] (145/576) endpoint-v2 tests::messaging_channel::burn::test_burn_with_delegate
|
|
360
|
+
PASS [ 0.026s] (146/576) endpoint-v2 tests::message_lib_manager::set_send_library::test_set_send_library_success
|
|
361
|
+
PASS [ 0.024s] (147/576) endpoint-v2 tests::messaging_channel::burn::test_burn_multiple_payloads
|
|
362
|
+
PASS [ 0.020s] (148/576) endpoint-v2 tests::messaging_channel::clear::test_clear_success
|
|
363
|
+
PASS [ 0.025s] (149/576) endpoint-v2 tests::messaging_channel::clear::test_clear_multiple_sequential
|
|
364
|
+
PASS [ 0.019s] (150/576) endpoint-v2 tests::messaging_channel::clear::test_panic_clear_unauthorized
|
|
365
|
+
PASS [ 0.021s] (151/576) endpoint-v2 tests::messaging_channel::clear::test_clear_with_delegate
|
|
366
|
+
PASS [ 0.030s] (152/576) endpoint-v2 tests::messaging_channel::burn::test_burn_different_paths
|
|
367
|
+
PASS [ 0.020s] (153/576) endpoint-v2 tests::messaging_channel::clear::test_panic_clear_wrong_guid
|
|
368
|
+
PASS [ 0.021s] (154/576) endpoint-v2 tests::messaging_channel::clear::test_panic_clear_wrong_message
|
|
369
|
+
PASS [ 0.016s] (155/576) endpoint-v2 tests::messaging_channel::inbound_nonce::test_inbound_nonce_initial_value
|
|
370
|
+
PASS [ 0.020s] (156/576) endpoint-v2 tests::messaging_channel::inbound_nonce::test_inbound_nonce_after_payload_removal
|
|
371
|
+
PASS [ 0.019s] (157/576) endpoint-v2 tests::messaging_channel::inbound_nonce::test_inbound_nonce_no_payload_hash_at_lazy_nonce_plus_one
|
|
372
|
+
PASS [ 0.016s] (158/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_after_removal
|
|
373
|
+
PASS [ 0.018s] (159/576) endpoint-v2 tests::messaging_channel::inbound_nonce::test_inbound_nonce_with_lazy_nonce_only
|
|
374
|
+
PASS [ 0.021s] (160/576) endpoint-v2 tests::messaging_channel::inbound_nonce::test_inbound_nonce_with_gap_in_payload_hashes
|
|
375
|
+
PASS [ 0.017s] (161/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_after_setting
|
|
376
|
+
PASS [ 0.020s] (162/576) endpoint-v2 tests::messaging_channel::inbound_nonce::test_inbound_nonce_with_zero_lazy_nonce_and_payload_hashes
|
|
377
|
+
PASS [ 0.028s] (163/576) endpoint-v2 tests::messaging_channel::inbound_nonce::test_inbound_nonce_different_paths
|
|
378
|
+
PASS [ 0.025s] (164/576) endpoint-v2 tests::messaging_channel::inbound_nonce::test_inbound_nonce_with_consecutive_payload_hashes
|
|
379
|
+
PASS [ 0.019s] (165/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_different_senders
|
|
380
|
+
PASS [ 0.019s] (166/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_different_receivers
|
|
381
|
+
PASS [ 0.020s] (167/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_different_nonces
|
|
382
|
+
PASS [ 0.016s] (168/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_not_set
|
|
383
|
+
PASS [ 0.018s] (169/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_max_hash
|
|
384
|
+
PASS [ 0.020s] (170/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_different_src_eids
|
|
385
|
+
PASS [ 0.017s] (171/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_overwrite
|
|
386
|
+
PASS [ 0.024s] (172/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_multiple_paths_independence
|
|
387
|
+
PASS [ 0.020s] (173/576) endpoint-v2 tests::messaging_channel::inbound_payload_hash::test_inbound_payload_hash_zero_hash
|
|
388
|
+
PASS [ 0.018s] (174/576) endpoint-v2 tests::messaging_channel::internal::test_clear_payload_not_stored
|
|
389
|
+
PASS [ 0.020s] (175/576) endpoint-v2 tests::messaging_channel::internal::test_clear_payload_missing_intermediate_nonce
|
|
390
|
+
PASS [ 0.017s] (176/576) endpoint-v2 tests::messaging_channel::internal::test_clear_payload_success
|
|
391
|
+
PASS [ 0.019s] (177/576) endpoint-v2 tests::messaging_channel::internal::test_clear_payload_sequential
|
|
392
|
+
PASS [ 0.019s] (178/576) endpoint-v2 tests::messaging_channel::internal::test_clear_payload_wrong_payload
|
|
393
|
+
PASS [ 0.017s] (179/576) endpoint-v2 tests::messaging_channel::internal::test_inbound_empty_payload_hash
|
|
394
|
+
PASS [ 0.020s] (180/576) endpoint-v2 tests::messaging_channel::internal::test_clear_payload_with_lazy_nonce_update
|
|
395
|
+
PASS [ 0.020s] (181/576) endpoint-v2 tests::messaging_channel::internal::test_inbound_success
|
|
396
|
+
PASS [ 0.019s] (182/576) endpoint-v2 tests::messaging_channel::lazy_inbound_nonce::test_lazy_inbound_nonce_after_setting
|
|
397
|
+
PASS [ 0.021s] (183/576) endpoint-v2 tests::messaging_channel::internal::test_outbound
|
|
398
|
+
PASS [ 0.019s] (184/576) endpoint-v2 tests::messaging_channel::lazy_inbound_nonce::test_lazy_inbound_nonce_different_receivers
|
|
399
|
+
PASS [ 0.020s] (185/576) endpoint-v2 tests::messaging_channel::lazy_inbound_nonce::test_lazy_inbound_nonce_different_senders
|
|
400
|
+
PASS [ 0.020s] (186/576) endpoint-v2 tests::messaging_channel::lazy_inbound_nonce::test_lazy_inbound_nonce_different_src_eids
|
|
401
|
+
PASS [ 0.018s] (187/576) endpoint-v2 tests::messaging_channel::lazy_inbound_nonce::test_lazy_inbound_nonce_incremental_updates
|
|
402
|
+
PASS [ 0.017s] (188/576) endpoint-v2 tests::messaging_channel::lazy_inbound_nonce::test_lazy_inbound_nonce_large_values
|
|
403
|
+
PASS [ 0.018s] (189/576) endpoint-v2 tests::messaging_channel::lazy_inbound_nonce::test_lazy_inbound_nonce_initial_value
|
|
404
|
+
PASS [ 0.017s] (190/576) endpoint-v2 tests::messaging_channel::lazy_inbound_nonce::test_lazy_inbound_nonce_overwrite
|
|
405
|
+
PASS [ 0.017s] (191/576) endpoint-v2 tests::messaging_channel::next_guid::test_next_guid_basic
|
|
406
|
+
PASS [ 0.017s] (192/576) endpoint-v2 tests::messaging_channel::next_guid::test_next_guid_after_outbound_increment
|
|
407
|
+
PASS [ 0.016s] (193/576) endpoint-v2 tests::messaging_channel::next_guid::test_next_guid_different_dst_eids
|
|
408
|
+
PASS [ 0.021s] (194/576) endpoint-v2 tests::messaging_channel::lazy_inbound_nonce::test_lazy_inbound_nonce_multiple_paths_independence
|
|
409
|
+
PASS [ 0.023s] (195/576) endpoint-v2 tests::messaging_channel::lazy_inbound_nonce::test_lazy_inbound_nonce_zero_value
|
|
410
|
+
PASS [ 0.017s] (196/576) endpoint-v2 tests::messaging_channel::next_guid::test_next_guid_large_nonce
|
|
411
|
+
PASS [ 0.018s] (197/576) endpoint-v2 tests::messaging_channel::next_guid::test_next_guid_different_senders
|
|
412
|
+
PASS [ 0.017s] (198/576) endpoint-v2 tests::messaging_channel::next_guid::test_next_guid_sequential_calls
|
|
413
|
+
PASS [ 0.020s] (199/576) endpoint-v2 tests::messaging_channel::next_guid::test_next_guid_different_receivers
|
|
414
|
+
PASS [ 0.019s] (200/576) endpoint-v2 tests::messaging_channel::next_guid::test_next_guid_with_existing_nonce
|
|
415
|
+
PASS [ 0.021s] (201/576) endpoint-v2 tests::messaging_channel::nilify::test_nilify_multiple_payloads
|
|
416
|
+
PASS [ 0.020s] (202/576) endpoint-v2 tests::messaging_channel::nilify::test_nilify_success_with_empty_payload
|
|
417
|
+
PASS [ 0.018s] (203/576) endpoint-v2 tests::messaging_channel::outbound_nonce::test_outbound_nonce_after_setting
|
|
418
|
+
PASS [ 0.018s] (204/576) endpoint-v2 tests::messaging_channel::outbound_nonce::test_outbound_nonce_different_dst_eids
|
|
419
|
+
PASS [ 0.021s] (205/576) endpoint-v2 tests::messaging_channel::nilify::test_nilify_with_delegate
|
|
420
|
+
PASS [ 0.022s] (206/576) endpoint-v2 tests::messaging_channel::nilify::test_nilify_success_with_stored_payload
|
|
421
|
+
PASS [ 0.019s] (207/576) endpoint-v2 tests::messaging_channel::outbound_nonce::test_outbound_nonce_different_senders
|
|
422
|
+
PASS [ 0.028s] (208/576) endpoint-v2 tests::messaging_channel::nilify::test_nilify_different_paths
|
|
423
|
+
PASS [ 0.021s] (209/576) endpoint-v2 tests::messaging_channel::outbound_nonce::test_outbound_nonce_different_receivers
|
|
424
|
+
PASS [ 0.016s] (210/576) endpoint-v2 tests::messaging_channel::outbound_nonce::test_outbound_nonce_initial_value
|
|
425
|
+
PASS [ 0.017s] (211/576) endpoint-v2 tests::messaging_channel::outbound_nonce::test_outbound_nonce_large_values
|
|
426
|
+
PASS [ 0.089s] (212/576) endpoint-v2 tests::messaging_channel::inbound_nonce::test_inbound_nonce_large_consecutive_sequence
|
|
427
|
+
PASS [ 0.019s] (213/576) endpoint-v2 tests::messaging_channel::outbound_nonce::test_outbound_nonce_incremental_updates
|
|
428
|
+
PASS [ 0.023s] (214/576) endpoint-v2 tests::messaging_channel::outbound_nonce::test_outbound_nonce_multiple_paths_independence
|
|
429
|
+
PASS [ 0.023s] (215/576) endpoint-v2 tests::messaging_channel::skip::test_skip_multiple_nonces
|
|
430
|
+
PASS [ 0.020s] (216/576) endpoint-v2 tests::messaging_channel::skip::test_skip_success
|
|
431
|
+
PASS [ 0.029s] (217/576) endpoint-v2 tests::messaging_channel::skip::test_skip_different_paths
|
|
432
|
+
PASS [ 0.022s] (218/576) endpoint-v2 tests::messaging_channel::skip::test_skip_with_delegate
|
|
433
|
+
PASS [ 0.021s] (219/576) endpoint-v2 tests::messaging_composer::clear_compose::test_clear_compose_sequential_operations
|
|
434
|
+
PASS [ 0.019s] (220/576) endpoint-v2 tests::messaging_composer::compose_queue::test_compose_queue_different_keys
|
|
435
|
+
PASS [ 0.021s] (221/576) endpoint-v2 tests::messaging_composer::compose_queue::test_compose_queue_after_send
|
|
436
|
+
PASS [ 0.019s] (222/576) endpoint-v2 tests::messaging_composer::compose_queue::test_compose_queue_empty_message
|
|
437
|
+
PASS [ 0.024s] (223/576) endpoint-v2 tests::messaging_composer::clear_compose::test_clear_compose_empty_message
|
|
438
|
+
PASS [ 0.022s] (224/576) endpoint-v2 tests::messaging_composer::clear_compose::test_clear_compose_success
|
|
439
|
+
PASS [ 0.022s] (225/576) endpoint-v2 tests::messaging_composer::compose_queue::test_compose_queue_after_clear
|
|
440
|
+
PASS [ 0.024s] (226/576) endpoint-v2 tests::messaging_composer::clear_compose::test_clear_compose_multiple_messages
|
|
441
|
+
PASS [ 0.018s] (227/576) endpoint-v2 tests::messaging_composer::compose_queue::test_compose_queue_none_initially
|
|
442
|
+
PASS [ 0.020s] (228/576) endpoint-v2 tests::messaging_composer::lz_compose_alert::test_lz_compose_alert_large_values
|
|
443
|
+
PASS [ 0.025s] (229/576) endpoint-v2 tests::messaging_composer::compose_queue::test_compose_queue_multiple_indices
|
|
444
|
+
PASS [ 0.006s] (230/576) endpoint-v2 tests::util::compute_guid::test_compute_guid
|
|
445
|
+
PASS [ 0.023s] (231/576) endpoint-v2 tests::messaging_composer::lz_compose_alert::test_lz_compose_alert_multiple_alerts
|
|
446
|
+
PASS [ 0.020s] (232/576) endpoint-v2 tests::messaging_composer::lz_compose_alert::test_lz_compose_alert_success
|
|
447
|
+
PASS [ 0.019s] (233/576) endpoint-v2 tests::messaging_composer::lz_compose_alert::test_lz_compose_alert_zero_values
|
|
448
|
+
PASS [ 0.015s] (234/576) endpoint-v2 tests::util::build_payload::test_build_payload_empty_message
|
|
449
|
+
PASS [ 0.016s] (235/576) endpoint-v2 tests::util::build_payload::test_build_payload_all_zero_guid
|
|
450
|
+
PASS [ 0.016s] (236/576) endpoint-v2 tests::util::build_payload::test_build_payload
|
|
451
|
+
PASS [ 0.016s] (237/576) endpoint-v2 tests::util::build_payload::test_build_payload_large_message
|
|
452
|
+
PASS [ 0.017s] (238/576) endpoint-v2 tests::util::build_payload::test_build_payload_basic
|
|
453
|
+
PASS [ 0.016s] (239/576) endpoint-v2 tests::util::build_payload::test_build_payload_single_byte_message
|
|
454
|
+
PASS [ 0.024s] (240/576) endpoint-v2 tests::messaging_composer::send_compose::test_send_compose_different_guids
|
|
455
|
+
PASS [ 0.023s] (241/576) endpoint-v2 tests::messaging_composer::send_compose::test_send_compose_different_indices
|
|
456
|
+
PASS [ 0.023s] (242/576) endpoint-v2 tests::messaging_composer::send_compose::test_send_compose_empty_message
|
|
457
|
+
PASS [ 0.021s] (243/576) endpoint-v2 tests::messaging_composer::send_compose::test_send_compose_success
|
|
458
|
+
PASS [ 0.019s] (244/576) endpoint-v2 tests::util::build_payload::test_build_payload_preserves_message_order
|
|
459
|
+
PASS [ 0.015s] (245/576) endpoint-v2 tests::util::compute_guid::test_compute_guid_basic
|
|
460
|
+
PASS [ 0.006s] (246/576) message-lib-common tests::packet_codec_v1::test_empty_message
|
|
461
|
+
PASS [ 0.005s] (247/576) message-lib-common tests::packet_codec_v1::test_encode_decode_packet_header
|
|
462
|
+
PASS [ 0.005s] (248/576) message-lib-common tests::packet_codec_v1::test_invalid_packet_version
|
|
463
|
+
PASS [ 0.006s] (249/576) message-lib-common tests::packet_codec_v1::test_header_getters
|
|
464
|
+
PASS [ 0.007s] (250/576) message-lib-common tests::packet_codec_v1::test_invalid_header_length
|
|
465
|
+
PASS [ 0.006s] (251/576) message-lib-common tests::packet_codec_v1::test_large_message
|
|
466
|
+
PASS [ 0.017s] (252/576) endpoint-v2 tests::util::keccak256::test_keccak256_all_zeros
|
|
467
|
+
PASS [ 0.016s] (253/576) endpoint-v2 tests::util::keccak256::test_keccak256_basic
|
|
468
|
+
PASS [ 0.017s] (254/576) endpoint-v2 tests::util::compute_guid::test_compute_guid_different_nonces
|
|
469
|
+
PASS [ 0.006s] (255/576) message-lib-common tests::packet_codec_v1::test_payload_functions
|
|
470
|
+
PASS [ 0.021s] (256/576) endpoint-v2 tests::util::compute_guid::test_compute_guid_deterministic
|
|
471
|
+
PASS [ 0.005s] (257/576) message-lib-common tests::worker_options::test_decode_invalid_options_too_short
|
|
472
|
+
PASS [ 0.006s] (258/576) message-lib-common tests::worker_options::test_decode_invalid_worker_id
|
|
473
|
+
PASS [ 0.016s] (259/576) endpoint-v2 tests::util::keccak256::test_keccak256_different_messages
|
|
474
|
+
PASS [ 0.016s] (260/576) endpoint-v2 tests::util::keccak256::test_keccak256_empty_message
|
|
475
|
+
PASS [ 0.016s] (261/576) endpoint-v2 tests::util::keccak256::test_keccak256_single_byte
|
|
476
|
+
PASS [ 0.005s] (262/576) message-lib-common tests::worker_options::test_get_matching_options
|
|
477
|
+
PASS [ 0.006s] (263/576) message-lib-common tests::worker_options::test_decode_legacy_options_type_2
|
|
478
|
+
PASS [ 0.016s] (264/576) endpoint-v2 tests::util::keccak256::test_keccak256_very_long_message
|
|
479
|
+
PASS [ 0.007s] (265/576) message-lib-common tests::worker_options::test_decode_legacy_options_type_1
|
|
480
|
+
PASS [ 0.005s] (266/576) message-lib-common tests::worker_options::test_legacy_type1_invalid_size_too_long
|
|
481
|
+
PASS [ 0.018s] (267/576) endpoint-v2 tests::util::keccak256::test_keccak256_deterministic
|
|
482
|
+
PASS [ 0.017s] (268/576) endpoint-v2 tests::util::keccak256::test_keccak256_large_message
|
|
483
|
+
PASS [ 0.006s] (269/576) message-lib-common tests::worker_options::test_group_dvn_options_by_index
|
|
484
|
+
PASS [ 0.008s] (270/576) message-lib-common tests::worker_options::test_legacy_type1_gas_overflow
|
|
485
|
+
PASS [ 0.005s] (271/576) message-lib-common tests::worker_options::test_legacy_type2_gas_overflow
|
|
486
|
+
PASS [ 0.006s] (272/576) message-lib-common tests::worker_options::test_legacy_type2_amount_overflow
|
|
487
|
+
PASS [ 0.005s] (273/576) message-lib-common tests::worker_options::test_legacy_type2_invalid_size_too_short
|
|
488
|
+
PASS [ 0.006s] (274/576) message-lib-common tests::worker_options::test_legacy_type2_invalid_size_too_long
|
|
489
|
+
PASS [ 0.005s] (275/576) message-lib-common tests::worker_options::test_split_worker_options_executor_only
|
|
490
|
+
PASS [ 0.005s] (276/576) message-lib-common tests::worker_options::test_split_worker_options_dvn_only
|
|
491
|
+
PASS [ 0.005s] (277/576) message-lib-common tests::worker_options::test_split_worker_options_options
|
|
492
|
+
PASS [ 0.005s] (278/576) message-lib-common tests::worker_options::test_split_worker_options_using_legacy_option
|
|
493
|
+
PASS [ 0.006s] (279/576) message-lib-common tests::worker_options::test_unsupported_option_type
|
|
494
|
+
PASS [ 0.011s] (280/576) message-lib-common tests::worker_options::test_legacy_type1_invalid_size_too_short
|
|
495
|
+
PASS [ 0.009s] (281/576) oapp tests::test_oapp_core::test_get_peer_returns_none_for_unset_eid
|
|
496
|
+
PASS [ 0.010s] (282/576) oapp tests::test_oapp_core::test_set_delegate
|
|
497
|
+
PASS [ 0.007s] (283/576) oapp tests::test_oapp_options_type3::test_combine_options_with_empty_extra
|
|
498
|
+
PASS [ 0.010s] (284/576) oapp tests::test_oapp_core::test_set_delegate_unauthorized
|
|
499
|
+
PASS [ 0.007s] (285/576) oapp tests::test_oapp_options_type3::test_combine_options_with_empty_enforced
|
|
500
|
+
PASS [ 0.009s] (286/576) oapp tests::test_oapp_core::test_set_peer_unauthorized
|
|
501
|
+
PASS [ 0.014s] (287/576) oapp tests::test_oapp_core::test_get_endpoint
|
|
502
|
+
PASS [ 0.013s] (288/576) oapp tests::test_oapp_core::test_get_peer_success
|
|
503
|
+
PASS [ 0.009s] (289/576) oapp tests::test_oapp_options_type3::test_get_enforced_options_for_unset_combination
|
|
504
|
+
PASS [ 0.011s] (290/576) oapp tests::test_oapp_core::test_set_peer
|
|
505
|
+
PASS [ 0.010s] (291/576) oapp tests::test_oapp_options_type3::test_combine_options_both_present
|
|
506
|
+
PASS [ 0.009s] (292/576) oapp tests::test_oapp_options_type3::test_set_enforced_options_unauthorized
|
|
507
|
+
PASS [ 0.011s] (293/576) oapp tests::test_oapp_core::test_update_peer
|
|
508
|
+
PASS [ 0.008s] (294/576) oapp tests::test_oapp_receiver::test_allow_initialize_path_with_no_peer_set
|
|
509
|
+
PASS [ 0.011s] (295/576) oapp tests::test_oapp_receiver::test_allow_initialize_path_with_matching_peer
|
|
510
|
+
PASS [ 0.013s] (296/576) oapp tests::test_oapp_options_type3::test_set_and_get_enforced_options
|
|
511
|
+
PASS [ 0.012s] (297/576) oapp tests::test_oapp_options_type3::test_update_enforced_options
|
|
512
|
+
PASS [ 0.005s] (298/576) oapp-macros::test_macros test_macros_compile
|
|
513
|
+
PASS [ 0.008s] (299/576) oapp tests::test_oapp_receiver::test_is_compose_msg_sender_different_contract
|
|
514
|
+
PASS [ 0.008s] (300/576) oapp tests::test_oapp_receiver::test_assert_allowed_peer_no_peer
|
|
515
|
+
PASS [ 0.009s] (301/576) oapp tests::test_oapp_receiver::test_is_compose_msg_sender_same_contract
|
|
516
|
+
PASS [ 0.010s] (302/576) oapp tests::test_oapp_receiver::test_allow_initialize_path_with_non_matching_peer
|
|
517
|
+
PASS [ 0.010s] (303/576) oapp tests::test_oapp_receiver::test_assert_allowed_peer_wrong_sender
|
|
518
|
+
PASS [ 0.015s] (304/576) simple-message-lib test::test_fee_recipient
|
|
519
|
+
PASS [ 0.014s] (305/576) simple-message-lib test::test_quote_with_native_fee_only
|
|
520
|
+
PASS [ 0.014s] (306/576) simple-message-lib test::test_quote
|
|
521
|
+
PASS [ 0.015s] (307/576) simple-message-lib test::test_native_fee
|
|
522
|
+
PASS [ 0.019s] (308/576) oapp tests::test_oapp_sender::test_quote_with_peer_set
|
|
523
|
+
PASS [ 0.011s] (309/576) treasury tests::treasury_tests::test_complete_workflow
|
|
524
|
+
PASS [ 0.020s] (310/576) oapp tests::test_oapp_sender::test_quote_without_peer_panics
|
|
525
|
+
PASS [ 0.015s] (311/576) simple-message-lib test::test_quote_with_zro_fee
|
|
526
|
+
PASS [ 0.021s] (312/576) oapp tests::test_oapp_sender::test_pay_native_insufficient_balance
|
|
527
|
+
PASS [ 0.015s] (313/576) simple-message-lib test::test_zro_fee
|
|
528
|
+
PASS [ 0.017s] (314/576) simple-message-lib test::test_send_returns_native_fee_recipient
|
|
529
|
+
PASS [ 0.024s] (315/576) oapp tests::test_oapp_sender::test_lz_send_native_only
|
|
530
|
+
PASS [ 0.018s] (316/576) simple-message-lib test::test_send
|
|
531
|
+
PASS [ 0.007s] (317/576) treasury tests::treasury_tests::test_get_fee_disabled_by_default
|
|
532
|
+
PASS [ 0.027s] (318/576) oapp tests::test_oapp_sender::test_pay_native
|
|
533
|
+
PASS [ 0.010s] (319/576) treasury tests::treasury_tests::test_get_fee_rejects_negative_total_native_fee
|
|
534
|
+
PASS [ 0.011s] (320/576) treasury tests::treasury_tests::test_get_fee_native_payment_enabled
|
|
535
|
+
PASS [ 0.008s] (321/576) treasury tests::treasury_tests::test_set_fee_enabled_not_owner
|
|
536
|
+
PASS [ 0.030s] (322/576) oapp tests::test_oapp_sender::test_lz_send_with_zro
|
|
537
|
+
PASS [ 0.011s] (323/576) treasury tests::treasury_tests::test_get_fee_zro_payment_requires_fee_lib
|
|
538
|
+
PASS [ 0.008s] (324/576) treasury tests::treasury_tests::test_set_native_fee_bp_invalid
|
|
539
|
+
PASS [ 0.011s] (325/576) treasury tests::treasury_tests::test_set_fee_enabled
|
|
540
|
+
PASS [ 0.013s] (326/576) treasury tests::treasury_tests::test_fee_calculation_edge_cases
|
|
541
|
+
PASS [ 0.008s] (327/576) treasury tests::treasury_tests::test_set_native_fee_bp_not_owner
|
|
542
|
+
PASS [ 0.011s] (328/576) treasury tests::treasury_tests::test_set_native_fee_bp
|
|
543
|
+
PASS [ 0.026s] (329/576) simple-message-lib test::test_send_returns_both_fee_recipients_with_zro
|
|
544
|
+
PASS [ 0.013s] (330/576) treasury tests::treasury_tests::test_precision_and_rounding
|
|
545
|
+
PASS [ 0.009s] (331/576) treasury tests::treasury_tests::test_set_zro_fee_lib_invalid_address
|
|
546
|
+
PASS [ 0.009s] (332/576) treasury tests::treasury_tests::test_set_zro_fee_lib_not_owner
|
|
547
|
+
PASS [ 0.010s] (333/576) treasury tests::treasury_tests::test_set_zro_fee_lib
|
|
548
|
+
PASS [ 0.009s] (334/576) treasury tests::treasury_tests::test_treasury_initialization
|
|
549
|
+
PASS [ 0.005s] (335/576) uln302 tests::config::oapp_uln_config::test_apply_default_all_custom
|
|
550
|
+
PASS [ 0.011s] (336/576) treasury tests::treasury_tests::test_view_functions_consistency
|
|
551
|
+
PASS [ 0.006s] (337/576) uln302 tests::config::oapp_uln_config::test_apply_default_all_defaults
|
|
552
|
+
PASS [ 0.006s] (338/576) uln302 tests::config::oapp_uln_config::test_apply_default_custom_confirmations_only
|
|
553
|
+
PASS [ 0.006s] (339/576) uln302 tests::config::oapp_uln_config::test_apply_default_custom_optional_dvns_only
|
|
554
|
+
PASS [ 0.005s] (340/576) uln302 tests::config::oapp_uln_config::test_apply_default_custom_required_dvns_only
|
|
555
|
+
PASS [ 0.006s] (341/576) uln302 tests::config::oapp_uln_config::test_apply_default_empty_custom_dvns
|
|
556
|
+
PASS [ 0.005s] (342/576) uln302 tests::config::oapp_uln_config::test_apply_default_mix_1
|
|
557
|
+
PASS [ 0.015s] (343/576) treasury tests::treasury_tests::test_withdraw_token_invalid_amount_negative
|
|
558
|
+
PASS [ 0.005s] (344/576) uln302 tests::config::oapp_uln_config::test_apply_default_mix_2
|
|
559
|
+
PASS [ 0.018s] (345/576) treasury tests::treasury_tests::test_withdraw_token_entire_balance
|
|
560
|
+
PASS [ 0.006s] (346/576) uln302 tests::config::oapp_uln_config::test_apply_default_preserves_dvn_addresses
|
|
561
|
+
PASS [ 0.018s] (347/576) treasury tests::treasury_tests::test_withdraw_token_insufficient_balance
|
|
562
|
+
PASS [ 0.018s] (348/576) treasury tests::treasury_tests::test_withdraw_token_invalid_amount_zero
|
|
563
|
+
PASS [ 0.019s] (349/576) treasury tests::treasury_tests::test_withdraw_token_events_emitted
|
|
564
|
+
PASS [ 0.019s] (350/576) treasury tests::treasury_tests::test_withdraw_token_invalid_recipient
|
|
565
|
+
PASS [ 0.018s] (351/576) treasury tests::treasury_tests::test_withdraw_token_not_owner
|
|
566
|
+
PASS [ 0.009s] (352/576) uln302 tests::config::oapp_uln_config::test_apply_default_zero_confirmations
|
|
567
|
+
PASS [ 0.021s] (353/576) treasury tests::treasury_tests::test_withdraw_token_partial_amount
|
|
568
|
+
PASS [ 0.022s] (354/576) treasury tests::treasury_tests::test_withdraw_token_multiple_withdrawals
|
|
569
|
+
PASS [ 0.021s] (355/576) treasury tests::treasury_tests::test_withdraw_token_valid
|
|
570
|
+
PASS [ 0.010s] (356/576) uln302 tests::config::uln_config::test_assert_beyond_max_dvns
|
|
571
|
+
PASS [ 0.007s] (357/576) uln302 tests::config::uln_config::test_validate_at_least_one_dvn_with_required_dvns
|
|
572
|
+
PASS [ 0.008s] (358/576) uln302 tests::config::uln_config::test_validate_at_least_one_dvn_has_no_dvns
|
|
573
|
+
PASS [ 0.009s] (359/576) uln302 tests::config::uln_config::test_exactly_127_optional_dvns_should_pass
|
|
574
|
+
PASS [ 0.009s] (360/576) uln302 tests::config::uln_config::test_exactly_127_required_dvns_should_pass
|
|
575
|
+
PASS [ 0.007s] (361/576) uln302 tests::config::uln_config::test_validate_default_config
|
|
576
|
+
PASS [ 0.008s] (362/576) uln302 tests::config::uln_config::test_validate_at_least_one_dvn_with_optional_dvns
|
|
577
|
+
PASS [ 0.007s] (363/576) uln302 tests::config::uln_config::test_validate_at_least_one_dvn_with_optional_dvns_and_threshold_0
|
|
578
|
+
PASS [ 0.008s] (364/576) uln302 tests::config::uln_config::test_validate_default_config_has_invalid_optional_dvn_threshold
|
|
579
|
+
PASS [ 0.012s] (365/576) uln302 tests::config::uln_config::test_assert_beyond_max_dvns_with_optional_dvns
|
|
580
|
+
PASS [ 0.028s] (366/576) treasury tests::treasury_tests::test_withdraw_token_multiple_tokens
|
|
581
|
+
PASS [ 0.007s] (367/576) uln302 tests::config::uln_config::test_validate_default_config_has_optional_duplicates
|
|
582
|
+
PASS [ 0.011s] (368/576) uln302 tests::config::uln_config::test_validate_default_config_has_invalid_optional_dvn_count
|
|
583
|
+
PASS [ 0.007s] (369/576) uln302 tests::config::uln_config::test_validate_default_config_has_required_duplicates
|
|
584
|
+
PASS [ 0.007s] (370/576) uln302 tests::config::uln_config::test_validate_default_config_has_zero_threshold_with_optional_dvns
|
|
585
|
+
PASS [ 0.010s] (371/576) uln302 tests::config::uln_config::test_validate_default_config_has_invalid_required_dvn_count
|
|
586
|
+
PASS [ 0.009s] (372/576) uln302 tests::config::uln_config::test_validate_default_config_zero_dvns
|
|
587
|
+
PASS [ 0.011s] (373/576) uln302 tests::receive_uln302::confirmations::test_verification_returns_none_for_missing
|
|
588
|
+
PASS [ 0.014s] (374/576) uln302 tests::receive_uln302::confirmations::test_verification_returns_stored_data
|
|
589
|
+
PASS [ 0.011s] (375/576) uln302 tests::receive_uln302::set_default_receive_uln_configs::test_set_default_receive_uln_configs_assert_default_config
|
|
590
|
+
PASS [ 0.011s] (376/576) uln302 tests::receive_uln302::set_default_receive_uln_configs::test_set_default_receive_uln_configs_authorization
|
|
591
|
+
PASS [ 0.015s] (377/576) uln302 tests::receive_uln302::effective_receive_uln_config::test_effective_receive_uln_config_with_default_only
|
|
592
|
+
PASS [ 0.014s] (378/576) uln302 tests::receive_uln302::set_default_receive_uln_configs::test_default_receive_uln_config_not_found
|
|
593
|
+
PASS [ 0.021s] (379/576) uln302 tests::receive_uln302::commit_verification::test_commit_verification_invalid_eid_should_fail
|
|
594
|
+
PASS [ 0.021s] (380/576) uln302 tests::receive_uln302::effective_receive_uln_config::test_effective_receive_uln_config_must_have_at_least_one_dvn
|
|
595
|
+
PASS [ 0.021s] (381/576) uln302 tests::receive_uln302::commit_verification::test_commit_clears_verification_storage
|
|
596
|
+
PASS [ 0.021s] (382/576) uln302 tests::receive_uln302::commit_verification::test_commit_second_time_fails
|
|
597
|
+
PASS [ 0.022s] (383/576) uln302 tests::receive_uln302::confirmations::test_verification_after_multiple_dvns
|
|
598
|
+
PASS [ 0.015s] (384/576) uln302 tests::receive_uln302::verifiable::test_verifiable_invalid_eid
|
|
599
|
+
PASS [ 0.024s] (385/576) uln302 tests::receive_uln302::effective_receive_uln_config::test_effective_receive_uln_config_with_custom_config
|
|
600
|
+
PASS [ 0.021s] (386/576) uln302 tests::receive_uln302::set_default_receive_uln_configs::test_set_default_receive_uln_configs
|
|
601
|
+
PASS [ 0.019s] (387/576) uln302 tests::receive_uln302::verifiable::test_not_verifiable_missing_required_dvn
|
|
602
|
+
PASS [ 0.022s] (388/576) uln302 tests::receive_uln302::verifiable::test_not_verifiable_insufficient_confirmations
|
|
603
|
+
PASS [ 0.020s] (389/576) uln302 tests::receive_uln302::verifiable::test_not_verifiable_optional_threshold_not_met
|
|
604
|
+
PASS [ 0.015s] (390/576) uln302 tests::receive_uln302::verify::test_verify_same_dvn_can_overwrite_verification
|
|
605
|
+
PASS [ 0.022s] (391/576) uln302 tests::receive_uln302::verifiable::test_verifiable_optional_threshold_zero
|
|
606
|
+
PASS [ 0.016s] (392/576) uln302 tests::receive_uln302::verify::test_verify_emits_event
|
|
607
|
+
PASS [ 0.017s] (393/576) uln302 tests::receive_uln302::verify::test_verify_multiple_dvns_same_payload
|
|
608
|
+
PASS [ 0.017s] (394/576) uln302 tests::receive_uln302::verify::test_verify_stores_verification_correctly
|
|
609
|
+
PASS [ 0.021s] (395/576) uln302 tests::receive_uln302::verifiable::test_verifiable_with_higher_confirmations
|
|
610
|
+
PASS [ 0.018s] (396/576) uln302 tests::receive_uln302::verifiable::test_verifiable_with_optional_dvns_only
|
|
611
|
+
PASS [ 0.024s] (397/576) uln302 tests::receive_uln302::verifiable::test_verifiable_partial_optional_verification
|
|
612
|
+
PASS [ 0.025s] (398/576) uln302 tests::receive_uln302::verifiable::test_verifiable_with_all_required_dvns
|
|
613
|
+
PASS [ 0.026s] (399/576) uln302 tests::receive_uln302::verifiable::test_verifiable_with_mixed_dvns
|
|
614
|
+
PASS [ 0.016s] (400/576) uln302 tests::send_uln302::effective_executor_config::test_effective_executor_config_with_default_only
|
|
615
|
+
PASS [ 0.021s] (401/576) uln302 tests::send_uln302::effective_send_uln_config::test_effective_send_uln_config_must_have_at_least_one_dvn
|
|
616
|
+
PASS [ 0.025s] (402/576) uln302 tests::send_uln302::effective_send_uln_config::test_effective_send_uln_config_with_custom_config
|
|
617
|
+
PASS [ 0.031s] (403/576) uln302 tests::send_uln302::effective_executor_config::test_effective_executor_config_with_custom_executor
|
|
618
|
+
PASS [ 0.021s] (404/576) uln302 tests::send_uln302::quote::test_quote_edge_case_everything_free
|
|
619
|
+
PASS [ 0.031s] (405/576) uln302 tests::send_uln302::effective_executor_config::test_effective_executor_config_fully_custom
|
|
620
|
+
PASS [ 0.030s] (406/576) uln302 tests::send_uln302::effective_executor_config::test_effective_executor_config_with_custom_message_size
|
|
621
|
+
PASS [ 0.022s] (407/576) uln302 tests::send_uln302::effective_send_uln_config::test_effective_send_uln_config_with_default_only
|
|
622
|
+
PASS [ 0.022s] (408/576) uln302 tests::send_uln302::quote::test_quote_edge_case_executor_only_charges
|
|
623
|
+
PASS [ 0.024s] (409/576) uln302 tests::send_uln302::quote::test_quote_edge_case_zero_dvn_fees_multiple_dvns
|
|
624
|
+
PASS [ 0.028s] (410/576) uln302 tests::send_uln302::quote::test_quote_multiple_dvns
|
|
625
|
+
PASS [ 0.030s] (411/576) uln302 tests::send_uln302::quote::test_quote_exceeding_message_size
|
|
626
|
+
PASS [ 0.027s] (412/576) uln302 tests::send_uln302::quote::test_quote_with_bad_options
|
|
627
|
+
PASS [ 0.031s] (413/576) uln302 tests::send_uln302::quote::test_quote_single_dvn
|
|
628
|
+
PASS [ 0.029s] (414/576) uln302 tests::send_uln302::quote::test_quote_with_missing_dvn_options
|
|
629
|
+
PASS [ 0.028s] (415/576) uln302 tests::send_uln302::quote::test_quote_with_missing_executor_options
|
|
630
|
+
PASS [ 0.028s] (416/576) uln302 tests::send_uln302::quote::test_quote_with_only_optional_dvns
|
|
631
|
+
PASS [ 0.029s] (417/576) uln302 tests::send_uln302::quote::test_quote_with_zro_fee
|
|
632
|
+
PASS [ 0.011s] (418/576) uln302 tests::send_uln302::set_default_executor_configs::test_default_executor_config_not_found
|
|
633
|
+
PASS [ 0.010s] (419/576) uln302 tests::send_uln302::set_default_executor_configs::test_set_default_executor_configs_zero_message_size
|
|
634
|
+
PASS [ 0.010s] (420/576) uln302 tests::send_uln302::set_default_executor_configs::test_set_default_executor_configs_authorization
|
|
635
|
+
PASS [ 0.029s] (421/576) uln302 tests::send_uln302::send::test_send_from_non_endpoint
|
|
636
|
+
PASS [ 0.029s] (422/576) uln302 tests::send_uln302::send::test_send_exceeding_message_size
|
|
637
|
+
PASS [ 0.034s] (423/576) uln302 tests::send_uln302::send::test_send_derives_from_quote
|
|
638
|
+
PASS [ 0.011s] (424/576) uln302 tests::send_uln302::set_default_send_uln_configs::test_default_send_uln_config_not_found
|
|
639
|
+
PASS [ 0.033s] (425/576) uln302 tests::send_uln302::send::test_send_events_emittance_with_zro
|
|
640
|
+
PASS [ 0.028s] (426/576) uln302 tests::send_uln302::send::test_send_with_bad_options
|
|
641
|
+
PASS [ 0.019s] (427/576) uln302 tests::send_uln302::set_default_executor_configs::test_set_default_executor_configs
|
|
642
|
+
PASS [ 0.032s] (428/576) uln302 tests::send_uln302::send::test_send_multiple_dvns
|
|
643
|
+
PASS [ 0.032s] (429/576) uln302 tests::send_uln302::send::test_send_single_dvn
|
|
644
|
+
PASS [ 0.012s] (430/576) uln302 tests::send_uln302::set_default_send_uln_configs::test_set_default_send_uln_configs_assert_default_config
|
|
645
|
+
PASS [ 0.012s] (431/576) uln302 tests::send_uln302::set_default_send_uln_configs::test_set_default_send_uln_configs_authorization
|
|
646
|
+
PASS [ 0.037s] (432/576) uln302 tests::send_uln302::send::test_send_events_emittance
|
|
647
|
+
PASS [ 0.010s] (433/576) uln302 tests::uln302::get_app_receive_uln_config::test_get_oapp_receive_uln_config_not_found
|
|
648
|
+
PASS [ 0.031s] (434/576) uln302 tests::send_uln302::send::test_send_with_missing_dvn_options
|
|
649
|
+
PASS [ 0.031s] (435/576) uln302 tests::send_uln302::send::test_send_with_only_optional_dvns
|
|
650
|
+
PASS [ 0.032s] (436/576) uln302 tests::send_uln302::send::test_send_with_missing_executor_options
|
|
651
|
+
PASS [ 0.012s] (437/576) uln302 tests::uln302::get_app_send_uln_config::test_get_oapp_send_uln_config_not_found
|
|
652
|
+
PASS [ 0.011s] (438/576) uln302 tests::uln302::set_config::test_is_supported_eid_initially_false
|
|
653
|
+
PASS [ 0.020s] (439/576) uln302 tests::send_uln302::set_default_send_uln_configs::test_set_default_send_uln_configs
|
|
654
|
+
PASS [ 0.011s] (440/576) uln302 tests::uln302::set_config::test_set_config_unsupported_eid_should_fail
|
|
655
|
+
PASS [ 0.015s] (441/576) uln302 tests::uln302::get_oapp_executor_config::test_get_oapp_executor_config_not_found
|
|
656
|
+
PASS [ 0.025s] (442/576) uln302 tests::uln302::get_app_receive_uln_config::test_get_oapp_receive_uln_config
|
|
657
|
+
PASS [ 0.021s] (443/576) uln302 tests::uln302::set_config::test_is_supported_eid_true_after_configs
|
|
658
|
+
PASS [ 0.026s] (444/576) uln302 tests::uln302::get_app_send_uln_config::test_get_oapp_send_uln_config
|
|
659
|
+
PASS [ 0.021s] (445/576) uln302 tests::uln302::set_config::test_set_receive_config_invalid_confirmations_use_default_but_nonzero
|
|
660
|
+
PASS [ 0.022s] (446/576) uln302 tests::uln302::set_config::test_set_config_invalid_type_should_fail
|
|
661
|
+
PASS [ 0.021s] (447/576) uln302 tests::uln302::set_config::test_set_receive_config_invalid_optional_dvns_use_default_but_threshold_nonzero
|
|
662
|
+
PASS [ 0.028s] (448/576) uln302 tests::uln302::get_oapp_executor_config::test_get_oapp_executor_config
|
|
663
|
+
PASS [ 0.021s] (449/576) uln302 tests::uln302::set_config::test_set_receive_config_invalid_required_dvns_use_default_but_not_empty
|
|
664
|
+
PASS [ 0.029s] (450/576) uln302 tests::uln302::set_config::test_config_management_comprehensive
|
|
665
|
+
PASS [ 0.022s] (451/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_multiple_errors_confirmations_first
|
|
666
|
+
PASS [ 0.021s] (452/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_optional_dvns_threshold_greater_than_dvns
|
|
667
|
+
PASS [ 0.023s] (453/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_confirmations_use_default_but_nonzero
|
|
668
|
+
PASS [ 0.024s] (454/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_optional_dvns_duplicates
|
|
669
|
+
PASS [ 0.022s] (455/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_optional_dvns_threshold_zero_with_dvns
|
|
670
|
+
PASS [ 0.027s] (456/576) uln302 tests::uln302::set_config::test_set_receive_config_valid_all_custom
|
|
671
|
+
PASS [ 0.025s] (457/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_optional_dvns_too_many
|
|
672
|
+
PASS [ 0.022s] (458/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_optional_dvns_use_default_but_dvns_not_empty
|
|
673
|
+
PASS [ 0.022s] (459/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_required_dvns_duplicates
|
|
674
|
+
PASS [ 0.024s] (460/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_optional_dvns_use_default_but_threshold_nonzero
|
|
675
|
+
PASS [ 0.021s] (461/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_required_dvns_use_default_but_not_empty
|
|
676
|
+
PASS [ 0.026s] (462/576) uln302 tests::uln302::set_config::test_set_send_config_invalid_required_dvns_too_many
|
|
677
|
+
PASS [ 0.024s] (463/576) uln302 tests::uln302::set_config::test_set_send_config_valid_all_custom
|
|
678
|
+
PASS [ 0.005s] (464/576) utils tests::buffer_reader::test_len
|
|
679
|
+
PASS [ 0.023s] (465/576) uln302 tests::uln302::set_config::test_set_send_config_valid_confirmations_custom_with_any_value
|
|
680
|
+
PASS [ 0.015s] (466/576) uln302 tests::uln302::set_config::test_supported_eid_combinations_only_receive_config
|
|
681
|
+
PASS [ 0.006s] (467/576) utils tests::buffer_reader::test_len_empty_buffer
|
|
682
|
+
PASS [ 0.024s] (468/576) uln302 tests::uln302::set_config::test_set_send_config_valid_optional_dvns_custom
|
|
683
|
+
PASS [ 0.005s] (469/576) utils tests::buffer_reader::test_len_unchanged_after_read
|
|
684
|
+
PASS [ 0.010s] (470/576) uln302 tests::uln302::set_config::test_version
|
|
685
|
+
PASS [ 0.005s] (471/576) utils tests::buffer_reader::test_new_buffer_reader
|
|
686
|
+
PASS [ 0.027s] (472/576) uln302 tests::uln302::set_config::test_set_send_config_valid_confirmations_use_default_with_zero
|
|
687
|
+
PASS [ 0.005s] (473/576) utils tests::buffer_reader::test_read
|
|
688
|
+
PASS [ 0.017s] (474/576) uln302 tests::uln302::set_config::test_supported_eid_combinations_only_send_config
|
|
689
|
+
PASS [ 0.005s] (475/576) utils tests::buffer_reader::test_read_address_insufficient_bytes_empty
|
|
690
|
+
PASS [ 0.005s] (476/576) utils tests::buffer_reader::test_read_address_contract_roundtrip
|
|
691
|
+
PASS [ 0.024s] (477/576) uln302 tests::uln302::set_config::test_set_send_config_valid_optional_dvns_use_default
|
|
692
|
+
PASS [ 0.006s] (478/576) utils tests::buffer_reader::test_read_address_account_roundtrip
|
|
693
|
+
PASS [ 0.005s] (479/576) utils tests::buffer_reader::test_read_address_insufficient_bytes_partial
|
|
694
|
+
PASS [ 0.005s] (480/576) utils tests::buffer_reader::test_read_address_with_other_data_roundtrip
|
|
695
|
+
PASS [ 0.005s] (481/576) utils tests::buffer_reader::test_read_after_buffer_exhausted
|
|
696
|
+
PASS [ 0.022s] (482/576) uln302 tests::uln302::set_config::test_supported_eid_combinations_both_configs
|
|
697
|
+
PASS [ 0.023s] (483/576) uln302 tests::uln302::set_config::test_set_send_config_valid_required_dvns_use_default_with_empty
|
|
698
|
+
PASS [ 0.006s] (484/576) utils tests::buffer_reader::test_read_address_mixed_types_roundtrip
|
|
699
|
+
PASS [ 0.029s] (485/576) uln302 tests::uln302::set_config::test_set_send_config_valid_optional_dvns_custom_empty
|
|
700
|
+
PASS [ 0.005s] (486/576) utils tests::buffer_reader::test_read_bytes_n
|
|
701
|
+
PASS [ 0.005s] (487/576) utils tests::buffer_reader::test_read_bytes_n_address_pattern
|
|
702
|
+
PASS [ 0.006s] (488/576) utils tests::buffer_reader::test_read_arbitrary_size
|
|
703
|
+
PASS [ 0.005s] (489/576) utils tests::buffer_reader::test_read_bytes_n_zeros
|
|
704
|
+
PASS [ 0.005s] (490/576) utils tests::buffer_reader::test_read_bytes_n_all_ones
|
|
705
|
+
PASS [ 0.005s] (491/576) utils tests::buffer_reader::test_read_bytes_n_different_sizes
|
|
706
|
+
PASS [ 0.005s] (492/576) utils tests::buffer_reader::test_read_bytes_until_end_empty
|
|
707
|
+
PASS [ 0.030s] (493/576) uln302 tests::uln302::set_config::test_set_send_config_valid_required_dvns_custom
|
|
708
|
+
PASS [ 0.006s] (494/576) utils tests::buffer_reader::test_read_bytes_until_end
|
|
709
|
+
PASS [ 0.005s] (495/576) utils tests::buffer_reader::test_read_entire_buffer
|
|
710
|
+
PASS [ 0.006s] (496/576) utils tests::buffer_reader::test_read_bytes_until_end_updates_position
|
|
711
|
+
PASS [ 0.005s] (497/576) utils tests::buffer_reader::test_read_multiple_u16
|
|
712
|
+
PASS [ 0.006s] (498/576) utils tests::buffer_reader::test_read_insufficient_bytes_after_partial_read
|
|
713
|
+
PASS [ 0.007s] (499/576) utils tests::buffer_reader::test_read_insufficient_bytes
|
|
714
|
+
PASS [ 0.008s] (500/576) utils tests::buffer_reader::test_read_bytes_until_end_entire_buffer
|
|
715
|
+
PASS [ 0.005s] (501/576) utils tests::buffer_reader::test_read_multiple_u64
|
|
716
|
+
PASS [ 0.006s] (502/576) utils tests::buffer_reader::test_read_multiple_u32
|
|
717
|
+
PASS [ 0.005s] (503/576) utils tests::buffer_reader::test_read_multiple_u8
|
|
718
|
+
PASS [ 0.005s] (504/576) utils tests::buffer_reader::test_read_u128
|
|
719
|
+
PASS [ 0.005s] (505/576) utils tests::buffer_reader::test_read_u128_max_value
|
|
720
|
+
PASS [ 0.006s] (506/576) utils tests::buffer_reader::test_read_single_byte
|
|
721
|
+
PASS [ 0.005s] (507/576) utils tests::buffer_reader::test_read_u16
|
|
722
|
+
PASS [ 0.005s] (508/576) utils tests::buffer_reader::test_read_u16_insufficient_bytes_empty
|
|
723
|
+
PASS [ 0.006s] (509/576) utils tests::buffer_reader::test_read_u128_specific_value
|
|
724
|
+
PASS [ 0.005s] (510/576) utils tests::buffer_reader::test_read_u16_zero
|
|
725
|
+
PASS [ 0.007s] (511/576) utils tests::buffer_reader::test_read_u16_max_value
|
|
726
|
+
PASS [ 0.006s] (512/576) utils tests::buffer_reader::test_read_u256
|
|
727
|
+
PASS [ 0.005s] (513/576) utils tests::buffer_reader::test_read_u256_insufficient_bytes
|
|
728
|
+
PASS [ 0.005s] (514/576) utils tests::buffer_reader::test_read_u256_max_value
|
|
729
|
+
PASS [ 0.008s] (515/576) utils tests::buffer_reader::test_read_u128_zero
|
|
730
|
+
PASS [ 0.006s] (516/576) utils tests::buffer_reader::test_read_u256_zero
|
|
731
|
+
PASS [ 0.009s] (517/576) utils tests::buffer_reader::test_read_u16_insufficient_bytes_one
|
|
732
|
+
PASS [ 0.005s] (518/576) utils tests::buffer_reader::test_read_u32_insufficient_bytes_one
|
|
733
|
+
PASS [ 0.006s] (519/576) utils tests::buffer_reader::test_read_u32_insufficient_bytes_empty
|
|
734
|
+
PASS [ 0.005s] (520/576) utils tests::buffer_reader::test_read_u32_zero
|
|
735
|
+
PASS [ 0.005s] (521/576) utils tests::buffer_reader::test_read_u32_max_value
|
|
736
|
+
PASS [ 0.007s] (522/576) utils tests::buffer_reader::test_read_u32
|
|
737
|
+
PASS [ 0.006s] (523/576) utils tests::buffer_reader::test_read_u32_insufficient_bytes_partial
|
|
738
|
+
PASS [ 0.005s] (524/576) utils tests::buffer_reader::test_read_u64_insufficient_bytes_only_four
|
|
739
|
+
PASS [ 0.007s] (525/576) utils tests::buffer_reader::test_read_u64
|
|
740
|
+
PASS [ 0.006s] (526/576) utils tests::buffer_reader::test_read_u64_insufficient_bytes_empty
|
|
741
|
+
PASS [ 0.005s] (527/576) utils tests::buffer_reader::test_read_u64_insufficient_bytes_partial
|
|
742
|
+
PASS [ 0.006s] (528/576) utils tests::buffer_reader::test_read_u64_max_value
|
|
743
|
+
PASS [ 0.006s] (529/576) utils tests::buffer_reader::test_read_u8_insufficient_bytes
|
|
744
|
+
PASS [ 0.006s] (530/576) utils tests::buffer_reader::test_read_u8
|
|
745
|
+
PASS [ 0.008s] (531/576) utils tests::buffer_reader::test_read_u64_zero
|
|
746
|
+
PASS [ 0.006s] (532/576) utils tests::buffer_reader::test_read_u8_max_value
|
|
747
|
+
PASS [ 0.006s] (533/576) utils tests::buffer_reader::test_read_u8_zero
|
|
748
|
+
PASS [ 0.005s] (534/576) utils tests::buffer_reader::test_rewind
|
|
749
|
+
PASS [ 0.005s] (535/576) utils tests::buffer_reader::test_remaining_empty_buffer
|
|
750
|
+
PASS [ 0.006s] (536/576) utils tests::buffer_reader::test_remaining_initial
|
|
751
|
+
PASS [ 0.006s] (537/576) utils tests::buffer_reader::test_remaining_after_rewind
|
|
752
|
+
PASS [ 0.006s] (538/576) utils tests::buffer_reader::test_rewind_chaining
|
|
753
|
+
PASS [ 0.005s] (539/576) utils tests::buffer_reader::test_sequential_reads
|
|
754
|
+
PASS [ 0.005s] (540/576) utils tests::buffer_reader::test_rewind_to_start
|
|
755
|
+
PASS [ 0.006s] (541/576) utils tests::buffer_reader::test_remaining_after_read
|
|
756
|
+
PASS [ 0.006s] (542/576) utils tests::buffer_reader::test_sequential_reads_run_out_of_bytes
|
|
757
|
+
PASS [ 0.005s] (543/576) utils tests::buffer_reader::test_sequential_reads_with_u128_and_bytes32
|
|
758
|
+
PASS [ 0.005s] (544/576) utils tests::buffer_writer::test_chaining
|
|
759
|
+
PASS [ 0.005s] (545/576) utils tests::buffer_writer::test_from_bytes
|
|
760
|
+
PASS [ 0.005s] (546/576) utils tests::buffer_writer::test_roundtrip_primitives
|
|
761
|
+
PASS [ 0.006s] (547/576) utils tests::buffer_writer::test_roundtrip_bytes_n
|
|
762
|
+
PASS [ 0.005s] (548/576) utils tests::buffer_writer::test_write_address_contract
|
|
763
|
+
PASS [ 0.005s] (549/576) utils tests::buffer_writer::test_roundtrip_u256
|
|
764
|
+
PASS [ 0.008s] (550/576) utils tests::buffer_writer::test_new_buffer_writer
|
|
765
|
+
PASS [ 0.006s] (551/576) utils tests::buffer_writer::test_write_bool_false
|
|
766
|
+
PASS [ 0.005s] (552/576) utils tests::buffer_writer::test_write_bool_true
|
|
767
|
+
PASS [ 0.006s] (553/576) utils tests::buffer_writer::test_write_address_roundtrip
|
|
768
|
+
PASS [ 0.006s] (554/576) utils tests::buffer_writer::test_write_bytes
|
|
769
|
+
PASS [ 0.007s] (555/576) utils tests::buffer_writer::test_write_address_account
|
|
770
|
+
PASS [ 0.008s] (556/576) utils tests::buffer_writer::test_roundtrip_address
|
|
771
|
+
PASS [ 0.005s] (557/576) utils tests::buffer_writer::test_write_bytes_n
|
|
772
|
+
PASS [ 0.006s] (558/576) utils tests::buffer_writer::test_write_u128
|
|
773
|
+
PASS [ 0.005s] (559/576) utils tests::buffer_writer::test_write_u16
|
|
774
|
+
PASS [ 0.005s] (560/576) utils tests::buffer_writer::test_write_u256
|
|
775
|
+
PASS [ 0.005s] (561/576) utils tests::buffer_writer::test_write_u32
|
|
776
|
+
PASS [ 0.007s] (562/576) utils tests::buffer_writer::test_write_bytes_n_different_sizes
|
|
777
|
+
PASS [ 0.005s] (563/576) utils tests::buffer_writer::test_write_u8
|
|
778
|
+
PASS [ 0.006s] (564/576) utils tests::buffer_writer::test_write_u64
|
|
779
|
+
PASS [ 0.006s] (565/576) utils tests::bytes_ext::test_to_array_empty_to_empty
|
|
780
|
+
PASS [ 0.005s] (566/576) utils tests::bytes_ext::test_to_array_single_byte
|
|
781
|
+
PASS [ 0.005s] (567/576) utils tests::bytes_ext::test_to_array_empty_to_non_empty
|
|
782
|
+
PASS [ 0.005s] (568/576) utils tests::bytes_ext::test_to_array_length_mismatch_too_long
|
|
783
|
+
PASS [ 0.005s] (569/576) utils tests::bytes_ext::test_to_array_exact_length
|
|
784
|
+
PASS [ 0.005s] (570/576) utils tests::bytes_ext::test_to_array_preserves_order
|
|
785
|
+
PASS [ 0.006s] (571/576) utils tests::bytes_ext::test_to_array_length_mismatch_too_short
|
|
786
|
+
PASS [ 0.007s] (572/576) utils tests::ownable::test_call_no_owner_set
|
|
787
|
+
PASS [ 0.006s] (573/576) utils tests::ownable::test_set_owner_when_already_set
|
|
788
|
+
PASS [ 0.008s] (574/576) utils tests::ownable::test_non_owner_cannot_call
|
|
789
|
+
PASS [ 0.007s] (575/576) utils tests::ownable::test_owner_can_call
|
|
790
|
+
PASS [ 0.008s] (576/576) utils tests::ownable::test_transfer_ownership
|
|
791
|
+
────────────
|
|
792
|
+
Summary [ 0.602s] 576 tests run: 576 passed, 0 skipped
|
|
793
|
+
⏱️ bash -c cargo nextest run: 2:17.539 (m:ss.mmm)
|
|
794
|
+
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
795
|
+
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
796
|
+
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|