# Copyright (C) 2022 Wind River Systems, Inc. # # Licensed 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 sys # import logging import pytest from o2common.config import config from o2ims.adapter.clients.ocloud_client import StxClientImp from cgtsclient.client import get_client as get_stx_client from dcmanagerclient.api.client import client as get_dc_client @pytest.fixture def real_stx_aio_client(): os_client_args = config.get_stx_access_info() config_client = get_stx_client(**os_client_args) yield config_client @pytest.fixture def real_stx_dc_client(): os_client_args = config.get_dc_access_info() config_client = get_dc_client(**os_client_args) yield config_client # pytestmark = pytest.mark.usefixtures("mappers") def test_get_instanceinfo(real_stx_aio_client): # logger = logging.getLogger(__name__) stxclientimp = StxClientImp(real_stx_aio_client) assert stxclientimp is not None systeminfo = stxclientimp.getInstanceInfo() assert systeminfo is not None assert systeminfo.id is not None assert systeminfo.name is not None assert systeminfo.content is not None def test_get_pserverlist(real_stx_aio_client): stxClientImp = StxClientImp(real_stx_aio_client) assert stxClientImp is not None hosts = stxClientImp.getPserverList() assert hosts is not None assert len(hosts) > 0 def test_get_pserver(real_stx_aio_client): stxClientImp = StxClientImp(real_stx_aio_client) assert stxClientImp is not None hosts = stxClientImp.getPserverList() assert hosts is not None assert len(hosts) > 0 host1 = hosts[0] host2 = stxClientImp.getPserver(host1.id) assert host1 != host2 assert host1.id == host2.id def test_get_k8s_list(real_stx_aio_client): stxClientImp = StxClientImp(real_stx_aio_client) assert stxClientImp is not None k8slist = stxClientImp.getK8sList() assert k8slist is not None assert len(k8slist) > 0 k8s1 = k8slist[0] k8s2 = stxClientImp.getK8sDetail(k8s1.name) assert k8s1 != k8s2 assert k8s1.name == k8s2.name assert k8s1.id == k8s2.id def test_get_cpu_list(real_stx_aio_client): stxClientImp = StxClientImp(real_stx_aio_client) assert stxClientImp is not None hostlist = stxClientImp.getPserverList() assert len(hostlist) > 0 cpulist = stxClientImp.getCpuList(hostid=hostlist[0].id) assert len(cpulist) > 0 cpu1 = cpulist[0] cpu2 = stxClientImp.getCpu(cpu1.id) assert cpu1 != cpu2 assert cpu1.id == cpu2.id def test_get_mem_list(real_stx_aio_client): stxClientImp = StxClientImp(real_stx_aio_client) assert stxClientImp is not None hostlist = stxClientImp.getPserverList() assert len(hostlist) > 0 memlist = stxClientImp.getMemList(hostid=hostlist[0].id) assert len(memlist) > 0 mem1 = memlist[0] mem2 = stxClientImp.getMem(mem1.id) assert mem1 != mem2 assert mem1.id == mem2.id def test_get_eth_list(real_stx_aio_client): stxClientImp = StxClientImp(real_stx_aio_client) assert stxClientImp is not None hostlist = stxClientImp.getPserverList() assert len(hostlist) > 0 ethlist = stxClientImp.getEthernetList(hostid=hostlist[0].id) assert len(ethlist) > 0 eth1 = ethlist[0] eth2 = stxClientImp.getEthernet(eth1.id) assert eth1 != eth2 assert eth1.id == eth2.id def test_get_if_list(real_stx_aio_client): stxClientImp = StxClientImp(real_stx_aio_client) assert stxClientImp is not None hostlist = stxClientImp.getPserverList() assert len(hostlist) > 0 iflist = stxClientImp.getIfList(hostid=hostlist[0].id) assert len(iflist) > 0 if1 = iflist[0] if2 = stxClientImp.getIf(if1.id) assert if1 != if2 assert if1.id == if2.id def test_get_if_port_list(real_stx_aio_client): stxClientImp = StxClientImp(real_stx_aio_client) assert stxClientImp is not None hostlist = stxClientImp.getPserverList() assert len(hostlist) > 0 iflist = stxClientImp.getIfList(hostid=hostlist[0].id) assert len(iflist) > 0 portlist = stxClientImp.getPortList(interfaceid=iflist[0].id) assert len(portlist) > 0 port1 = portlist[0] port2 = stxClientImp.getPort(port1.id) assert port1 != port2 assert port1.id == port2.id def test_get_subcloud_list(real_stx_aio_client, real_stx_dc_client): # dcClientImp = StxClientImp(real_stx_dc_client) dcClientImp = StxClientImp( stx_client=real_stx_aio_client, dc_client=real_stx_dc_client) sa = dcClientImp.getSubcloudList() assert len(sa) == 0