Files
hatchet/hack/dev/compression-test/scripts/run_all_tests.sh
Sid Premkumar 709dd89a18 Add gzip compression (#2539)
* Add gzip compression init

* revert

* Feat: Initial cross-domain identify setup (#2533)

* feat: initial setup

* fix: factor out

* chore: lint

* fix: xss vuln

* feat: set up properly

* fix: lint

* fix: key

* fix: keys, cleanup

* Fix: use sessionStorage instead of localStorage (#2541)

* chore(deps): bump golang.org/x/crypto from 0.44.0 to 0.45.0 (#2545)

Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.44.0 to 0.45.0.
- [Commits](https://github.com/golang/crypto/compare/v0.44.0...v0.45.0)

---
updated-dependencies:
- dependency-name: golang.org/x/crypto
  dependency-version: 0.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml (#2547)

Bumps [google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml](https://github.com/google/osv-scanner-action) from 2.2.4 to 2.3.0.
- [Release notes](https://github.com/google/osv-scanner-action/releases)
- [Commits](https://github.com/google/osv-scanner-action/compare/v2.2.4...v2.3.0)

---
updated-dependencies:
- dependency-name: google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* [Go SDK] Resubscribe and get a new listener stream when gRPC connections fail (#2544)

* fix listener cache issue to resubscribe when erroring out

* worker retry message clarification (#2543)

* add another retry layer and add comments

* fix loop logic

* make listener channel retry

* Compression test utils, and add log to indicate its enabled

* clean + fix

* more fallbacks

* common pgxpool afterconnect method (#2553)

* remove

* lint

* lint

* add cpu monitor during test

* fix background monitor and lint

* Make envvar to disable compression

* cleanup monitoring

* PR Feedback

* Update paths in compression tests + bump package versions

* path issue on test script

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: matt <mrkaye97@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mohammed Nafees <hello@mnafees.me>
2025-11-26 17:14:38 -05:00

53 lines
1.8 KiB
Bash
Executable File

#!/bin/bash
# run_all_tests.sh - Run all SDK tests for a given compression state
set -e
STATE=$1
EVENTS_COUNT=${2:-10} # Default to 10 events if not specified
if [ -z "$STATE" ]; then
echo "Usage: $0 <state> [events_count]"
echo " state: enabled or disabled"
echo " events_count: number of events to send (default: 10)"
exit 1
fi
# Validate required environment variables
if [ -z "$HATCHET_CLIENT_TOKEN" ]; then
echo "Error: HATCHET_CLIENT_TOKEN environment variable is required"
echo "Usage: export HATCHET_CLIENT_TOKEN='your-token' && $0 <state>"
exit 1
fi
# Set default host port for macOS Docker (use IP to avoid IPv6 resolution issues)
if [ -z "$HATCHET_CLIENT_HOST_PORT" ]; then
# Get the Docker gateway IP (host.docker.internal IPv4)
GATEWAY_IP=$(docker run --rm alpine getent hosts host.docker.internal 2>/dev/null | awk '{print $1}' | grep -E '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' | head -1)
if [ -z "$GATEWAY_IP" ]; then
GATEWAY_IP="192.168.65.254" # Default Docker Desktop gateway
fi
export HATCHET_CLIENT_HOST_PORT="${GATEWAY_IP}:7070"
echo "Using default HATCHET_CLIENT_HOST_PORT: $HATCHET_CLIENT_HOST_PORT"
fi
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
echo "=========================================="
echo "Running all SDK tests (${STATE} compression)"
echo "Events per test: ${EVENTS_COUNT}"
echo "=========================================="
echo ""
# Run tests sequentially in order: python, typescript, go
for SDK in python typescript go; do
echo "Running ${SDK} SDK test..."
"$SCRIPT_DIR/run_test.sh" "$SDK" "$STATE" "$EVENTS_COUNT"
echo ""
sleep 5 # Brief pause between tests
done
echo "=========================================="
echo "All tests complete for ${STATE} compression"
echo "=========================================="