| nogalesb | 5ac13c7 | 2018-10-25 13:21:22 +0200 | [diff] [blame] | 1 | #!/usr/bin/python3 |
| 2 | # |
| Adam Israel | 5c78e63 | 2018-11-14 11:30:40 -0500 | [diff] [blame] | 3 | # OSM devops/charms - Ansible charm inside OSM devops |
| nogalesb | 5ac13c7 | 2018-10-25 13:21:22 +0200 | [diff] [blame] | 4 | # |
| 5 | # Copyright 2017-2018 Universidad Carlos III de Madrid |
| 6 | # |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | # |
| 19 | |
| 20 | import amulet |
| 21 | import requests |
| 22 | import unittest |
| 23 | |
| 24 | |
| 25 | class TestCharm(unittest.TestCase): |
| 26 | def setUp(self): |
| 27 | self.d = amulet.Deployment() |
| 28 | |
| 29 | self.d.add('ansible-charm') |
| 30 | self.d.expose('ansible-charm') |
| 31 | |
| 32 | self.d.setup(timeout=900) |
| 33 | self.d.sentry.wait() |
| 34 | |
| 35 | self.unit = self.d.sentry['ansible-charm'][0] |
| 36 | |
| 37 | def test_service(self): |
| 38 | # test we can access over http |
| 39 | page = requests.get('http://{}'.format(self.unit.info['public-address'])) |
| 40 | self.assertEqual(page.status_code, 200) |
| 41 | # Now you can use self.d.sentry[SERVICE][UNIT] to address each of the units and perform |
| 42 | # more in-depth steps. Each self.d.sentry[SERVICE][UNIT] has the following methods: |
| 43 | # - .info - An array of the information of that unit from Juju |
| 44 | # - .file(PATH) - Get the details of a file on that unit |
| 45 | # - .file_contents(PATH) - Get plain text output of PATH file from that unit |
| 46 | # - .directory(PATH) - Get details of directory |
| 47 | # - .directory_contents(PATH) - List files and folders in PATH on that unit |
| 48 | # - .relation(relation, service:rel) - Get relation data from return service |
| 49 | |
| Adam Israel | 5c78e63 | 2018-11-14 11:30:40 -0500 | [diff] [blame] | 50 | |
| nogalesb | 5ac13c7 | 2018-10-25 13:21:22 +0200 | [diff] [blame] | 51 | if __name__ == '__main__': |
| 52 | unittest.main() |