aboutsummaryrefslogtreecommitdiff
path: root/crates/arti/tests/cli_tests/hsc.rs
Commit message (Collapse)AuthorAgeFilesLines
* arti: test: hsc: add test get_fails_if_no_gen_and_no_keyhjrgrn2026-02-171-45/+65
| | | | | | - remove build_hsc_key_cmd in favor of KeyCmd - use KeyCmdBuilder in CTorMigrateCmd::keystore_contains_client_key to remove duplication - adapt hsc.rs to the changes
* cli_tests: Rename tests for clarity and consistencyGabriela Moldovan2026-02-021-3/+3
|
* cli_tests: Fix typo in test nameGabriela Moldovan2026-02-021-2/+2
|
* cli_tests: Clarify a comment in ctor-migrate testGabriela Moldovan2026-02-021-1/+1
|
* cli_tests: Rename test closure for clarityGabriela Moldovan2026-02-021-3/+3
| | | | | The previous name was misleading (the closure asserts the exact opposite).
* Add integration test suite for `hsc ctor-migrate` subcommandhjrgrn2026-02-021-55/+133
|
* Add `hsc key ctor-migrate` subcommandhjrgrn2025-11-241-1/+1
|
* arti: fix deprecation warnings in assert_cmd libSteven Engler2025-10-311-1/+2
| | | | | | | | | | | | ```text warning: use of deprecated associated function `assert_cmd::Command::cargo_bin`: incompatible with a custom cargo build-dir, see instead `cargo::cargo_bin_cmd!` --> crates/arti/tests/cli_tests/hsc.rs:26:28 | 26 | let mut cmd = Command::cargo_bin("arti").unwrap(); | ^^^^^^^^^ | = note: `#[warn(deprecated)]` on by default ```
* Switch Cargo.toml files to edition 2024.Nick Mathewson2025-08-071-6/+10
| | | | | | | | | | | | | | First, run ``` git grep -l "^edition =" | xargs perl -i -pe 's/^edition *=.*/edition = "2024"/;' ``` Second, manually verify that all Cargo.toml files have changed, and nothing else has changed. Third, run cargo fmt again.
* arti: test: Refactor arti integration testhjrgrn2025-05-121-0/+139
* arti: test: Restructure tests directory * arti: dep: Add assert_cmd dev-dependency * arti: test: Update README * doc: Fix hsc documentation