summaryrefslogtreecommitdiffstats
path: root/ipatests/test_integration/test_advise.py
blob: 82d6d84cfd6e987dcbe5b8a9214a1c5eeeadf052 (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
# Authors:
#   Gabe Alford <redhatrises@gmail.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/>.

# FIXME: Pylint errors
# pylint: disable=no-member

import re
from ipatests.test_integration import tasks
from ipatests.test_integration.base import IntegrationTest


def run_advice(master, advice_id, advice_regex, raiseerr):
    # Obtain the advice from the server
    tasks.kinit_admin(master)
    result = master.run_command(['ipa-advise', advice_id],
                                     raiseonerr=raiseerr)

    if not result.stdout_text:
        advice = result.stderr_text
    else:
        advice = result.stdout_text

    assert re.search(advice_regex, advice, re.S)


class TestAdvice(IntegrationTest):
    """
    Tests ipa-advise output.
    """
    advice_id = None
    raiseerr = None
    advice_regex = ''
    topology = 'line'

    def test_invalid_advice(self):
        advice_id = 'invalid-advise-param'
        advice_regex = "invalid[\s]+\'advice\'.*"
        raiseerr = False

        run_advice(self.master, advice_id, advice_regex, raiseerr)


    def test_advice_FedoraAuthconfig(self):
        advice_id = 'config-fedora-authconfig'
        advice_regex = "\#\!\/bin\/sh.*" \
                       "authconfig[\s]+\-\-enableldap[\s]+" \
                       "\-\-ldapserver\=.*[\s]+\-\-enablerfc2307bis[\s]+" \
                       "\-\-enablekrb5"
        raiseerr = True

        run_advice(self.master, advice_id, advice_regex, raiseerr)


    def test_advice_FreeBSDNSSPAM(self):
        advice_id = 'config-freebsd-nss-pam-ldapd'
        advice_regex = "\#\!\/bin\/sh.*" \
                       "pkg_add[\s]+\-r[\s]+nss\-pam\-ldapd[\s]+curl.*" \
                       "\/usr\/local\/etc\/rc\.d\/nslcd[\s]+restart"
        raiseerr = True

        run_advice(self.master, advice_id, advice_regex, raiseerr)


    def test_advice_GenericNSSPAM(self):
        advice_id = 'config-generic-linux-nss-pam-ldapd'
        advice_regex = "\#\!\/bin\/sh.*" \
                       "apt\-get[\s]+\-y[\s]+install[\s]+curl[\s]+openssl[\s]+" \
                       "libnss\-ldapd[\s]+libpam\-ldapd[\s]+nslcd.*" \
                       "service[\s]+nscd[\s]+stop[\s]+\&\&[\s]+service[\s]+" \
                       "nslcd[\s]+restart"
        raiseerr = True

        run_advice(self.master, advice_id, advice_regex, raiseerr)


    def test_advice_GenericSSSDBefore19(self):
        advice_id = 'config-generic-linux-sssd-before-1-9'
        advice_regex = "\#\!\/bin\/sh.*" \
                       "apt\-get[\s]+\-y[\s]+install sssd curl openssl.*" \
                       "service[\s]+sssd[\s]+start"
        raiseerr = True

        run_advice(self.master, advice_id, advice_regex, raiseerr)


    def test_advice_RedHatNSS(self):
        advice_id = 'config-redhat-nss-ldap'
        advice_regex = "\#\!\/bin\/sh.*" \
                       "yum[\s]+install[\s]+\-y[\s]+curl[\s]+openssl[\s]+nss_ldap" \
                       "[\s]+authconfig.*authconfig[\s]+\-\-updateall" \
                       "[\s]+\-\-enableldap[\s]+\-\-enableldaptls"\
                       "[\s]+\-\-enableldapauth[\s]+" \
                       "\-\-ldapserver=.*[\s]+\-\-ldapbasedn=.*"
        raiseerr = True

        run_advice(self.master, advice_id, advice_regex, raiseerr)


    def test_advice_RedHatNSSPAM(self):
        advice_id = 'config-redhat-nss-pam-ldapd'
        advice_regex = "\#\!\/bin\/sh.*" \
                       "yum[\s]+install[\s]+\-y[\s]+curl[\s]+openssl[\s]+" \
                       "nss\-pam\-ldapd[\s]+pam_ldap[\s]+authconfig.*" \
                       "authconfig[\s]+\-\-updateall[\s]+\-\-enableldap"\
                       "[\s]+\-\-enableldaptls[\s]+\-\-enableldapauth[\s]+" \
                       "\-\-ldapserver=.*[\s]+\-\-ldapbasedn=.*"
        raiseerr = True

        run_advice(self.master, advice_id, advice_regex, raiseerr)


    def test_advice_RedHatSSSDBefore19(self):
        advice_id = 'config-redhat-sssd-before-1-9'
        advice_regex = "\#\!\/bin\/sh.*" \
                       "yum[\s]+install[\s]+\-y[\s]+sssd[\s]+authconfig[\s]+" \
                       "curl[\s]+openssl.*service[\s]+sssd[\s]+start"
        raiseerr = True

        run_advice(self.master, advice_id, advice_regex, raiseerr)