Files
zot/test/blackbox/helpers_events.bash
T
Piaras Hoban bc5fd1a357 feat(events): add events extension (#3045)
* feat: add events config

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* feat: implement event support with log sink

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* feat: integrate events and update tests

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* refactor: update event config

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* feat: implement http and nats sinks. remove log sink

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* refactor: events extension setup

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: cleanup tests to use nil event recorder

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: update events config example and add more logging

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* refactor: better use of build tags for minimal binary

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* fix: missing store param in evelated privileges tests

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* fix: regression in config decoding

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: update check logs script to enable cross-platform usage via GREP_BIN_PATH envvar

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: fix log lint issue for events

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: fix failing events disabled test

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* test: add blackbox tests for events

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: specify architecture when downloading binaries in Makefile

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: improve failure handling when no valid sinks are provided

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* test: fix data race in events test

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: cleanup event decoding

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* test: fix logging tests

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* test: make nats server test more reliable

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: go mod cleanup

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* test: add sleep when setting up nats client

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* fix: ensure event sink errors do not propogate

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* test: increase coverage for events

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* feat(events): Refactor events to be non-blocking from caller.

Signed-off-by: Asgeir Nilsen <asgeir.nilsen@bouvet.no>
Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: remove harded-coded linux

Co-authored-by: Andrei Aaron <andreifdaaron@gmail.com>
Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* feat(events): fail to start if incorrect event sink is configured

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* test: allow cli tests to return errors instead of panic

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

* chore: bump nats server to v2.11.3

Signed-off-by: Piaras Hoban <phoban01@gmail.com>

---------

Signed-off-by: Piaras Hoban <phoban01@gmail.com>
Signed-off-by: Asgeir Nilsen <asgeir.nilsen@bouvet.no>
Co-authored-by: Asgeir Nilsen <asgeir.nilsen@bouvet.no>
Co-authored-by: Andrei Aaron <andreifdaaron@gmail.com>
2025-05-02 12:30:06 -07:00

122 lines
2.7 KiB
Bash

function nats_server_start() {
local cname="$1" # container name
local free_port="$2"
docker run -d --name ${cname} -p ${free_port}:4222 nats:2.11.1 --user jane.joe --pass opensesame
}
function nats_server_stop() {
local cname="$1"
docker stop ${cname}
docker rm -f ${cname}
}
function wait_event_on_subject() {
local subject="$1"
local port="$2"
local dir="$3"
local count="${4:-1}"
mkdir -p "${dir}"
docker run -d --rm --network host --user "$(id -u):$(id -g)" -v "${dir}":/data natsio/nats-box:latest \
nats sub ${subject} --user jane.joe --password opensesame \
--server nats://127.0.0.1:${port} --count=${count} --wait=5s --raw --dump=/data
# give client a chance to startup
sleep 2
return $?
}
function http_server_start() {
local cname="$1"
local port="$2"
local dir="$3"
mkdir -p "${dir}"
docker run -d --rm --name "${cname}" \
-p "${port}:8080" \
-v "${dir}":/data \
python:3 sh -c '
pip install flask > /dev/null && \
echo "
import os
import json
from flask import Flask, request, Response
app = Flask(__name__)
counter = 0
USERNAME = \"jane.joe\"
PASSWORD = \"opensesame\"
def check_auth(auth):
return auth and auth.username == USERNAME and auth.password == PASSWORD
def authenticate():
return Response(
\"Unauthorized\", 401,
{\"WWW-Authenticate\": \"Basic realm=\\\"Login Required\\\"\"}
)
@app.route(\"/reset\", methods=[\"GET\"])
def reset_counter():
global counter
counter = 0
return \"\", 200
@app.route(\"/events\", methods=[\"POST\"])
def receive_event():
auth = request.authorization
if not check_auth(auth):
return authenticate
global counter
counter += 1
method = request.method
headers = dict(request.headers)
raw_data = request.data.decode(\"utf-8\", errors=\"replace\")
try:
body = json.loads(raw_data)
except Exception:
body = raw_data # fallback to plain text
event = {
\"method\": method,
\"headers\": headers,
\"body\": body
}
filename = f\"/data/{counter}.json\"
with open(filename, \"w\") as f:
json.dump(event, f, indent=2)
return \"\", 200
app.run(host=\"0.0.0.0\", port=8080)
" > app.py && python app.py
'
}
function http_server_stop() {
local cname="$1"
docker rm -f "${cname}" >/dev/null 2>&1
}
function wait_for_http_server() {
local port="$1"
local timeout=10
local elapsed=0
while [ "$elapsed" -lt "$timeout" ]; do
if curl --silent --fail --output /dev/null "http://127.0.0.1:${port}/reset"; then
return 0
fi
sleep 1
elapsed=$((elapsed + 1))
done
return 1
}