File: TestGalaxyRoles.py

package info (click to toggle)
python-bioblend 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,096 kB
  • sloc: python: 7,596; sh: 219; makefile: 158
file content (26 lines) | stat: -rw-r--r-- 796 bytes parent folder | download | duplicates (2)
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