2020-05-17 12:04:53 +02:00
|
|
|
import json
|
2020-06-11 00:54:34 +02:00
|
|
|
import os
|
2020-05-17 12:04:53 +02:00
|
|
|
import subprocess
|
|
|
|
|
|
|
|
from zulip import Client
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2020-05-17 12:04:53 +02:00
|
|
|
from zerver.openapi.openapi import validate_against_openapi_schema
|
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2020-05-17 12:04:53 +02:00
|
|
|
def test_js_bindings(client: Client) -> None:
|
|
|
|
os.environ['ZULIP_USERNAME'] = client.email
|
|
|
|
os.environ['ZULIP_API_KEY'] = client.api_key
|
|
|
|
os.environ['ZULIP_REALM'] = client.base_url[:-5]
|
|
|
|
|
|
|
|
output = subprocess.check_output(
|
|
|
|
args=['node', 'zerver/openapi/javascript_examples.js'],
|
|
|
|
universal_newlines=True,
|
|
|
|
)
|
|
|
|
endpoint_responses = json.loads(output)
|
|
|
|
|
|
|
|
for response_data in endpoint_responses:
|
|
|
|
print(f"Testing javascript example: {response_data['name']} ...")
|
|
|
|
validate_against_openapi_schema(response_data['result'],
|
|
|
|
response_data['endpoint'],
|
|
|
|
response_data['method'],
|
|
|
|
response_data['status_code'])
|
|
|
|
|
|
|
|
print('JavaScript examples validated.')
|