zeph 0.18.2

Lightweight AI agent with hybrid inference, skills-first architecture, and multi-channel I/O
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Integration tests for the HTTP gateway webhook ingestion path (#1026).

/// Start gateway server, POST a webhook payload, and verify the agent receives the event.
///
/// Requires a running agent instance with gateway enabled and Qdrant available.
#[ignore = "requires running gateway and agent"]
#[tokio::test]
async fn gateway_receives_webhook_and_forwards_to_agent() {
    // TODO: spin up GatewayServer on a free port, POST JSON payload, assert agent loop gets event
    todo!("implement gateway webhook loopback integration test")
}