#!/usr/bin/env python # SPDX-License-Identifier: Apache-2.0 # # The OpenSearch Contributors require contributions made to # this file be licensed under the Apache-2.0 license or a # compatible open source license. # # Modifications Copyright OpenSearch Contributors. See # GitHub history for details. # # Modifications Copyright OpenSearch Contributors. See # GitHub history for details. # # Licensed to Elasticsearch B.V. under one or more contributor # license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright # ownership. Elasticsearch B.V. licenses this file to you under # the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. import subprocess import sys from os import environ from os.path import abspath, dirname, exists, join, pardir from subprocess import CalledProcessError from typing import Any def fetch_opensearch_repo() -> None: """ runs a git fetch origin on configured opensearch core repo :return: None if environmental variables TEST_OPENSEARCH_YAML_DIR is set or TEST_OPENSEARCH_NOFETCH is set to False; else returns nothing """ # user is manually setting YAML dir, don't tamper with it if "TEST_OPENSEARCH_YAML_DIR" in environ: return repo_path = environ.get( "TEST_OPENSEARCH_REPO", abspath(join(dirname(__file__), pardir, pardir, "opensearch")), ) # set YAML test dir environ["TEST_OPENSEARCH_YAML_DIR"] = join( repo_path, "rest-api-spec", "src", "main", "resources", "rest-api-spec", "test" ) # fetching of yaml tests disabled, we'll run with what's there if environ.get("TEST_OPENSEARCH_NOFETCH", False): return from test_opensearchpy.test_cases import SkipTest from test_opensearchpy.test_server import get_client # find out the sha of the running client try: client = get_client() sha = client.info()["version"]["build_hash"] except (SkipTest, KeyError): print("No running opensearch >1.X server...") return # no test directory if not exists(repo_path): subprocess.check_call(f"mkdir {repo_path}", shell=True) # make a new blank repository in the test directory subprocess.check_call(f"cd {repo_path} && git init", shell=True) try: # add a remote subprocess.check_call( "cd %s && git remote add origin https://github.com/opensearch-project/opensearch.git" % repo_path, shell=True, ) except CalledProcessError as e: # if the run is interrupted from a previous run, it doesn't clean up, and the git add origin command # errors out; this allows the test to continue remote_origin_already_exists = 3 if e.returncode == remote_origin_already_exists: print( "Consider setting TEST_OPENSEARCH_NOFETCH=true if you want to reuse the existing local OpenSearch repo" ) else: print(e) sys.exit(1) # fetch the sha commit, version from info() print("Fetching opensearch repo...") subprocess.check_call(f"cd {repo_path} && git fetch origin {sha}", shell=True) def run_all(argv: Any = None) -> None: """ run all the tests given arguments and environment variables - sets defaults if argv is None, running "pytest --cov=opensearchpy --junitxml= --log-level=DEBUG --cache-clear -vv --cov-report=