|
| 1 | +# Copyright Materialize, Inc. and contributors. All rights reserved. |
| 2 | +# |
| 3 | +# Use of this software is governed by the Business Source License |
| 4 | +# included in the LICENSE file at the root of this repository. |
| 5 | +# |
| 6 | +# As of the Change Date specified in that file, in accordance with |
| 7 | +# the Business Source License, use of this software will be governed |
| 8 | +# by the Apache License, Version 2.0. |
| 9 | + |
| 10 | +import argparse |
| 11 | +import json |
| 12 | +from http.server import BaseHTTPRequestHandler, HTTPServer |
| 13 | + |
| 14 | +from materialize.mzcompose import DEFAULT_SYSTEM_PARAMETERS |
| 15 | + |
| 16 | + |
| 17 | +def handler_factory(config: dict[str, str]) -> type[BaseHTTPRequestHandler]: |
| 18 | + class Handler(BaseHTTPRequestHandler): |
| 19 | + def do_GET(self): |
| 20 | + if self.path == "/polling/sdk/latest-all": |
| 21 | + self.handle_latest_all() |
| 22 | + else: |
| 23 | + self.handle_empty(404) |
| 24 | + |
| 25 | + def do_POST(self): |
| 26 | + self.handle_empty(200) # accept all |
| 27 | + |
| 28 | + def handle_latest_all(self) -> None: |
| 29 | + response = json.dumps( |
| 30 | + { |
| 31 | + "segments": {}, |
| 32 | + "flags": { |
| 33 | + key: { |
| 34 | + "key": key, |
| 35 | + "on": False, |
| 36 | + "prerequisites": [], |
| 37 | + "targets": [], |
| 38 | + "rules": [], |
| 39 | + "fallthrough": {"variation": 0}, |
| 40 | + "offVariation": 0, |
| 41 | + "variations": [val], |
| 42 | + "salt": "", |
| 43 | + } |
| 44 | + for key, val in config.items() |
| 45 | + }, |
| 46 | + }, |
| 47 | + indent=2, |
| 48 | + ) |
| 49 | + print(str(len(response))) |
| 50 | + self.send_response(200) |
| 51 | + self.send_header("content-type", "application/json") |
| 52 | + self.send_header("content-length", str(len(response))) |
| 53 | + self.send_header("accept-ranges", "none") |
| 54 | + self.end_headers() |
| 55 | + self.wfile.write(response.encode("utf-8")) |
| 56 | + self.wfile.flush() |
| 57 | + |
| 58 | + def handle_empty(self, code: int): |
| 59 | + self.send_response(200) |
| 60 | + self.send_header("Content-type", "application/json") |
| 61 | + self.end_headers() |
| 62 | + |
| 63 | + return Handler |
| 64 | + |
| 65 | + |
| 66 | +def run(addr: str, port: int, config: dict[str, str]): |
| 67 | + server_address = (addr, port) |
| 68 | + httpd = HTTPServer(server_address, handler_factory(config)) |
| 69 | + httpd.serve_forever() |
| 70 | + |
| 71 | + |
| 72 | +if __name__ == "__main__": |
| 73 | + parser = argparse.ArgumentParser( |
| 74 | + description="Run a simple mock LaunchDarkly server", |
| 75 | + ) |
| 76 | + parser.add_argument( |
| 77 | + "-l", |
| 78 | + "--listen", |
| 79 | + default="0.0.0.0", |
| 80 | + help="Specify the IP address on which the server listens", |
| 81 | + ) |
| 82 | + parser.add_argument( |
| 83 | + "-p", |
| 84 | + "--port", |
| 85 | + type=int, |
| 86 | + default=9000, |
| 87 | + help="Specify the port on which the server listens", |
| 88 | + ) |
| 89 | + |
| 90 | + args = parser.parse_args() |
| 91 | + run(addr=args.listen, port=args.port, config=DEFAULT_SYSTEM_PARAMETERS) |
0 commit comments