X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fintegration%2Ftest_application.py;h=b7058322894c14e4e6b92d74f8e874a1f922919d;hb=HEAD;hp=1a4fcaabd027ce853f027cd50be2a3575dda21bd;hpb=dcdf82bbc1ef310379f746518b2dd3b006353cb3;p=osm%2FN2VC.git diff --git a/tests/integration/test_application.py b/tests/integration/test_application.py deleted file mode 100644 index 1a4fcaa..0000000 --- a/tests/integration/test_application.py +++ /dev/null @@ -1,94 +0,0 @@ -import pytest - -from .. import base - -MB = 1 - - -@base.bootstrapped -@pytest.mark.asyncio -async def test_action(event_loop): - async with base.CleanModel() as model: - ubuntu_app = await model.deploy( - 'mysql', - application_name='mysql', - series='trusty', - channel='stable', - config={ - 'tuning-level': 'safest', - }, - constraints={ - 'mem': 256 * MB, - }, - ) - - # update and check app config - await ubuntu_app.set_config({'tuning-level': 'fast'}) - config = await ubuntu_app.get_config() - assert config['tuning-level']['value'] == 'fast' - - # update and check app constraints - await ubuntu_app.set_constraints({'mem': 512 * MB}) - constraints = await ubuntu_app.get_constraints() - assert constraints['mem'] == 512 * MB - - -@base.bootstrapped -@pytest.mark.asyncio -async def test_add_units(event_loop): - from juju.unit import Unit - - async with base.CleanModel() as model: - app = await model.deploy( - 'ubuntu-0', - application_name='ubuntu', - series='trusty', - channel='stable', - ) - units = await app.add_units(count=2) - - assert len(units) == 2 - for unit in units: - assert isinstance(unit, Unit) - - -@base.bootstrapped -@pytest.mark.asyncio -async def test_upgrade_charm(event_loop): - async with base.CleanModel() as model: - app = await model.deploy('ubuntu-0') - assert app.data['charm-url'] == 'cs:ubuntu-0' - await app.upgrade_charm() - assert app.data['charm-url'].startswith('cs:ubuntu-') - assert app.data['charm-url'] != 'cs:ubuntu-0' - - -@base.bootstrapped -@pytest.mark.asyncio -async def test_upgrade_charm_channel(event_loop): - async with base.CleanModel() as model: - app = await model.deploy('ubuntu-0') - assert app.data['charm-url'] == 'cs:ubuntu-0' - await app.upgrade_charm(channel='stable') - assert app.data['charm-url'].startswith('cs:ubuntu-') - assert app.data['charm-url'] != 'cs:ubuntu-0' - - -@base.bootstrapped -@pytest.mark.asyncio -async def test_upgrade_charm_revision(event_loop): - async with base.CleanModel() as model: - app = await model.deploy('ubuntu-0') - assert app.data['charm-url'] == 'cs:ubuntu-0' - await app.upgrade_charm(revision=8) - assert app.data['charm-url'] == 'cs:ubuntu-8' - - -@base.bootstrapped -@pytest.mark.asyncio -async def test_upgrade_charm_switch(event_loop): - async with base.CleanModel() as model: - app = await model.deploy('ubuntu-0') - assert app.data['charm-url'] == 'cs:ubuntu-0' - await app.upgrade_charm(switch='ubuntu-8') - assert app.data['charm-url'] == 'cs:ubuntu-8'