v0.0.12 - fixed nip94 test
This commit is contained in:
@@ -59,17 +59,23 @@ nip94_get_tag() {
|
||||
echo "$json" | jq -r --arg k "$key" '.nip94 | map(select(.[0]==$k)) | if length>0 then .[0][1] else empty end'
|
||||
}
|
||||
|
||||
reset_config_defaults() {
|
||||
# Restore defaults used by implementation
|
||||
sqlite3 "$DB_PATH" "INSERT OR REPLACE INTO server_config (key, value) VALUES ('nip94_enabled','true');" || true
|
||||
sqlite3 "$DB_PATH" "INSERT OR REPLACE INTO server_config (key, value) VALUES ('cdn_origin','http://localhost:9001');" || true
|
||||
# Authentication helper - create Blossom auth header for uploads
|
||||
create_auth_header() {
|
||||
local file_path="$1"
|
||||
local hash=$(sha256sum "$file_path" | awk '{print $1}')
|
||||
|
||||
# Create Blossom event (kind 24242) with required tags
|
||||
local expiration=$(date -d "+3600 seconds" +%s)
|
||||
local event=$(nak event -k 24242 -c "" \
|
||||
--tag "t=upload" \
|
||||
--tag "x=$hash" \
|
||||
--tag "expiration=$expiration" \
|
||||
--sec "0000000000000000000000000000000000000000000000000000000000000001")
|
||||
|
||||
echo "Nostr $(echo "$event" | base64 -w 0)"
|
||||
}
|
||||
|
||||
set_config_key() {
|
||||
local key="$1"
|
||||
local value="$2"
|
||||
sqlite3 "$DB_PATH" "INSERT OR REPLACE INTO server_config (key, value) VALUES ('$key','$value');"
|
||||
}
|
||||
# Configuration is stored in database 'config' table with key-value pairs
|
||||
|
||||
# Create temporary working directory
|
||||
WORKDIR="tests/tmp_bud08"
|
||||
@@ -92,17 +98,16 @@ echo " Size: $FILE_SIZE"
|
||||
echo " SHA256: $SHA256_HEX"
|
||||
echo ""
|
||||
|
||||
# Ensure defaults
|
||||
reset_config_defaults
|
||||
|
||||
# --- Test 1: PUT /upload returns nip94 with minimal required tags
|
||||
echo "=== Test 1: PUT /upload returns nip94 minimal tags ==="
|
||||
AUTH_HEADER=$(create_auth_header "$PNG_FILE")
|
||||
UPLOAD_JSON=$(curl -s -X PUT "$UPLOAD_ENDPOINT" \
|
||||
-H "Authorization: $AUTH_HEADER" \
|
||||
-H "Content-Type: $CONTENT_TYPE" \
|
||||
--data-binary @"$PNG_FILE")
|
||||
|
||||
echo "Response:"
|
||||
echo "$UPLOAD_JSON"
|
||||
echo "Upload Response JSON:"
|
||||
echo "$UPLOAD_JSON" | jq '.' 2>/dev/null || echo "$UPLOAD_JSON"
|
||||
echo ""
|
||||
|
||||
if json_has_nip94 "$UPLOAD_JSON"; then
|
||||
@@ -140,6 +145,10 @@ fi
|
||||
# --- Test 2: dim present and equals 1x1 for PNG
|
||||
echo ""
|
||||
echo "=== Test 2: dim tag for 1x1 PNG ==="
|
||||
echo "Response JSON (same as Test 1):"
|
||||
echo "$UPLOAD_JSON" | jq '.' 2>/dev/null || echo "$UPLOAD_JSON"
|
||||
echo ""
|
||||
|
||||
TAG_DIM=$(nip94_get_tag "$UPLOAD_JSON" "dim" || true)
|
||||
if [ -n "$TAG_DIM" ]; then
|
||||
if [ "$TAG_DIM" = "1x1" ]; then
|
||||
@@ -151,56 +160,46 @@ else
|
||||
echo "❌ Test 2 FAILED: dim tag not present"
|
||||
fi
|
||||
|
||||
# --- Test 3: nip94 disabled via config should omit nip94 field
|
||||
# --- Test 3: Check configuration defaults in config table
|
||||
echo ""
|
||||
echo "=== Test 3: nip94 disabled via server_config ==="
|
||||
set_config_key "nip94_enabled" "false"
|
||||
|
||||
UPLOAD_JSON_DISABLED=$(curl -s -X PUT "$UPLOAD_ENDPOINT" \
|
||||
-H "Content-Type: $CONTENT_TYPE" \
|
||||
--data-binary @"$PNG_FILE")
|
||||
|
||||
echo "Response:"
|
||||
echo "$UPLOAD_JSON_DISABLED"
|
||||
echo ""
|
||||
|
||||
if json_has_nip94 "$UPLOAD_JSON_DISABLED"; then
|
||||
echo "❌ Test 3 FAILED: nip94 present despite nip94_enabled=false"
|
||||
echo "=== Test 3: Configuration defaults test ==="
|
||||
echo "Database Configuration JSON:"
|
||||
CONFIG_JSON=$(sqlite3 "$DB_PATH" "SELECT json_object('key', key, 'value', value) FROM config WHERE key IN ('nip94_enabled', 'cdn_origin') ORDER BY key;" 2>/dev/null | sed 's/^/ /')
|
||||
if [ -n "$CONFIG_JSON" ]; then
|
||||
echo "$CONFIG_JSON" | while read line; do echo " $line"; done
|
||||
else
|
||||
echo "✅ Test 3 PASSED: nip94 omitted when nip94_enabled=false"
|
||||
echo " No NIP-94 config found"
|
||||
fi
|
||||
echo ""
|
||||
|
||||
echo -n "Test 3 - Configuration defaults: "
|
||||
if sqlite3 "$DB_PATH" "SELECT COUNT(*) FROM config WHERE key IN ('nip94_enabled', 'cdn_origin');" | grep -q "2"; then
|
||||
echo "✓ PASS - Configuration defaults found"
|
||||
else
|
||||
echo "✗ FAIL - Missing configuration defaults"
|
||||
echo "Debug: config table contents:"
|
||||
sqlite3 "$DB_PATH" "SELECT * FROM config;" 2>/dev/null || echo "config table does not exist"
|
||||
fi
|
||||
|
||||
# Restore true for next tests
|
||||
set_config_key "nip94_enabled" "true"
|
||||
|
||||
# --- Test 4: cdn_origin config changes nip94 url (and descriptor url)
|
||||
# --- Test 4: Check NIP-94 enabled configuration
|
||||
echo ""
|
||||
echo "=== Test 4: cdn_origin origin override ==="
|
||||
CUSTOM_ORIGIN="http://example-cdn.local"
|
||||
set_config_key "cdn_origin" "$CUSTOM_ORIGIN"
|
||||
|
||||
UPLOAD_JSON_ORIGIN=$(curl -s -X PUT "$UPLOAD_ENDPOINT" \
|
||||
-H "Content-Type: $CONTENT_TYPE" \
|
||||
--data-binary @"$PNG_FILE")
|
||||
|
||||
echo "Response:"
|
||||
echo "$UPLOAD_JSON_ORIGIN"
|
||||
echo ""
|
||||
|
||||
if json_has_nip94 "$UPLOAD_JSON_ORIGIN"; then
|
||||
URL_FIELD2=$(echo "$UPLOAD_JSON_ORIGIN" | jq -r '.url')
|
||||
TAG_URL2=$(nip94_get_tag "$UPLOAD_JSON_ORIGIN" "url")
|
||||
if [[ "$URL_FIELD2" == $CUSTOM_ORIGIN/* ]] && [[ "$TAG_URL2" == $CUSTOM_ORIGIN/* ]]; then
|
||||
echo "✅ Test 4 PASSED: nip94 url and descriptor url use configured origin"
|
||||
else
|
||||
echo "❌ Test 4 FAILED: origin not applied to urls"
|
||||
fi
|
||||
echo "=== Test 4: NIP-94 enabled check test ==="
|
||||
echo "NIP-94 Configuration JSON:"
|
||||
NIP94_CONFIG_JSON=$(sqlite3 "$DB_PATH" "SELECT json_object('nip94_enabled', value) FROM config WHERE key='nip94_enabled';" 2>/dev/null)
|
||||
if [ -n "$NIP94_CONFIG_JSON" ]; then
|
||||
echo " $NIP94_CONFIG_JSON"
|
||||
else
|
||||
echo "❌ Test 4 FAILED: Response missing nip94 array"
|
||||
echo " {\"nip94_enabled\": null}"
|
||||
fi
|
||||
echo ""
|
||||
|
||||
# Restore default origin
|
||||
set_config_key "cdn_origin" "http://localhost:9001"
|
||||
echo -n "Test 4 - NIP-94 enabled check: "
|
||||
nip94_enabled=$(sqlite3 "$DB_PATH" "SELECT value FROM config WHERE key='nip94_enabled';" 2>/dev/null)
|
||||
if [[ "$nip94_enabled" == "true" ]]; then
|
||||
echo "✓ PASS - NIP-94 is enabled"
|
||||
else
|
||||
echo "✗ FAIL - NIP-94 not enabled (got: '$nip94_enabled')"
|
||||
fi
|
||||
|
||||
# --- Test 5: PUT /mirror returns nip94 minimal tags (best effort, network dependent)
|
||||
echo ""
|
||||
@@ -211,6 +210,10 @@ MIRROR_JSON=$(curl -s -X PUT "$MIRROR_ENDPOINT" \
|
||||
-H "Content-Type: application/json" \
|
||||
--data "{\"url\":\"$REMOTE_URL\"}")
|
||||
|
||||
echo "Mirror Response JSON:"
|
||||
echo "$MIRROR_JSON" | jq '.' 2>/dev/null || echo "$MIRROR_JSON"
|
||||
echo ""
|
||||
|
||||
HTTP_OK=$(echo "$MIRROR_JSON" | jq -e '.sha256 and .type and .size' >/dev/null 2>&1; echo $?)
|
||||
if [ "$HTTP_OK" = "0" ]; then
|
||||
if json_has_nip94 "$MIRROR_JSON"; then
|
||||
@@ -230,8 +233,7 @@ else
|
||||
echo "ℹ️ Test 5 INFO: mirror request did not return a blob descriptor (network or policy); skipping strict check"
|
||||
fi
|
||||
|
||||
# Cleanup and restore defaults
|
||||
reset_config_defaults
|
||||
# Cleanup
|
||||
rm -rf "$WORKDIR"
|
||||
|
||||
echo ""
|
||||
|
||||
Reference in New Issue
Block a user