summaryrefslogtreecommitdiffstats
path: root/ipatests/test_webui/test_navigation.py
blob: 005cbfee34e4b7542c7abe580b820a765f680fed (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# Authors:
#   Petr Vobornik <pvoborni@redhat.com>
#
# Copyright (C) 2013  Red Hat
# see file 'COPYING' for use and warranty information
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""
Basic ui tests
"""

from ipatests.test_webui.ui_driver import UI_driver


ENTITIES = [
    'group',
    'user',
    'host',
    'hostgroup',
    'netgroup',
    'service',
    'dnszone',
    # TODO: dnsrecord
    'dnsconfig',
    'cert',
    'realmdomains',
    'hbacrule',
    'hbacsvc',
    'hbacsvcgroup',
    'hbactest',
    'sudorule',
    'sudocmd',
    'sudocmdgroup',
    'automountlocation',
    # TODO: add nested maps, keys
    'pwpolicy',
    'krbtpolicy',
    'selinuxusermap',
    'automember',
    # TODO: add different types
    'role',
    'privilege',
    'permission',
    'selfservice',
    'delegation',
    'idrange',
    'config',
    # TODO: add conditional
]

class test_navigation(UI_driver):

    def test_url_navigation(self):
        """
        Navigation test: direct url change
        """

        self.init_app()

        unsupported = []
        if not self.has_dns():
            unsupported.extend([
                    'dnszone',
                    'dnsconfig',
            ])
        if not self.has_ca():
            unsupported.append('cert')

        entities = [e for e in ENTITIES if e not in unsupported]

        for e in entities:
            self.wait_for_request()
            self.navigate_to_entity(e)
            self.assert_facet(e)
            url = self.get_url(e)
            self.assert_e_url(url, e)

    def test_menu_navigation(self):
        """
        Navigation test: menu items
        """

        self.init_app()

        # don't start by users (default)
        self.navigate_by_menu('identity/group', False)
        self.navigate_by_menu('identity/user', False)
        self.navigate_by_menu('identity/host', False)
        self.navigate_by_menu('identity/hostgroup', False)
        self.navigate_by_menu('identity/netgroup', False)
        self.navigate_by_menu('identity/service', False)
        if self.has_dns():
            self.navigate_by_menu('identity/dns', False)
            self.navigate_by_menu('identity/dns/dnsconfig', False)
            self.navigate_by_menu('identity/dns/dnszone', False)
        if self.has_ca():
            self.navigate_by_menu('identity/cert', False)
        self.navigate_by_menu('identity/realmdomains', False)
        self.navigate_by_menu('policy')
        self.navigate_by_menu('policy/hbac', False)
        self.navigate_by_menu('policy/hbac/hbacsvc', False)
        self.navigate_by_menu('policy/hbac/hbacrule', False)
        self.navigate_by_menu('policy/hbac/hbacsvcgroup', False)
        self.navigate_by_menu('policy/hbac/hbactest', False)
        self.navigate_by_menu('policy/sudo', False)
        self.navigate_by_menu('policy/sudo/sudorule', False)
        self.navigate_by_menu('policy/sudo/sudocmd', False)
        self.navigate_by_menu('policy/sudo/sudocmdgroup', False)
        self.navigate_by_menu('policy/automount', False)
        self.navigate_by_menu('policy/pwpolicy', False)
        self.navigate_by_menu('policy/krbtpolicy', False)
        self.navigate_by_menu('policy/selinuxusermap', False)
        self.navigate_by_menu('policy/automember', False)
        self.navigate_by_menu('policy/automember/amhostgroup', False)
        self.navigate_by_menu('policy/automember/amgroup', False)
        self.navigate_by_menu('ipaserver')
        self.navigate_by_menu('ipaserver/rolebased', False)
        self.navigate_by_menu('ipaserver/rolebased/privilege', False)
        self.navigate_by_menu('ipaserver/rolebased/role', False)
        self.navigate_by_menu('ipaserver/rolebased/permission', False)
        self.navigate_by_menu('ipaserver/selfservice', False)
        self.navigate_by_menu('ipaserver/delegation', False)
        self.navigate_by_menu('ipaserver/idrange', False)
        if self.has_trusts():
            self.navigate_by_menu('ipaserver/trusts', False)
            self.navigate_by_menu('ipaserver/trusts/trust', False)
            self.navigate_by_menu('ipaserver/trusts/trustconfig', False)
        self.navigate_by_menu('ipaserver/config', False)


    def assert_e_url(self, url, e):
        """
        Assert correct url for entity
        """
        if not self.driver.current_url.startswith(url):
            msg = 'Invalid url for: %s' % e
            raise AssertionError(msg)