Spaces:
Sleeping
Sleeping
File size: 2,478 Bytes
61d39e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
#! /usr/bin/env python3
#
# Usage:
# ./tools/api-tester/ci/run.py
import time
import os
import json
import requests
import yaml
import cxc_toolkit
import common
def update_server_config():
# Load the config file
config_file = f"{os.getcwd()}/volatile/config/config.json"
with open(config_file, "r") as f:
config = json.load(f)
# Ensure services and mountpoint sections exist
if "services" not in config:
config["services"] = {}
if "mountpoint" not in config["services"]:
config["services"]["mountpoint"] = {}
if "mountpoints" not in config["services"]["mountpoint"]:
config["services"]["mountpoint"]["mountpoints"] = {}
# Add the mountpoint configuration
mountpoint_config = {
"/": {"mounter": "puterfs"},
# "/admin/tmp": {"mounter": "memoryfs"},
}
# Merge mountpoints (overwrite existing ones)
config["services"]["mountpoint"]["mountpoints"].update(mountpoint_config)
# Write the updated config back
with open(config_file, "w") as f:
json.dump(config, f, indent=2)
def run():
# =========================================================================
# free the port 4100
# =========================================================================
cxc_toolkit.exec.run_command("fuser -k 4100/tcp", ignore_failure=True)
# =========================================================================
# config server
# =========================================================================
cxc_toolkit.exec.run_command("npm install")
common.init_backend_config()
admin_password = common.get_admin_password()
update_server_config()
# =========================================================================
# config client
# =========================================================================
cxc_toolkit.exec.run_background("npm start")
# wait 10s for the server to start
time.sleep(10)
token = common.get_token(admin_password)
common.init_client_config(token)
# =========================================================================
# run the test
# =========================================================================
cxc_toolkit.exec.run_command(
"node ./tests/api-tester/apitest.js --unit --stop-on-failure"
)
if __name__ == "__main__":
run()
|