Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests should not depend on hashmap iteration order #1

Closed
workingjubilee opened this issue Aug 11, 2024 · 1 comment
Closed

Tests should not depend on hashmap iteration order #1

workingjubilee opened this issue Aug 11, 2024 · 1 comment

Comments

@workingjubilee
Copy link

workingjubilee commented Aug 11, 2024

Hi! Your test suite depends on iterating over the stdlib's HashMap<K, V, S> but we generate random state for every map unless it overrides the S parameter, meaning each time they are built and run, you get different hashing. This is intentional to prevent common exploits. But we also would like hashing details to not slow down common uses like iteration, so when you iterate over a hashmap, you get an "arbitrary order", which means that iteration of a hashmap with S = RandomState visits keys in a different order each time.

This results in this sort of thing happening to your tests:

[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.01s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/rwini-93436e769e484a05)
[INFO] [stdout] 
[INFO] [stdout] running 2 tests
[INFO] [stdout] test parser::test::ini_parser::test_parse ... ok
[INFO] [stdout] test data::test::test_ini_to_string ... FAILED
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- data::test::test_ini_to_string stdout ----
[INFO] [stdout] thread 'data::test::test_ini_to_string' panicked at src/data/mod.rs:13:5:
[INFO] [stdout] assertion `left == right` failed
[INFO] [stdout]   left: "[core]\nkey:value\nname:1"
[INFO] [stdout]  right: "[core]\nname:1\nkey:value"

You may wish to consider some manner of sorting before comparing in your test.

@zerodegress
Copy link
Owner

Roger that. I'll try to improve it ASAP.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants