summaryrefslogtreecommitdiffstats
path: root/hpa/tests/test_hpa_discovery.py
blob: c63f377f0e94f2d4772a2ffe732907f7882785a3 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import unittest

from hpa import hpa_discovery

class TestDiscovery(unittest.TestCase):
    def test_hpa_discovery(self):
        """
        Test that it can discovery hpa capability
        """

        flavor = {
            "vcpus": 2,
            "ram": "2048",
            "disk": "2G",
            "swap": False,
            "OS-FLV-EXT-DATA:ephemeral": False
        }

        # Add cloud_extra_info in convert_vim_info
        viminfo = {
            "createTime": "2017-04-01 02:22:27",
            "domain": "Default",
            "name": "TiS_R4",
            "password": "admin",
            "tenant": "admin",
            "type": "openstack",
            "url": "http://128.224.180.14:5000/v3",
            "userName": "admin",
            "vendor": "WindRiver",
            "version": "newton",
            "vimId": "windriver-hudson-dc_RegionOne",
            'cloud_owner': 'windriver-hudson-dc',
            'cloud_region_id': 'RegionOne',
            'insecure': 'True',
            'cloud_extra_info': '{ \
                "ovsDpdk": { \
                    "version": "v1", \
                    "arch": "Intel64", \
                    "libname": "dataProcessingAccelerationLibrary", \
                    "libversion": "v12.1" \
                } \
            }'
        }

        # flavor extra specs
        extra_specs = [
            # HPA UT1: CPU-Pinning
            {
                "aggregate_instance_extra_specs:storage": "local_image",
                "capabilities:cpu_info:model": "Haswell",
                "hw:cpu_policy": "dedicated",
                "hw:cpu_thread_policy": "prefer"
            },
            # HPA UT2: CPU-Topology
            {
                "aggregate_instance_extra_specs:storage": "local_image",
                "capabilities:cpu_info:model": "Haswell",
                "hw:cpu_sockets": "2",
                "hw:cpu_cores": "4",
                "hw:cpu_threads": "16"
            },
            # HPA UT3: mem_page_size
            {
                "aggregate_instance_extra_specs:storage": "local_image",
                "capabilities:cpu_info:model": "Haswell",
                "hw:mem_page_size": "large"
            },
            # HPA UT4: numa_nodes
            {
                "aggregate_instance_extra_specs:storage": "local_image",
                "capabilities:cpu_info:model": "Haswell",
                "hw:numa_nodes": "2",
                "hw:numa_cpus.0": "0,1",
                "hw:numa_cpus.1": "2,3,4,5",
                "hw:numa_mem.0": "2048",
                "hw:numa_mem.1": "2048"
            },
            # HPA UT5: instruction set
            {
                "aggregate_instance_extra_specs:storage": "local_image",
                "capabilities:cpu_info:model": "Haswell",
                "hw:capabilities:cpu_info:features": "avx,acpi"
            },
            # HPA UT6: pci passthrough
            {
                "aggregate_instance_extra_specs:storage": "local_image",
                "capabilities:cpu_info:model": "Haswell",
                "pci_passthrough:alias": "sriov-vf-intel-8086-15b3:4"
            },
            # HPA UT7: sriov-nic
            {
                "aggregate_instance_extra_specs:sriov_nic": "sriov-nic-intel-8086-15b3-physnet-1:1",
                "capabilities:cpu_info:model": "Haswell"
            }
        ]

        vimtype = "windriver"
        hpa = hpa_discovery.HPA_Discovery()
        for extra_spec in extra_specs:
            data = {"flavor": flavor, "extra_specs": extra_spec, "viminfo": viminfo, "vimtype": vimtype}
            results = hpa.get_hpa_capabilities(data)

if __name__ == '__main__':
    unittest.main()