| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- # --- BEGIN COPYRIGHT BLOCK ---
- # Copyright (C) 2015 Red Hat, Inc.
- # All rights reserved.
- #
- # License: GPL (version 3 or any later version).
- # See LICENSE for details.
- # --- END COPYRIGHT BLOCK ---
- #
- import os
- import sys
- import time
- import ldap
- import logging
- import pytest
- import shutil
- from lib389 import DirSrv, Entry, tools, tasks
- from lib389.tools import DirSrvTools
- from lib389._constants import *
- from lib389.properties import *
- from lib389.tasks import *
- from lib389.utils import *
- logging.getLogger(__name__).setLevel(logging.DEBUG)
- log = logging.getLogger(__name__)
- installation1_prefix = None
- class TopologyStandalone(object):
- def __init__(self, standalone):
- standalone.open()
- self.standalone = standalone
- @pytest.fixture(scope="module")
- def topology(request):
- global installation1_prefix
- if installation1_prefix:
- args_instance[SER_DEPLOYED_DIR] = installation1_prefix
- # Creating standalone instance ...
- standalone = DirSrv(verbose=False)
- args_instance[SER_HOST] = HOST_STANDALONE
- args_instance[SER_PORT] = PORT_STANDALONE
- args_instance[SER_SERVERID_PROP] = SERVERID_STANDALONE
- args_instance[SER_CREATION_SUFFIX] = DEFAULT_SUFFIX
- args_standalone = args_instance.copy()
- standalone.allocate(args_standalone)
- instance_standalone = standalone.exists()
- if instance_standalone:
- standalone.delete()
- standalone.create()
- standalone.open()
- # Clear out the tmp dir
- standalone.clearTmpDir(__file__)
- return TopologyStandalone(standalone)
- def test_ticket47384(topology):
- '''
- Test pluginpath validation: relative and absolute paths
- With the inclusion of ticket 47601 - we do allow plugin paths
- outside the default location
- '''
- PLUGIN_DN = 'cn=%s,cn=plugins,cn=config' % PLUGIN_WHOAMI
- tmp_dir = topology.standalone.getDir(__file__, TMP_DIR)
- plugin_dir = get_plugin_dir(topology.standalone.prefix)
- # Copy the library to our tmp directory
- try:
- shutil.copy('%s/libwhoami-plugin.so' % plugin_dir, tmp_dir)
- except IOError, e:
- log.fatal('Failed to copy libwhoami-plugin.so to the tmp directory, error: '
- + e.strerror)
- assert False
- try:
- shutil.copy('%s/libwhoami-plugin.la' % plugin_dir, tmp_dir)
- except IOError, e:
- log.fatal('Failed to copy libwhoami-plugin.la to the tmp directory, error: '
- + e.strerror)
- assert False
- #
- # Test adding valid plugin paths
- #
- # Try using the absolute path to the current library
- try:
- topology.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE,
- 'nsslapd-pluginPath', '%s/libwhoami-plugin' % plugin_dir)])
- except ldap.LDAPError, e:
- log.error('Failed to set valid plugin path (%s): error (%s)' %
- ('%s/libwhoami-plugin' % plugin_dir, e.message['desc']))
- assert False
- # Try using new remote location
- try:
- topology.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE,
- 'nsslapd-pluginPath', '%s/libwhoami-plugin' % tmp_dir)])
- except ldap.LDAPError, e:
- log.error('Failed to set valid plugin path (%s): error (%s)' %
- ('%s/libwhoami-plugin' % tmp_dir, e.message['desc']))
- assert False
- # Set plugin path back to the default
- try:
- topology.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE,
- 'nsslapd-pluginPath', 'libwhoami-plugin')])
- except ldap.LDAPError, e:
- log.error('Failed to set valid relative plugin path (%s): error (%s)' %
- ('libwhoami-plugin' % tmp_dir, e.message['desc']))
- assert False
- #
- # Test invalid path (no library present)
- #
- try:
- topology.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE,
- 'nsslapd-pluginPath', '/bin/libwhoami-plugin')])
- # No exception?! This is an error
- log.error('Invalid plugin path was incorrectly accepted by the server!')
- assert False
- except ldap.UNWILLING_TO_PERFORM:
- # Correct, operation should be rejected
- pass
- except ldap.LDAPError, e:
- log.error('Failed to set invalid plugin path (%s): error (%s)' %
- ('/bin/libwhoami-plugin', e.message['desc']))
- #
- # Test invalid relative path (no library present)
- #
- try:
- topology.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE,
- 'nsslapd-pluginPath', '../libwhoami-plugin')])
- # No exception?! This is an error
- log.error('Invalid plugin path was incorrectly accepted by the server!')
- assert False
- except ldap.UNWILLING_TO_PERFORM:
- # Correct, operation should be rejected
- pass
- except ldap.LDAPError, e:
- log.error('Failed to set invalid plugin path (%s): error (%s)' %
- ('../libwhoami-plugin', e.message['desc']))
- log.info('Test complete')
- def test_ticket47384_final(topology):
- topology.standalone.delete()
- log.info('Testcase PASSED')
- def run_isolated():
- global installation1_prefix
- installation1_prefix = None
- topo = topology(True)
- test_ticket47384(topo)
- test_ticket47384_final(topo)
- if __name__ == '__main__':
- run_isolated()
|