summaryrefslogtreecommitdiffstats
path: root/src/account/test/common.py
blob: 28060abf5a86e3d2ab8fda7adc5481f59a3f1ddc (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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
# -*- encoding: utf-8 -*-
# Copyright (C) 2012-2014 Red Hat, Inc.  All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
#
# Authors: Roman Rakus <rrakus@redhat.com>
#
"""
Base class and utilities for all OpenLMI Account tests.
"""

import os
import subprocess
from collections import defaultdict

from methods import field_is_unique
from lmi.test import lmibase
from lmi.test.util import random_string


class AccountBase(lmibase.LmiTestCase):
    """
    Base class for all LMI Account tests.
    """

    USE_EXCEPTIONS = True

    @classmethod
    def setUpClass(cls):
        lmibase.LmiTestCase.setUpClass.im_func(cls)
        cls.user_name = os.environ.get("LMI_ACCOUNT_USER")
        cls.group_name = os.environ.get("LMI_ACCOUNT_GROUP")


class PasswdFile():
    """
    Parse /etc/passwd and perform basic heuristics to assess validity.

    By heuristics, I mean it's OK to include here what is considered to
    be "normal", or "expected" rather than strictly vaid/invalid.  For
    example, you can consider "not normal" to have UID!=GID, but depending
    on what you did, it could be OK.  OTOH, keep in mind that more specific
    things should be in the test itself.
    """

    DEFAULT_OPTIONS = {
        'username_prefix': 'user',
        'unique': [
            "name",
            "uid",
        ]
    }

    def __init__(self, options=None):
        self.options = self.__class__.DEFAULT_OPTIONS
        if options is not None:
            self.options.update(options)
        self.users = []

        with open('/etc/passwd') as pf:
            lines = pf.readlines()
        self.fulltext = "".join(lines)

        for line in lines:
            fields = line.split(":")
            user = {
                "name": fields[0],
                "password": fields[1],
                "uid": fields[2],
                "gid": fields[3],
                "gecos": fields[4],
                "directory": fields[5],
                "shell": fields[6],
            }
            if user['name'].startswith(self.options['username_prefix']):
                self.users.append(user)

    def find_dups(self):
        """
        Find dups in fields that should be unique
        """
        dups = defaultdict(int)
        for field in self.options['unique']:
            if not field_is_unique(field, self.users):
                dups[field] += 1
        return dict(dups)

    def get_errors(self):
        """
        Get hash of errors.
        """
        errlist = {}
        dups = self.find_dups()
        if dups:
            errlist['duplicates'] = dups
        return errlist

    def get_names(self):
        """
        Get list of user names
        """
        return [u['name'] for u in self.users]


class UserOps(object):

    @classmethod
    def _field_in_group(cls, groupname, number):
        """
        Return numberth field in /etc/group for given groupname
        """
        for line in open("/etc/group").readlines():
            if line.startswith(groupname):
                return line.split(":")[number].strip()

    @classmethod
    def add_user_to_group(cls, username, groupname):
        """
        Will add user to group
        """
        subprocess.check_call(["usermod", "-a", "-G", groupname, username])

    @classmethod
    def clean_account(cls, name):
        """
        Force to delete testing account and remove home dir
        """
        if cls.is_user(name):
            subprocess.check_call(["userdel", "-fr", name])
        if cls.is_group(name):
            # groups should be expicitely deleted
            subprocess.check_call(["groupdel", name])

    @classmethod
    def clean_group(cls, group):
        """
        Force to delete testing group
        """
        if cls.is_group(group):
            subprocess.check_call(["groupdel", group])

    @classmethod
    def create_account(cls, username):
        """
        Force to create account; run clean_account before creation
        """
        if not cls.is_user(username):
            subprocess.check_call(["useradd", username])

    @classmethod
    def create_group(cls, group_name):
        """
        Force to create group
        """
        if not cls.is_group(group_name):
            subprocess.check_call(["groupadd", group_name])

    @classmethod
    def list_users(cls):
        """
        List user names currently on the system
        """
        accts = []
        for line in open("/etc/passwd").readlines():
            acct, __ = line.split(":", 1)
            accts.append(acct)
        return accts

    @classmethod
    def list_groups(cls):
        """
        List group names currently on the system
        """
        accts = []
        for line in open("/etc/group").readlines():
            acct, __ = line.split(":", 1)
            accts.append(acct)
        return accts

    @classmethod
    def is_group(cls, name):
        """
        Return true/false if user does/does not exist
        """
        return name in cls.list_groups()

    @classmethod
    def is_user(cls, name):
        """
        Return true/false if user does/does not exist
        """
        return name in cls.list_users()


class TestUserSet(object):
    """
    Class to hold list of "testing" users, able to make up new names
    """

    def __init__(self, prefix="test_user_", strength=8):
        self.prefix = prefix
        self.strength = strength
        self._our_users = set()

    def _new_name(self):
        """
        Make up a name that is not yet on the system
        """
        name = None
        existing = UserOps.list_users()
        while not name or name in existing:
            name = random_string(strength=self.strength, prefix=self.prefix)
        return name

    def add(self, name=None):
        """
        Create a testing user; return the name
        """
        name = name if name else self._new_name()
        UserOps.create_account(name)
        self._our_users.add(name)
        return name

    def remove(self, name=None):
        """
        Remove given user or a random one; return the removed name
        """
        try:
            name = name if name else next(iter(self._our_users))
            assert name in self._our_users
        except StopIteration:   # from above next() call
            raise ValueError("no more testing users")
        except AssertionError:
            raise ValueError("not our testing user: %s" % name)
        UserOps.clean_account(name)
        self._our_users.remove(name)
        return name

    def remove_all(self):
        """
        Remove all testing users
        """
        while self._our_users:
            UserOps.clean_account(self._our_users.pop())