kafka_client 0.1.2

A pure Rust Kafka client library with SASL authentication support
Documentation
name: CI

on:
  push:
    branches: [main, master]
  pull_request:
    branches: [main, master]
  workflow_dispatch:

env:
  CARGO_TERM_COLOR: always
  RUST_BACKTRACE: 1
  KAFKA_IMAGE: apache/kafka:4.3.0
  KAFKA_CLI: docker

jobs:
  unit-tests:
    name: Unit Tests
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Install Rust toolchain
        uses: dtolnay/rust-toolchain@stable
        with:
          components: rustfmt, clippy

      - name: Cache cargo dependencies
        uses: Swatinem/rust-cache@v2

      - name: Build
        run: cargo build --all-targets

      - name: Run unit tests
        run: cargo test --lib

      - name: Check formatting
        run: cargo fmt -- --check

  msrv-check:
    name: MSRV Check (Rust 1.85)
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Install Rust 1.85
        uses: dtolnay/rust-toolchain@1.85

      - name: Cache cargo dependencies
        uses: Swatinem/rust-cache@v2

      - name: Build with MSRV
        run: cargo build --all-targets

  integration-tests-single-node:
    name: Integration Tests (single-node)
    runs-on: ubuntu-latest
    services:
      kafka:
        image: ${{ env.KAFKA_IMAGE }}
        ports:
          - 29092:9092
        env:
          KAFKA_NODE_ID: 1
          KAFKA_PROCESS_ROLES: broker,controller
          KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092,CONTROLLER://0.0.0.0:9093
          KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://127.0.0.1:29092
          KAFKA_CONTROLLER_LISTENER_NAMES: CONTROLLER
          KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT
          KAFKA_CONTROLLER_QUORUM_VOTERS: 1@127.0.0.1:9093
          KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
          KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
          KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
          KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
          KAFKA_GROUP_COORDINATOR_REBALANCE_PROTOCOLS: classic
          KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false"
          CLUSTER_ID: MkU3OEVBNTcwNTJENDM2Qk
        options: >-
          --health-cmd "/opt/kafka/bin/kafka-broker-api-versions.sh --bootstrap-server 127.0.0.1:9092"
          --health-interval 5s
          --health-timeout 10s
          --health-retries 12

    steps:
      - uses: actions/checkout@v4

      - name: Install Rust toolchain
        uses: dtolnay/rust-toolchain@stable

      - name: Cache cargo dependencies
        uses: Swatinem/rust-cache@v2

      - name: Build integration tests
        run: cargo test --no-run --features integration_tests

      - name: Run single-node integration tests
        run: cargo test --features integration_tests -- --nocapture
        env:
          KAFKA_BOOTSTRAP: 127.0.0.1:29092
          KAFKA_CLUSTER_SIZE: 1
          RUST_TEST_THREADS: 1

  integration-tests-cluster:
    name: Integration Tests (cluster)
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Install Rust toolchain
        uses: dtolnay/rust-toolchain@stable

      - name: Cache cargo dependencies
        uses: Swatinem/rust-cache@v2

      - name: Build integration tests
        run: cargo test --no-run --features integration_tests

      - name: Start Kafka cluster
        working-directory: tests
        run: |
          docker compose down -v
          docker compose up -d
          for container in kafka-1 kafka-2 kafka-3; do
            echo -n "  ${container}... "
            for i in $(seq 1 60); do
              if docker exec "${container}" \
                /opt/kafka/bin/kafka-broker-api-versions.sh \
                --bootstrap-server "127.0.0.1:9092" &>/dev/null; then
                echo "ready (~${i}s)"
                break
              fi
              sleep 1
            done
          done

      - name: Run all integration tests against cluster
        run: cargo test --features integration_tests -- --nocapture
        env:
          KAFKA_BOOTSTRAP: 127.0.0.1:29093,127.0.0.1:29095,127.0.0.1:29097
          KAFKA_CLUSTER_SIZE: 3
          RUST_TEST_THREADS: 1

      - name: Dump Kafka logs on failure
        if: failure()
        working-directory: tests
        run: docker compose logs

      - name: Stop Kafka cluster
        if: always()
        working-directory: tests
        run: docker compose down -v