X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=layers%2Fnetutils%2Ftests%2F10-deploy;fp=layers%2Fnetutils%2Ftests%2F10-deploy;h=0000000000000000000000000000000000000000;hb=7873b95378885e2f226ff7c33abc96a6883c107b;hp=ef269cdaaa5799d1ecc07373e80814705724f9d7;hpb=24a06f011a425ebf9c3f2051238c7c5e73541477;p=osm%2Fdevops.git diff --git a/layers/netutils/tests/10-deploy b/layers/netutils/tests/10-deploy deleted file mode 100755 index ef269cda..00000000 --- a/layers/netutils/tests/10-deploy +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/python3 - -import amulet -import requests -import unittest - - -class TestCharm(unittest.TestCase): - def setUp(self): - self.d = amulet.Deployment() - - self.d.add('layer-netutils') - self.d.expose('layer-netutils') - - self.d.setup(timeout=900) - self.d.sentry.wait() - - self.unit = self.d.sentry['layer-netutils'][0] - - def test_service(self): - # test we can access over http - page = requests.get('http://{}'.format(self.unit.info['public-address'])) - self.assertEqual(page.status_code, 200) - # Now you can use self.d.sentry[SERVICE][UNIT] to address each of the units and perform - # more in-depth steps. Each self.d.sentry[SERVICE][UNIT] has the following methods: - # - .info - An array of the information of that unit from Juju - # - .file(PATH) - Get the details of a file on that unit - # - .file_contents(PATH) - Get plain text output of PATH file from that unit - # - .directory(PATH) - Get details of directory - # - .directory_contents(PATH) - List files and folders in PATH on that unit - # - .relation(relation, service:rel) - Get relation data from return service