예제 #1
0
def test_zone_add_cancel_validation():
    zone = conf.Zone(name=fauxfactory.gen_alphanumeric(5),
                     description=fauxfactory.gen_alphanumeric(8))
    zone.create(cancel=True)
    if version.current_version() >= 5.6:
        msg = 'Add of new Zone was cancelled by the user'
    else:
        msg = 'Add of new Miq Zone was cancelled by the user'
    flash.assert_message_match(msg)
예제 #2
0
def test_zone_change_appliance_zone(request):
    """ Tests that an appliance can be changed to another Zone """
    zone = conf.Zone(name=fauxfactory.gen_alphanumeric(5),
                     description=fauxfactory.gen_alphanumeric(8))
    request.addfinalizer(zone.delete)
    request.addfinalizer(
        conf.BasicInformation(appliance_zone="default").update)
    zone.create()
    basic_info = conf.BasicInformation(appliance_zone=zone.name)
    basic_info.update()
    assert zone.description == conf.server_zone_description()
    basic_info = conf.BasicInformation(appliance_zone="default")
    basic_info.update()
예제 #3
0
def test_zone_crud(soft_assert):
    zone = conf.Zone(name=fauxfactory.gen_alphanumeric(5),
                     description=fauxfactory.gen_alphanumeric(8))
    # CREATE
    zone.create()
    soft_assert(zone.exists,
                "The zone {} does not exist!".format(zone.description))
    # UPDATE
    old_desc = zone.description
    with update(zone):
        zone.description = fauxfactory.gen_alphanumeric(8)
    soft_assert(zone.exists and (old_desc != zone.description),
                "The zone {} was not updated!".format(zone.description))
    # DELETE
    zone.delete()
    soft_assert(not zone.exists,
                "The zone {} exists!".format(zone.description))
예제 #4
0
def test_zone_add_cancel_validation():
    zone = conf.Zone(name=fauxfactory.gen_alphanumeric(5),
                     description=fauxfactory.gen_alphanumeric(8))
    zone.create(cancel=True)
    flash.assert_message_match('Add of new Miq Zone was cancelled by the user')