rabbitmqadmin 2.29.0

rabbitmqadmin v2 is a modern CLI tool for the RabbitMQ HTTP API
Documentation
# Contributing

## Running Tests

Most tests require a locally running RabbitMQ node with default ports.
This can be a locally installed package, a [generic binary build](https://rabbitmq.com/docs/install-generic-unix)
or a container that uses the [community OCI image](https://github.com/docker-library/rabbitmq).

### Prerequisites

Install [cargo-nextest](https://nexte.st/):

```bash
cargo install cargo-nextest
```

### Step 1: Start RabbitMQ

```bash
docker run -d --name rabbitmq \
  -p 15672:15672 \
  -p 5672:5672 \
  rabbitmq:4-management
```

Wait for the node to boot:

```bash
sleep 15
```

### Step 2: Pre-configure the Node

Run the setup script using the Docker exec variant of `rabbitmqctl`:

```bash
RUST_HTTP_API_CLIENT_RABBITMQCTL=DOCKER:rabbitmq bin/ci/before_build.sh
```

This enables the required plugins (management, shovel, federation, stream), creates test users,
sets up the `rust/rabbitmqadmin` virtual host, sets the cluster name,
and enables all stable feature flags.

Wait for the changes to apply:

```bash
sleep 10
```

### Step 3: Run All Tests

```bash
NEXTEST_RETRIES=3 cargo nextest run --all-features
```

`NEXTEST_RETRIES=3` retries each failing test up to 3 times.

### Stopping the Node

```bash
docker stop rabbitmq && docker rm rabbitmq
```

---

## Test Structure

Tests are organized into three directories under `tests/`:

 * `tests/integration/`: integration tests that drive the CLI binary and require a running RabbitMQ node
 * `tests/unit/`: unit tests with no external dependencies
 * `tests/proptests/`: property-based tests

### Run Only Unit and Property-Based Tests (No Local RabbitMQ Node Needed)

```bash
cargo nextest run -E 'binary(unit) or binary(proptests)'
```

### Run Only Integration Tests

```bash
NEXTEST_RETRIES=3 cargo nextest run -E 'binary(integration)'
```

### Run a Specific Test

```bash
NEXTEST_RETRIES=3 cargo nextest run -E "test(test_list_all_vhost_limits)"
```