mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-11 07:11:02 +00:00
60 lines
No EOL
2.3 KiB
Python
60 lines
No EOL
2.3 KiB
Python
import config
|
|
import json
|
|
import requests
|
|
|
|
|
|
createIndex = { 'options': { 'keys': False } }
|
|
createField = { 'options': { 'type': 'int', 'min': 0, 'max': 100000 } }
|
|
|
|
def setup_module(module):
|
|
data_to_send = json.dumps(createIndex).encode("utf-8")
|
|
response = requests.post("http://" + config.datanode0 + ":10101/index/user", data = data_to_send)
|
|
assert response.status_code == 200
|
|
assert response.headers["Content-Type"] == "application/json"
|
|
resp_body = response.json()
|
|
assert resp_body['success'] == True
|
|
|
|
data_to_send = json.dumps(createField).encode("utf-8")
|
|
response = requests.post("http://" + config.datanode0 + ":10101/index/user/field/stats", data = data_to_send)
|
|
assert response.status_code == 200
|
|
assert response.headers["Content-Type"] == "application/json"
|
|
resp_body = response.json()
|
|
assert resp_body['success'] == True
|
|
|
|
|
|
def teardown_module(module):
|
|
response = requests.delete("http://" + config.datanode0 + ":10101/index/user")
|
|
assert response.status_code == 200
|
|
assert response.headers["Content-Type"] == "application/json"
|
|
resp_body = response.json()
|
|
assert resp_body['success'] == True
|
|
|
|
|
|
def test_api_is_responding():
|
|
response = requests.get("http://" + config.datanode0 + ":10101/status")
|
|
assert response.status_code == 200
|
|
assert response.headers["Content-Type"] == "application/json"
|
|
resp_body = response.json()
|
|
assert resp_body['state'] == "NORMAL"
|
|
|
|
|
|
def test_get_index_api():
|
|
response = requests.get("http://" + config.datanode0 + ":10101/index/user")
|
|
assert response.status_code == 200
|
|
assert response.headers["Content-Type"] == "application/json"
|
|
resp_body = response.json()
|
|
assert resp_body['name'] == "user"
|
|
|
|
|
|
def test_set_and_read_query_api():
|
|
response = requests.post("http://" + config.datanode0 + ":10101/index/user/query", data = "Set(10, stats=1)")
|
|
assert response.status_code == 200
|
|
assert response.headers["Content-Type"] == "application/json"
|
|
resp_body = response.json()
|
|
assert resp_body['results'][0] == True
|
|
|
|
response = requests.post("http://" + config.datanode0 + ":10101/index/user/query", data = "Row(stats=1)")
|
|
assert response.status_code == 200
|
|
assert response.headers["Content-Type"] == "application/json"
|
|
resp_body = response.json()
|
|
assert resp_body['results'][0]['columns'][0] == 10 |