mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 22:03:07 +00:00
* feat(browser-tests): simplify, refactor, update dockerized browser node * Update packages/browser-tests/web/index.ts * fix: remove comments and console.logs from tests * fix: add temporary logging * fix: debugging static sharding * fix: replace console with logger * fix: remove use of any * fix: log dial error * fix: replace any with libp2p options * fix: remove unused logic around sourcing address.env * fix: uncomment log * fix: add more logging and fix tests * feat: add types for test-config * fix: add types to server.ts * fix: remove more uses of any * fix: remove use of any in endpoint handlers
55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
# Docker entrypoint script for waku-browser-tests
|
|
# Handles CLI arguments and converts them to environment variables
|
|
# Supports reading discovered addresses from /etc/addrs/addrs.env (10k sim pattern)
|
|
echo "docker-entrypoint.sh"
|
|
echo "Using address: $addrs1"
|
|
# Only set WAKU_LIGHTPUSH_NODE if it's not already set and addrs1 is available
|
|
if [ -z "$WAKU_LIGHTPUSH_NODE" ] && [ -n "$addrs1" ]; then
|
|
export WAKU_LIGHTPUSH_NODE="$addrs1"
|
|
fi
|
|
echo "Num Args: $#"
|
|
echo "Args: $@"
|
|
|
|
echo "WAKU_LIGHTPUSH_NODE=$WAKU_LIGHTPUSH_NODE"
|
|
|
|
# Parse command line arguments
|
|
while [[ $# -gt 0 ]]; do
|
|
case $1 in
|
|
--cluster-id=*)
|
|
export WAKU_CLUSTER_ID="${1#*=}"
|
|
echo "Setting WAKU_CLUSTER_ID=${WAKU_CLUSTER_ID}"
|
|
shift
|
|
;;
|
|
--shard=*)
|
|
export WAKU_SHARD="${1#*=}"
|
|
echo "Setting WAKU_SHARD=${WAKU_SHARD}"
|
|
shift
|
|
;;
|
|
--lightpushnode=*)
|
|
export WAKU_LIGHTPUSH_NODE="${1#*=}"
|
|
echo "Setting WAKU_LIGHTPUSH_NODE=${WAKU_LIGHTPUSH_NODE}"
|
|
shift
|
|
;;
|
|
--enr-bootstrap=*)
|
|
export WAKU_ENR_BOOTSTRAP="${1#*=}"
|
|
echo "Setting WAKU_ENR_BOOTSTRAP=${WAKU_ENR_BOOTSTRAP}"
|
|
shift
|
|
;;
|
|
*)
|
|
# Unknown argument, notify user and keep it for the main command
|
|
echo "Warning: Unknown argument '$1' will be passed to the main command"
|
|
break
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# If no specific command is provided, use the default CMD
|
|
if [ $# -eq 0 ]; then
|
|
set -- "npm" "run" "start:server"
|
|
fi
|
|
|
|
# Execute the main command
|
|
exec "$@"
|