Commit 3dbf8715 authored by dgiannopoulos's avatar dgiannopoulos
Browse files

debug: added initial tests

parent b51a6f5a
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,4 +3,4 @@
.project
.classpath
/.settings
/tests/__pycache__
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ image:
    # Overrides the image tag whose default is the chart appVersion.
    tag: "develop"
  keycloak:
    repository: jboss/keycloak
    repository: quay.io/keycloak/keycloak
    pullPolicy: IfNotPresent
    # Overrides the image tag whose default is the chart appVersion.
    tag: "16.1.1"
+71 −0
Original line number Diff line number Diff line
import subprocess
import pytest
import time

print("starting")
release_name = "test-openslice"

def run_command(command):
    """ Helper function to run a command with detailed error logging. """
    try:
        result = subprocess.run(command, capture_output=True, text=True, check=True)
        print(f"Command {' '.join(command)}: {result.stdout}")
        return result
    except subprocess.CalledProcessError as e:
        print(f"Failed to execute {' '.join(command)}: {e.stderr}")
        raise

def get_pods(release_name):
    """Retrieve list of pod names for a given release."""
    time.sleep(3)
    cmd = ["kubectl", "get", "pods", "-l", f"app={release_name}", "-o", "name"]
    result = run_command(cmd)
    pod_names = result.stdout.strip().split()
    print(pod_names)
    return [name.split('/')[-1] for name in pod_names]  # Convert 'pod/my-pod-name' to 'my-pod-name'

@pytest.fixture(scope="module")
def deploy_helm():
    print("Deploying Helm chart...")
    run_command(["helm", "install", release_name, "kubernetes/helm/openslice", "--namespace", "openslice", "-f", "kubernetes/helm/openslice/values.yaml"])
    yield "test-openslice"
    print("Uninstalling Helm chart...")
    run_command(["helm", "uninstall", release_name, "--namespace", "openslice"])

def check_pod_readiness(pod_name):
    result = run_command(["kubectl", "get", "pod", pod_name, "-o", "jsonpath='{.status.phase}'"])
    return result.stdout.strip() == "'Running'"

def wait_for_pods_ready(pod_names, timeout=300):
    start_time = time.time()
    while True:
        all_ready = True
        for pod_name in pod_names:
            if not check_pod_readiness(pod_name):
                all_ready = False
                break
        if all_ready:
            print("All pods are ready.")
            time.sleep(45)  # Wait for 5 seconds before returning
            return True
        elif time.time() - start_time > timeout:
            print("Timeout reached, pods not ready.")
            return False
        else:
            time.sleep(10)  # Wait for 10 seconds before checking again
            print()

@pytest.mark.usefixtures("deploy_helm")
class TestApplicationComponents:
    def test_pods_readiness(self, deploy_helm):
        release_name = deploy_helm
        pod_names = get_pods(release_name)
        assert wait_for_pods_ready(pod_names), "Not all pods were ready in time"

# Something is very strange here. The pods are not all running. Some are in CrashLoopBackOff state. But the test is saying all are running.
# Questions:
# 1. What is a fixture?
# 2. What is a scope?
# 3. What is a yield?
# 4. What is a module?
# 5. How can I group tests together so they run like subtests, for example subtests of helm install is having all pods be ready.