summaryrefslogtreecommitdiffstats
path: root/tests/test_install
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-05-21 13:40:27 +0200
committerMartin Kosek <mkosek@redhat.com>2013-06-17 19:22:50 +0200
commitc60142efda817f030a7495cd6fe4a19953e55afa (patch)
tree31a840ceddd4381311bbc879f9851bb71a8e2ffa /tests/test_install
parent6d66e826c1c248dffc80056b20c1e4b74b04d46f (diff)
downloadfreeipa-c60142efda817f030a7495cd6fe4a19953e55afa.tar.gz
freeipa-c60142efda817f030a7495cd6fe4a19953e55afa.tar.xz
freeipa-c60142efda817f030a7495cd6fe4a19953e55afa.zip
Make an ipa-tests package
Rename the 'tests' directory to 'ipa-tests', and create an ipa-tests RPM containing the test suite Part of the work for: https://fedorahosted.org/freeipa/ticket/3654
Diffstat (limited to 'tests/test_install')
-rw-r--r--tests/test_install/0_reset.update5
-rw-r--r--tests/test_install/1_add.update22
-rw-r--r--tests/test_install/2_update.update3
-rw-r--r--tests/test_install/3_update.update3
-rw-r--r--tests/test_install/4_update.update4
-rw-r--r--tests/test_install/5_update.update3
-rw-r--r--tests/test_install/6_update.update3
-rw-r--r--tests/test_install/8_badsyntax.update3
-rw-r--r--tests/test_install/9_badsyntax.update3
-rw-r--r--tests/test_install/__init__.py22
-rw-r--r--tests/test_install/test_updates.py337
11 files changed, 0 insertions, 408 deletions
diff --git a/tests/test_install/0_reset.update b/tests/test_install/0_reset.update
deleted file mode 100644
index bd6ee636d..000000000
--- a/tests/test_install/0_reset.update
+++ /dev/null
@@ -1,5 +0,0 @@
-dn: uid=tuser, cn=test, cn=accounts, $SUFFIX
-deleteentry:
-
-dn: cn=test, cn=accounts, $SUFFIX
-deleteentry: reset: nada
diff --git a/tests/test_install/1_add.update b/tests/test_install/1_add.update
deleted file mode 100644
index 2543a71f2..000000000
--- a/tests/test_install/1_add.update
+++ /dev/null
@@ -1,22 +0,0 @@
-# Add in a new place in the DIT for our test cases
-
-dn: cn=test, cn=accounts, $SUFFIX
-add:objectClass: top
-add:objectClass: nsContainer
-add:cn: test
-
-# Add a test user
-dn: uid=tuser, cn=test, cn=accounts, $SUFFIX
-add:objectclass: top
-add:objectclass: person
-add:objectclass: posixaccount
-add:objectclass: krbprincipalaux
-add:objectclass: inetuser
-add:homedirectory: /home/tuser
-add:loginshell: /bin/bash
-add:sn: User
-add:uid: tuser
-add:uidnumber: -1
-add:gidnumber: -1
-add:cn: Test User
-
diff --git a/tests/test_install/2_update.update b/tests/test_install/2_update.update
deleted file mode 100644
index 0d4d38e0b..000000000
--- a/tests/test_install/2_update.update
+++ /dev/null
@@ -1,3 +0,0 @@
-dn: uid=tuser, cn=test, cn=accounts, $SUFFIX
-add:gecos: Test User
-
diff --git a/tests/test_install/3_update.update b/tests/test_install/3_update.update
deleted file mode 100644
index c938b43a3..000000000
--- a/tests/test_install/3_update.update
+++ /dev/null
@@ -1,3 +0,0 @@
-dn: uid=tuser, cn=test, cn=accounts, $SUFFIX
-only:gecos: Test User New
-
diff --git a/tests/test_install/4_update.update b/tests/test_install/4_update.update
deleted file mode 100644
index 0aef7494f..000000000
--- a/tests/test_install/4_update.update
+++ /dev/null
@@ -1,4 +0,0 @@
-# Replace the existing SINGLE-VALUE gecos with a new value thru add
-dn: uid=tuser, cn=test, cn=accounts, $SUFFIX
-add:gecos: Test User New2
-
diff --git a/tests/test_install/5_update.update b/tests/test_install/5_update.update
deleted file mode 100644
index b0a7190ea..000000000
--- a/tests/test_install/5_update.update
+++ /dev/null
@@ -1,3 +0,0 @@
-dn: uid=tuser, cn=test, cn=accounts, $SUFFIX
-add:cn: Test User New
-
diff --git a/tests/test_install/6_update.update b/tests/test_install/6_update.update
deleted file mode 100644
index d398c1d4d..000000000
--- a/tests/test_install/6_update.update
+++ /dev/null
@@ -1,3 +0,0 @@
-dn: uid=tuser, cn=test, cn=accounts, $SUFFIX
-remove:cn: Test User New
-
diff --git a/tests/test_install/8_badsyntax.update b/tests/test_install/8_badsyntax.update
deleted file mode 100644
index 1e878964c..000000000
--- a/tests/test_install/8_badsyntax.update
+++ /dev/null
@@ -1,3 +0,0 @@
-dn: uid=tuser, cn=test, cn=accounts, $SUFFIX
-bogus:cn: Test User New
-
diff --git a/tests/test_install/9_badsyntax.update b/tests/test_install/9_badsyntax.update
deleted file mode 100644
index fd6d4580b..000000000
--- a/tests/test_install/9_badsyntax.update
+++ /dev/null
@@ -1,3 +0,0 @@
-dn: uid=tuser, cn=test, cn=accounts, $SUFFIX
-add:cn
-
diff --git a/tests/test_install/__init__.py b/tests/test_install/__init__.py
deleted file mode 100644
index 0ca31f1e3..000000000
--- a/tests/test_install/__init__.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# Authors:
-# Jason Gerard DeRose <jderose@redhat.com>
-#
-# Copyright (C) 2008 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/>.
-
-"""
-Package containing LDAP updates unit tests.
-"""
diff --git a/tests/test_install/test_updates.py b/tests/test_install/test_updates.py
deleted file mode 100644
index b974aa397..000000000
--- a/tests/test_install/test_updates.py
+++ /dev/null
@@ -1,337 +0,0 @@
-# Authors:
-# Rob Crittenden <rcritten@redhat.com>
-#
-# Copyright (C) 2009 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/>.
-"""
-Test the `ipaserver/install/ldapupdate.py` module.
-"""
-
-import unittest
-import os
-
-import nose
-
-from ipalib import api
-from ipalib import errors
-from ipaserver.install.ldapupdate import LDAPUpdate, BadSyntax
-from ipaserver.install import installutils
-from ipapython import ipautil, ipaldap
-from ipapython.dn import DN
-
-"""
-The updater works through files only so this is just a thin-wrapper controlling
-which file we test at any given point.
-
-IMPORTANT NOTE: It is easy for these tests to get out of sync. Any changes
-made to the update files may require changes to the test cases as well.
-Some cases pull records from LDAP and do comparisons to ensure that updates
-have occurred as expected.
-
-The DM password needs to be set in ~/.ipa/.dmpw
-"""
-
-class test_update(unittest.TestCase):
- """
- Test the LDAP updater.
- """
-
- def setUp(self):
- fqdn = installutils.get_fqdn()
- pwfile = api.env.dot_ipa + os.sep + ".dmpw"
- if ipautil.file_exists(pwfile):
- fp = open(pwfile, "r")
- self.dm_password = fp.read().rstrip()
- fp.close()
- else:
- raise nose.SkipTest("No directory manager password")
- self.updater = LDAPUpdate(dm_password=self.dm_password, sub_dict={}, live_run=True)
- self.ld = ipaldap.IPAdmin(fqdn)
- self.ld.do_simple_bind(bindpw=self.dm_password)
- if ipautil.file_exists("0_reset.update"):
- self.testdir="./"
- elif ipautil.file_exists("tests/test_install/0_reset.update"):
- self.testdir= "./tests/test_install/"
- else:
- raise nose.SkipTest("Unable to find test update files")
-
- self.container_dn = DN(self.updater._template_str('cn=test, cn=accounts, $SUFFIX'))
- self.user_dn = DN(self.updater._template_str('uid=tuser, cn=test, cn=accounts, $SUFFIX'))
-
- def tearDown(self):
- if self.ld:
- self.ld.unbind()
-
- def test_0_reset(self):
- """
- Reset the updater test data to a known initial state (test_0_reset)
- """
- try:
- modified = self.updater.update([self.testdir + "0_reset.update"])
- except errors.NotFound:
- # Just means the entry doesn't exist yet
- modified = True
-
- self.assertTrue(modified)
-
- with self.assertRaises(errors.NotFound):
- entries = self.ld.get_entries(
- self.container_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
-
- with self.assertRaises(errors.NotFound):
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
-
- def test_1_add(self):
- """
- Test the updater with an add directive (test_1_add)
- """
- modified = self.updater.update([self.testdir + "1_add.update"])
-
- self.assertTrue(modified)
-
- entries = self.ld.get_entries(
- self.container_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
- self.assertEqual(len(entries), 1)
- entry = entries[0]
-
- objectclasses = entry.get('objectclass')
- for item in ('top', 'nsContainer'):
- self.assertTrue(item in objectclasses)
-
- self.assertEqual(entry.single_value('cn'), 'test')
-
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
- self.assertEqual(len(entries), 1)
- entry = entries[0]
-
- objectclasses = entry.get('objectclass')
- for item in ('top', 'person', 'posixaccount', 'krbprincipalaux', 'inetuser'):
- self.assertTrue(item in objectclasses)
-
- self.assertEqual(entry.single_value('loginshell'), '/bin/bash')
- self.assertEqual(entry.single_value('sn'), 'User')
- self.assertEqual(entry.single_value('uid'), 'tuser')
- self.assertEqual(entry.single_value('cn'), 'Test User')
-
-
- def test_2_update(self):
- """
- Test the updater when adding an attribute to an existing entry (test_2_update)
- """
- modified = self.updater.update([self.testdir + "2_update.update"])
- self.assertTrue(modified)
-
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
- self.assertEqual(len(entries), 1)
- entry = entries[0]
- self.assertEqual(entry.single_value('gecos'), 'Test User')
-
- def test_3_update(self):
- """
- Test the updater forcing an attribute to a given value (test_3_update)
- """
- modified = self.updater.update([self.testdir + "3_update.update"])
- self.assertTrue(modified)
-
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
- self.assertEqual(len(entries), 1)
- entry = entries[0]
- self.assertEqual(entry.single_value('gecos'), 'Test User New')
-
- def test_4_update(self):
- """
- Test the updater adding a new value to a single-valued attribute (test_4_update)
- """
- modified = self.updater.update([self.testdir + "4_update.update"])
- self.assertTrue(modified)
-
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
- self.assertEqual(len(entries), 1)
- entry = entries[0]
- self.assertEqual(entry.single_value('gecos'), 'Test User New2')
-
- def test_5_update(self):
- """
- Test the updater adding a new value to a multi-valued attribute (test_5_update)
- """
- modified = self.updater.update([self.testdir + "5_update.update"])
- self.assertTrue(modified)
-
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
- self.assertEqual(len(entries), 1)
- entry = entries[0]
- self.assertEqual(sorted(entry.get('cn')), sorted(['Test User', 'Test User New']))
-
- def test_6_update(self):
- """
- Test the updater removing a value from a multi-valued attribute (test_6_update)
- """
- modified = self.updater.update([self.testdir + "6_update.update"])
- self.assertTrue(modified)
-
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
- self.assertEqual(len(entries), 1)
- entry = entries[0]
- self.assertEqual(sorted(entry.get('cn')), sorted(['Test User']))
-
- def test_6_update_1(self):
- """
- Test the updater removing a non-existent value from a multi-valued attribute (test_6_update_1)
- """
- modified = self.updater.update([self.testdir + "6_update.update"])
- self.assertFalse(modified)
-
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
- self.assertEqual(len(entries), 1)
- entry = entries[0]
- self.assertEqual(sorted(entry.get('cn')), sorted(['Test User']))
-
- def test_7_cleanup(self):
- """
- Reset the test data to a known initial state (test_7_cleanup)
- """
- try:
- modified = self.updater.update([self.testdir + "0_reset.update"])
- except errors.NotFound:
- # Just means the entry doesn't exist yet
- modified = True
-
- self.assertTrue(modified)
-
- with self.assertRaises(errors.NotFound):
- entries = self.ld.get_entries(
- self.container_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
-
- with self.assertRaises(errors.NotFound):
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
-
- def test_8_badsyntax(self):
- """
- Test the updater with an unknown keyword (test_8_badsyntax)
- """
- with self.assertRaises(BadSyntax):
- modified = self.updater.update([self.testdir + "8_badsyntax.update"])
-
- def test_9_badsyntax(self):
- """
- Test the updater with an incomplete line (test_9_badsyntax)
- """
- with self.assertRaises(BadSyntax):
- modified = self.updater.update([self.testdir + "9_badsyntax.update"])
-
- def test_from_dict(self):
- """
- Test updating from a dict.
-
- This replicates what was done in test 1.
- """
-
- # First make sure we're clean
- with self.assertRaises(errors.NotFound):
- entries = self.ld.get_entries(
- self.container_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
-
- with self.assertRaises(errors.NotFound):
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
-
-
- update = {
- self.container_dn:
- {'dn': self.container_dn,
- 'updates': ['add:objectClass: top',
- 'add:objectClass: nsContainer',
- 'add:cn: test'
- ],
- },
- self.user_dn:
- {'dn': self.user_dn,
- 'updates': ['add:objectclass: top',
- 'add:objectclass: person',
- 'add:objectclass: posixaccount',
- 'add:objectclass: krbprincipalaux',
- 'add:objectclass: inetuser',
- 'add:homedirectory: /home/tuser',
- 'add:loginshell: /bin/bash',
- 'add:sn: User',
- 'add:uid: tuser',
- 'add:uidnumber: 999',
- 'add:gidnumber: 999',
- 'add:cn: Test User',
- ],
- },
- }
-
- modified = self.updater.update_from_dict(update)
- self.assertTrue(modified)
-
- entries = self.ld.get_entries(
- self.container_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
- self.assertEqual(len(entries), 1)
- entry = entries[0]
-
- objectclasses = entry.get('objectclass')
- for item in ('top', 'nsContainer'):
- self.assertTrue(item in objectclasses)
-
- self.assertEqual(entry.single_value('cn'), 'test')
-
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
- self.assertEqual(len(entries), 1)
- entry = entries[0]
-
- objectclasses = entry.get('objectclass')
- for item in ('top', 'person', 'posixaccount', 'krbprincipalaux', 'inetuser'):
- self.assertTrue(item in objectclasses)
-
- self.assertEqual(entry.single_value('loginshell'), '/bin/bash')
- self.assertEqual(entry.single_value('sn'), 'User')
- self.assertEqual(entry.single_value('uid'), 'tuser')
- self.assertEqual(entry.single_value('cn'), 'Test User')
-
- # Now delete
-
- update = {
- self.container_dn:
- {'dn': self.container_dn,
- 'deleteentry': None,
- },
- self.user_dn:
- {'dn': self.user_dn,
- 'deleteentry': 'deleteentry: reset: nada',
- },
- }
-
- modified = self.updater.update_from_dict(update)
- self.assertTrue(modified)
-
- with self.assertRaises(errors.NotFound):
- entries = self.ld.get_entries(
- self.container_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])
-
- with self.assertRaises(errors.NotFound):
- entries = self.ld.get_entries(
- self.user_dn, self.ld.SCOPE_BASE, 'objectclass=*', ['*'])