1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
import uuid
from . import GalaxyTestBase
class TestGalaxyRoles(GalaxyTestBase.GalaxyTestBase):
def setUp(self):
super().setUp()
self.name = f"test_{uuid.uuid4().hex}"
self.description = "automated test role"
self.role = self.gi.roles.create_role(self.name, self.description)
def tearDown(self):
# As of 2017/07/26, deleting a role is not possible through the API
pass
def test_get_roles(self):
roles = self.gi.roles.get_roles()
for role in roles:
assert role["id"] is not None
assert role["name"] is not None
def test_create_role(self):
assert self.role["name"] == self.name
assert self.role["description"] == self.description
assert self.role["id"] is not None
|