diff options
author | rcritten@redhat.com <rcritten@redhat.com> | 2007-09-21 10:24:36 -0400 |
---|---|---|
committer | rcritten@redhat.com <rcritten@redhat.com> | 2007-09-21 10:24:36 -0400 |
commit | 7b969737112c7a26711c3d4a9713ef1ca30f1be8 (patch) | |
tree | 27c9475aaa3951de88eabedfe2e1a125225fe2fe /ipa-python/test | |
parent | 919d037189cd3134d3eb4ba07b5ce131f018936f (diff) | |
download | freeipa-7b969737112c7a26711c3d4a9713ef1ca30f1be8.tar.gz freeipa-7b969737112c7a26711c3d4a9713ef1ca30f1be8.tar.xz freeipa-7b969737112c7a26711c3d4a9713ef1ca30f1be8.zip |
Give ipa-adduser, ipa-addgroup and ipa-usermod an interactive mode
Add ipa-passwd tool
Add simple field validation package
This patch adds a package requirement, python-krbV. This is needed to
determine the current user based on their kerberos ticket.
Diffstat (limited to 'ipa-python/test')
-rw-r--r-- | ipa-python/test/test_ipavalidate.py | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/ipa-python/test/test_ipavalidate.py b/ipa-python/test/test_ipavalidate.py new file mode 100644 index 000000000..507f7e022 --- /dev/null +++ b/ipa-python/test/test_ipavalidate.py @@ -0,0 +1,70 @@ +#! /usr/bin/python -E +# +# Copyright (C) 2007 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; version 2 or later +# +# 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, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# + +import sys +sys.path.insert(0, ".") + +import unittest + +import ipavalidate + +class TestValidate(unittest.TestCase): + def setUp(self): + pass + + def tearDown(self): + pass + + def test_validemail(self): + self.assertEqual(0, ipavalidate.email("test@freeipa.org")) + self.assertEqual(0, ipavalidate.email("", notEmpty=False)) + + def test_invalidemail(self): + self.assertEqual(1, ipavalidate.email("test")) + self.assertEqual(1, ipavalidate.email("test@freeipa")) + self.assertEqual(1, ipavalidate.email("test@.com")) + self.assertEqual(1, ipavalidate.email("")) + self.assertEqual(1, ipavalidate.email(None)) + + def test_validplain(self): + self.assertEqual(0, ipavalidate.plain("Joe User")) + self.assertEqual(0, ipavalidate.plain("Joe O'Malley")) + self.assertEqual(0, ipavalidate.plain("", notEmpty=False)) + self.assertEqual(0, ipavalidate.plain(None, notEmpty=False)) + + def test_invalidplain(self): + self.assertEqual(1, ipavalidate.plain("Joe (User)")) + self.assertEqual(1, ipavalidate.plain("", notEmpty=True)) + self.assertEqual(1, ipavalidate.plain(None, notEmpty=True)) + + def test_validpath(self): + self.assertEqual(0, ipavalidate.path("/")) + self.assertEqual(0, ipavalidate.path("/home/user")) + self.assertEqual(0, ipavalidate.path("../home/user")) + self.assertEqual(0, ipavalidate.path("", notEmpty=False)) + self.assertEqual(0, ipavalidate.path(None, notEmpty=False)) + + def test_invalidpath(self): + self.assertEqual(1, ipavalidate.path("(foo)")) + self.assertEqual(1, ipavalidate.path("", notEmpty=True)) + self.assertEqual(1, ipavalidate.path(None, notEmpty=True)) + +if __name__ == '__main__': + unittest.main() + |