Files
qdrant/tests/basic_api_test.sh
2021-04-06 14:12:46 +02:00

75 lines
2.3 KiB
Bash

#!/bin/bash
# This test checks that Qdrant answers to all API mentioned in README.md as expected
set -ex
QDRANT_HOST='localhost:6333'
curl -X POST "http://$QDRANT_HOST/collections" \
-H 'Content-Type: application/json' \
--fail -s \
--data-raw '{
"delete_collection": "test_collection"
}' | jq
curl -X POST "http://$QDRANT_HOST/collections" \
-H 'Content-Type: application/json' \
--fail -s \
--data-raw '{
"create_collection": {
"name": "test_collection",
"vector_size": 4,
"distance": "Dot"
}
}' | jq
curl --fail -s "http://$QDRANT_HOST/collections/test_collection" | jq
curl -L -X POST "http://$QDRANT_HOST/collections/test_collection?wait=true" \
-H 'Content-Type: application/json' \
--fail -s \
--data-raw '{
"upsert_points": {
"points": [
{"id": 1, "vector": [0.05, 0.61, 0.76, 0.74], "payload": {"city": {"type": "keyword", "value": "Berlin"}}},
{"id": 2, "vector": [0.19, 0.81, 0.75, 0.11], "payload": {"city": {"type": "keyword", "value": ["Berlin", "London"] }}},
{"id": 3, "vector": [0.36, 0.55, 0.47, 0.94], "payload": {"city": {"type": "keyword", "value": ["Berlin", "Moscow"] }}},
{"id": 4, "vector": [0.18, 0.01, 0.85, 0.80], "payload": {"city": {"type": "keyword", "value": ["London", "Moscow"]}}},
{"id": 5, "vector": [0.24, 0.18, 0.22, 0.44], "payload": {"count": {"type": "integer", "value": [0]}}},
{"id": 6, "vector": [0.35, 0.08, 0.11, 0.44]}
]
}
}' | jq
SAVED_VECTORS_COUNT=$(curl --fail -s "http://$QDRANT_HOST/collections/test_collection" | jq '.result.vectors_count')
[[ "$SAVED_VECTORS_COUNT" == "6" ]] || {
echo 'check failed'
exit 1
}
curl -L -X POST "http://$QDRANT_HOST/collections/test_collection/points/search" \
-H 'Content-Type: application/json' \
--fail -s \
--data-raw '{
"vector": [0.2,0.1,0.9,0.7],
"top": 3
}' | jq
curl -L -X POST "http://$QDRANT_HOST/collections/test_collection/points/search" \
--fail -s \
-H 'Content-Type: application/json' \
--data-raw '{
"filter": {
"should": [
{
"key": "city",
"match": {
"keyword": "London"
}
}
]
},
"vector": [0.2, 0.1, 0.9, 0.7],
"top": 3
}' | jq