This is an automated email from the ASF dual-hosted git repository.
piotr pushed a change to branch headers_encryption
in repository https://gitbox.apache.org/repos/asf/iggy.git
from b62da5b86 Merge branch 'master' into headers_encryption
add 3e848424b feat(cli): Add context create/delete CLI commands to
complete login/logout workflow (#2998)
add fcc999a6e Merge branch 'master' into headers_encryption
No new revisions were added by this update.
Summary of changes:
Cargo.lock | 1 +
core/cli/Cargo.toml | 4 +
core/cli/src/args/context.rs | 157 +++++++
core/cli/src/commands/binary_context/common.rs | 483 ++++++++++++++++++++-
.../{use_context.rs => create_context.rs} | 57 ++-
.../{use_context.rs => delete_context.rs} | 49 ++-
core/cli/src/commands/binary_context/mod.rs | 2 +
core/cli/src/main.rs | 9 +
core/integration/tests/cli/context/common.rs | 4 +
core/integration/tests/cli/context/mod.rs | 2 +
.../tests/cli/context/test_context_applied.rs | 4 +-
.../cli/context/test_context_create_command.rs | 239 ++++++++++
.../cli/context/test_context_delete_command.rs | 224 ++++++++++
.../tests/cli/context/test_context_list_command.rs | 6 +-
.../tests/cli/context/test_context_use_command.rs | 4 +-
15 files changed, 1198 insertions(+), 47 deletions(-)
copy core/cli/src/commands/binary_context/{use_context.rs =>
create_context.rs} (51%)
copy core/cli/src/commands/binary_context/{use_context.rs =>
delete_context.rs} (61%)
create mode 100644
core/integration/tests/cli/context/test_context_create_command.rs
create mode 100644
core/integration/tests/cli/context/test_context_delete_command.rs