-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
142 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
agents: | ||
image: "docker.elastic.co/ci-agent-images/es-perf/buildkite-agent-python" | ||
|
||
steps: | ||
- label: "Run IT Serverless tests" | ||
command: echo "TODO" | ||
- command: nox -s it_serverless | ||
plugins: | ||
- elastic/vault-secrets#v0.0.2: | ||
path: "secret/ci/elastic-rally/employees/cloud/it-serverless" | ||
field: "base_url" | ||
env_var: "RALLY_IT_SERVERLESS_BASE_URL" | ||
- elastic/vault-secrets#v0.0.2: | ||
path: "secret/ci/elastic-rally/employees/cloud/it-serverless" | ||
field: "api_key" | ||
env_var: "RALLY_IT_SERVERLESS_API_KEY" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
import collections | ||
import contextlib | ||
import json | ||
import os | ||
import subprocess | ||
import time | ||
import urllib.parse | ||
|
||
import pytest | ||
import requests | ||
from elasticsearch import Elasticsearch | ||
|
||
BASE_URL = os.environ["RALLY_IT_SERVERLESS_BASE_URL"] | ||
API_KEY = os.environ["RALLY_IT_SERVERLESS_API_KEY"] | ||
|
||
TRACKS = ["nyc_taxis", "elastic/logs"] | ||
|
||
|
||
ServerlessProject = collections.namedtuple("ServerlessProject", ["target_host", "username", "password"]) | ||
|
||
|
||
def serverless_api(method, endpoint, json=None): | ||
resp = requests.request( | ||
method, | ||
BASE_URL + endpoint, | ||
headers={ | ||
"Authorization": f"ApiKey {API_KEY}", | ||
"Content-Type": "application/json", | ||
}, | ||
json=json, | ||
timeout=60, | ||
) | ||
resp.raise_for_status() | ||
return resp.json() | ||
|
||
|
||
@pytest.fixture(scope="session") | ||
def serverless_project(): | ||
print("Creating project") | ||
created_project = serverless_api( | ||
"POST", | ||
"/api/v1/serverless/projects/elasticsearch", | ||
json={ | ||
"name": "rally-it-serverless", | ||
"region_id": "aws-eu-west-1", | ||
}, | ||
) | ||
project_id = created_project["id"] | ||
credentials = serverless_api( | ||
"POST", | ||
f"/api/v1/serverless/projects/elasticsearch/{project_id}/_reset-credentials", | ||
) | ||
|
||
project = serverless_api("GET", f"/api/v1/serverless/projects/elasticsearch/{project_id}") | ||
es_endpoint = project["endpoints"]["elasticsearch"] | ||
es_hostname = urllib.parse.urlparse(es_endpoint).hostname | ||
rally_target_host = f"{es_hostname}:443" | ||
|
||
print("Waiting DNS propagation") | ||
while True: | ||
time.sleep(10) | ||
with contextlib.suppress(subprocess.CalledProcessError): | ||
subprocess.run(["nslookup", es_hostname, "8.8.8.8"], check=True) | ||
break | ||
|
||
print("Waiting for Elasticsearch") | ||
while True: | ||
try: | ||
es = Elasticsearch( | ||
f"https://{rally_target_host}", | ||
basic_auth=( | ||
credentials["username"], | ||
credentials["password"], | ||
), | ||
request_timeout=10, | ||
) | ||
info = es.info() | ||
print("GET /") | ||
print(json.dumps(info.body, indent=2)) | ||
|
||
authenticate = es.perform_request(method="GET", path="/_security/_authenticate") | ||
print("GET /_security/_authenticate") | ||
print(json.dumps(authenticate.body, indent=2)) | ||
|
||
break | ||
except Exception as e: | ||
print(f"GET / Failed with {type(e)}") | ||
time.sleep(10) | ||
|
||
yield ServerlessProject(rally_target_host, credentials["username"], credentials["password"]) | ||
|
||
print("Deleting project") | ||
serverless_api("DELETE", f"/api/v1/serverless/projects/elasticsearch/{project_id}") | ||
|
||
|
||
def client_options(username, password): | ||
return { | ||
"default": { | ||
"verify_certs": False, | ||
"use_ssl": True, | ||
"basic_auth_user": username, | ||
"timeout": 240, | ||
"basic_auth_password": password, | ||
} | ||
} | ||
|
||
|
||
@pytest.mark.parametrize("track", TRACKS) | ||
def test_serverless(track, tmp_path, serverless_project: ServerlessProject): | ||
options_path = tmp_path / "options.json" | ||
with options_path.open("w") as f: | ||
json.dump(client_options(serverless_project.username, serverless_project.password), fp=f) | ||
|
||
subprocess.run( | ||
[ | ||
"esrally", | ||
"race", | ||
f"--track={track}", | ||
"--track-params=number_of_shards:1,number_of_replicas:1", | ||
# TODO: should we run a full test instead? | ||
"--test-mode", | ||
f"--target-hosts={serverless_project.target_host}", | ||
"--pipeline=benchmark-only", | ||
f"--client-options={str(options_path)}", | ||
"--user-tags='intention:rally-it-serverless'", | ||
"--on-error=abort", | ||
], | ||
check=True, | ||
) |