aboutsummaryrefslogtreecommitdiff
path: root/tests/test_backend_corstone_install.py
blob: 496e378fc9b009eba6ff34524c5b631664d505fa (plain)
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
81
82
83
84
85
86
87
88
89
90
# SPDX-FileCopyrightText: Copyright 2022-2024, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
"""Tests for Corstone related installation functions.."""
from __future__ import annotations

from pathlib import Path
from typing import Any
from unittest.mock import call
from unittest.mock import MagicMock

import pytest

from mlia.backend.corstone.install import CorstoneInstaller
from mlia.backend.corstone.install import get_corstone_installations
from mlia.backend.install import Installation


def test_get_corstone_installations() -> None:
    """Test function get_corstone_installations."""
    installations = get_corstone_installations()
    assert len(installations) == 2

    assert all(isinstance(item, Installation) for item in installations)


@pytest.mark.parametrize(
    "corstone_name, eula_agreement, expected_calls",
    [
        [
            "corstone-300",
            True,
            [call(["./FVP_Corstone_SSE-300.sh", "-q", "-d", "corstone-300"])],
        ],
        [
            "corstone-300",
            False,
            [
                call(
                    [
                        "./FVP_Corstone_SSE-300.sh",
                        "-q",
                        "-d",
                        "corstone-300",
                        "--nointeractive",
                        "--i-agree-to-the-contained-eula",
                    ]
                )
            ],
        ],
        [
            "corstone-310",
            True,
            [call(["./FVP_Corstone_SSE-310.sh", "-q", "-d", "corstone-310"])],
        ],
        [
            "corstone-310",
            False,
            [
                call(
                    [
                        "./FVP_Corstone_SSE-310.sh",
                        "-q",
                        "-d",
                        "corstone-310",
                        "--nointeractive",
                        "--i-agree-to-the-contained-eula",
                    ]
                )
            ],
        ],
    ],
)
def test_corstone_installer(
    tmp_path: Path,
    monkeypatch: pytest.MonkeyPatch,
    corstone_name: str,
    eula_agreement: bool,
    expected_calls: Any,
) -> None:
    """Test Corstone installer."""
    mock_check_call = MagicMock()

    monkeypatch.setattr(
        "mlia.backend.corstone.install.subprocess.check_call", mock_check_call
    )

    installer = CorstoneInstaller(name=corstone_name)
    installer(eula_agreement, tmp_path)

    assert mock_check_call.mock_calls == expected_calls