test/automated-pytest-suite/testcases/functional/horizon/test_instances.py
Yang Liu 33756ac899 Initial submission for starlingx pytest framework.
Include:
- util modules. such as table_parser, ssh/localhost clients, cli module,
exception, logger, etc. Util modules are mostly used by keywords.
- keywords modules. These are helper functions that are used directly by
test functions.
- platform (with platform or platform_sanity marker) and stx-openstack
(with sanity, sx_sanity, cpe_sanity, or storage_sanity marker) sanity
testcases
- pytest config conftest, and test fixture modules
- test config file template/example

Required packages:
- python3.4 or python3.5
- pytest >=3.10,<4.0
- pexpect
- requests
- pyyaml
- selenium (firefox, ffmpeg, pyvirtualdisplay, Xvfb or Xephyr or Xvnc)

Limitations:
- Anything that requires copying from Test File Server will not work until
a public share is configured to shared test files. Tests skipped for now.

Co-Authored-By: Maria Yousaf <maria.yousaf@windriver.com>
Co-Authored-By: Marvin Huang <marvin.huang@windriver.com>
Co-Authored-By: Yosief Gebremariam <yosief.gebremariam@windriver.com>
Co-Authored-By: Paul Warner <paul.warner@windriver.com>
Co-Authored-By: Xueguang Ma <Xueguang.Ma@windriver.com>
Co-Authored-By: Charles Chen <charles.chen@windriver.com>
Co-Authored-By: Daniel Graziano <Daniel.Graziano@windriver.com>
Co-Authored-By: Jordan Li <jordan.li@windriver.com>
Co-Authored-By: Nimalini Rasa <nimalini.rasa@windriver.com>
Co-Authored-By: Senthil Mukundakumar <senthil.mukundakumar@windriver.com>
Co-Authored-By: Anuejyan Manokeran <anujeyan.manokeran@windriver.com>
Co-Authored-By: Peng Peng <peng.peng@windriver.com>
Co-Authored-By: Chris Winnicki <chris.winnicki@windriver.com>
Co-Authored-By: Joe Vimar <Joe.Vimar@windriver.com>
Co-Authored-By: Alex Kozyrev <alex.kozyrev@windriver.com>
Co-Authored-By: Jack Ding <jack.ding@windriver.com>
Co-Authored-By: Ming Lei <ming.lei@windriver.com>
Co-Authored-By: Ankit Jain <ankit.jain@windriver.com>
Co-Authored-By: Eric Barrett <eric.barrett@windriver.com>
Co-Authored-By: William Jia <william.jia@windriver.com>
Co-Authored-By: Joseph Richard <Joseph.Richard@windriver.com>
Co-Authored-By: Aldo Mcfarlane <aldo.mcfarlane@windriver.com>

Story: 2005892
Task: 33750
Signed-off-by: Yang Liu <yang.liu@windriver.com>

Change-Id: I7a88a47e09733d39f024144530f5abb9aee8cad2
2019-07-15 15:30:00 -04:00

87 lines
2.9 KiB
Python
Executable File

#
# Copyright (c) 2019 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
from pytest import fixture, mark
from consts import horizon
from consts.auth import Tenant
from consts.stx import GuestImages
from keywords import nova_helper
from utils.tis_log import LOG
from utils.horizon import helper
from utils.horizon.regions import messages
from utils.horizon.pages.project.compute import instancespage
@fixture(scope='function')
def instances_pg(tenant_home_pg_container, request):
LOG.fixture_step('Go to Project > Compute > Instance')
instance_name = helper.gen_resource_name('instance')
instances_pg = instancespage.InstancesPage(
tenant_home_pg_container.driver, port=tenant_home_pg_container.port)
instances_pg.go_to_target_page()
def teardown():
LOG.fixture_step('Back to instance page')
if instances_pg.is_instance_present(instance_name):
instances_pg.delete_instance_by_row(instance_name)
instances_pg.go_to_target_page()
request.addfinalizer(teardown)
return instances_pg, instance_name
@mark.sanity
@mark.cpe_sanity
@mark.sx_sanity
def test_horizon_create_delete_instance(instances_pg):
"""
Test the instance creation and deletion functionality:
Setups:
- Login as Tenant
- Go to Project > Compute > Instance
Teardown:
- Back to Instances page
- Logout
Test Steps:
- Create a new instance
- Verify the instance appears in the instances table as active
- Delete the newly lunched instance
- Verify the instance does not appear in the table after deletion
"""
instances_pg, instance_name = instances_pg
mgmt_net_name = '-'.join([Tenant.get_primary()['tenant'], 'mgmt', 'net'])
flavor_name = nova_helper.get_basic_flavor(rtn_id=False)
guest_img = GuestImages.DEFAULT['guest']
LOG.tc_step('Create new instance {}'.format(instance_name))
instances_pg.create_instance(instance_name,
boot_source_type='Image',
source_name=guest_img,
flavor_name=flavor_name,
network_names=mgmt_net_name,
create_new_volume=False)
assert not instances_pg.find_message_and_dismiss(messages.ERROR)
LOG.tc_step('Verify the instance appears in the instances table as active')
assert instances_pg.is_instance_active(instance_name)
LOG.tc_step('Delete instance {}'.format(instance_name))
instances_pg.delete_instance_by_row(instance_name)
assert instances_pg.find_message_and_dismiss(messages.INFO)
assert not instances_pg.find_message_and_dismiss(messages.ERROR)
LOG.tc_step(
'Verify the instance does not appear in the table after deletion')
assert instances_pg.is_instance_deleted(instance_name)
horizon.test_result = True