|
|
@@ -0,0 +1,268 @@
|
|
|
+import os
|
|
|
+import sys
|
|
|
+import time
|
|
|
+import ldap
|
|
|
+import logging
|
|
|
+import socket
|
|
|
+import time
|
|
|
+import logging
|
|
|
+import pytest
|
|
|
+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 constants import *
|
|
|
+from ldap.controls import SimplePagedResultsControl
|
|
|
+from ldap.controls.simple import GetEffectiveRightsControl
|
|
|
+
|
|
|
+log = logging.getLogger(__name__)
|
|
|
+
|
|
|
+installation_prefix = None
|
|
|
+
|
|
|
+MYSUFFIX = 'o=ticket47664.org'
|
|
|
+MYSUFFIXBE = 'ticket47664'
|
|
|
+
|
|
|
+_MYLDIF = 'ticket47664.ldif'
|
|
|
+
|
|
|
+SEARCHFILTER = '(objectclass=*)'
|
|
|
+
|
|
|
+class TopologyStandalone(object):
|
|
|
+ def __init__(self, standalone):
|
|
|
+ standalone.open()
|
|
|
+ self.standalone = standalone
|
|
|
+
|
|
|
+
|
|
|
[email protected](scope="module")
|
|
|
+def topology(request):
|
|
|
+ '''
|
|
|
+ This fixture is used to standalone topology for the 'module'.
|
|
|
+ At the beginning, It may exists a standalone instance.
|
|
|
+ It may also exists a backup for the standalone instance.
|
|
|
+
|
|
|
+ Principle:
|
|
|
+ If standalone instance exists:
|
|
|
+ restart it
|
|
|
+ If backup of standalone exists:
|
|
|
+ create/rebind to standalone
|
|
|
+
|
|
|
+ restore standalone instance from backup
|
|
|
+ else:
|
|
|
+ Cleanup everything
|
|
|
+ remove instance
|
|
|
+ remove backup
|
|
|
+ Create instance
|
|
|
+ Create backup
|
|
|
+ '''
|
|
|
+ global installation_prefix
|
|
|
+
|
|
|
+ if installation_prefix:
|
|
|
+ args_instance[SER_DEPLOYED_DIR] = installation_prefix
|
|
|
+
|
|
|
+ standalone = DirSrv(verbose=False)
|
|
|
+
|
|
|
+ # Args for the standalone instance
|
|
|
+ args_instance[SER_HOST] = HOST_STANDALONE
|
|
|
+ args_instance[SER_PORT] = PORT_STANDALONE
|
|
|
+ args_instance[SER_SERVERID_PROP] = SERVERID_STANDALONE
|
|
|
+ args_standalone = args_instance.copy()
|
|
|
+ standalone.allocate(args_standalone)
|
|
|
+
|
|
|
+ # Get the status of the backups
|
|
|
+ backup_standalone = standalone.checkBackupFS()
|
|
|
+
|
|
|
+ # Get the status of the instance and restart it if it exists
|
|
|
+ instance_standalone = standalone.exists()
|
|
|
+ if instance_standalone:
|
|
|
+ # assuming the instance is already stopped, just wait 5 sec max
|
|
|
+ standalone.stop(timeout=5)
|
|
|
+ standalone.start(timeout=10)
|
|
|
+
|
|
|
+ if backup_standalone:
|
|
|
+ # The backup exist, assuming it is correct
|
|
|
+ # we just re-init the instance with it
|
|
|
+ if not instance_standalone:
|
|
|
+ standalone.create()
|
|
|
+ # Used to retrieve configuration information (dbdir, confdir...)
|
|
|
+ standalone.open()
|
|
|
+
|
|
|
+ # restore standalone instance from backup
|
|
|
+ standalone.stop(timeout=10)
|
|
|
+ standalone.restoreFS(backup_standalone)
|
|
|
+ standalone.start(timeout=10)
|
|
|
+
|
|
|
+ else:
|
|
|
+ # We should be here only in two conditions
|
|
|
+ # - This is the first time a test involve standalone instance
|
|
|
+ # - Something weird happened (instance/backup destroyed)
|
|
|
+ # so we discard everything and recreate all
|
|
|
+
|
|
|
+ # Remove the backup. So even if we have a specific backup file
|
|
|
+ # (e.g backup_standalone) we clear backup that an instance may have created
|
|
|
+ if backup_standalone:
|
|
|
+ standalone.clearBackupFS()
|
|
|
+
|
|
|
+ # Remove the instance
|
|
|
+ if instance_standalone:
|
|
|
+ standalone.delete()
|
|
|
+
|
|
|
+ # Create the instance
|
|
|
+ standalone.create()
|
|
|
+
|
|
|
+ # Used to retrieve configuration information (dbdir, confdir...)
|
|
|
+ standalone.open()
|
|
|
+
|
|
|
+ # Time to create the backups
|
|
|
+ standalone.stop(timeout=10)
|
|
|
+ standalone.backupfile = standalone.backupFS()
|
|
|
+ standalone.start(timeout=10)
|
|
|
+
|
|
|
+ # clear the tmp directory
|
|
|
+ standalone.clearTmpDir(__file__)
|
|
|
+
|
|
|
+ #
|
|
|
+ # Here we have standalone instance up and running
|
|
|
+ # Either coming from a backup recovery
|
|
|
+ # or from a fresh (re)init
|
|
|
+ # Time to return the topology
|
|
|
+ return TopologyStandalone(standalone)
|
|
|
+
|
|
|
+
|
|
|
+def test_ticket47664_run(topology):
|
|
|
+ """
|
|
|
+ Import 20 entries
|
|
|
+ Search with Simple Paged Results Control (pagesize = 4) + Get Effective Rights Control (attrs list = ['cn'])
|
|
|
+ If Get Effective Rights attribute (attributeLevelRights for 'cn') is returned 4 attrs / page AND
|
|
|
+ the page count == 20/4, then the fix is verified.
|
|
|
+ """
|
|
|
+ log.info('Testing Ticket 47664 - paged results control is not working in some cases when we have a subsuffix')
|
|
|
+
|
|
|
+ # bind as directory manager
|
|
|
+ topology.standalone.log.info("Bind as %s" % DN_DM)
|
|
|
+ topology.standalone.simple_bind_s(DN_DM, PASSWORD)
|
|
|
+
|
|
|
+ topology.standalone.log.info("\n\n######################### SETUP SUFFIX o=ticket47664.org ######################\n")
|
|
|
+
|
|
|
+ topology.standalone.backend.create(MYSUFFIX, {BACKEND_NAME: MYSUFFIXBE})
|
|
|
+ topology.standalone.mappingtree.create(MYSUFFIX, bename=MYSUFFIXBE)
|
|
|
+
|
|
|
+ topology.standalone.log.info("\n\n######################### Generate Test data ######################\n")
|
|
|
+
|
|
|
+ # get tmp dir
|
|
|
+ mytmp = topology.standalone.getDir(__file__, TMP_DIR)
|
|
|
+ if mytmp == None:
|
|
|
+ mytmp = "/tmp"
|
|
|
+
|
|
|
+ MYLDIF = '%s%s' % (mytmp, _MYLDIF)
|
|
|
+ os.system('ls %s' % MYLDIF)
|
|
|
+ os.system('rm -f %s' % MYLDIF)
|
|
|
+ os.system('dbgen.pl -s %s -o %s -n 14' % (MYSUFFIX, MYLDIF))
|
|
|
+
|
|
|
+ cmdline = 'egrep dn: %s | wc -l' % MYLDIF
|
|
|
+ p = os.popen(cmdline, "r")
|
|
|
+ dnnumstr = p.readline()
|
|
|
+ dnnum = int(dnnumstr)
|
|
|
+ topology.standalone.log.info("We have %d entries.\n", dnnum)
|
|
|
+
|
|
|
+ topology.standalone.log.info("\n\n######################### Import Test data ######################\n")
|
|
|
+
|
|
|
+ args = {TASK_WAIT: True}
|
|
|
+ importTask = Tasks(topology.standalone)
|
|
|
+ importTask.importLDIF(MYSUFFIX, MYSUFFIXBE, MYLDIF, args)
|
|
|
+
|
|
|
+ topology.standalone.log.info("\n\n######################### SEARCH ALL ######################\n")
|
|
|
+ topology.standalone.log.info("Bind as %s and add the READ/SEARCH SELFDN aci" % DN_DM)
|
|
|
+ topology.standalone.simple_bind_s(DN_DM, PASSWORD)
|
|
|
+
|
|
|
+ entries = topology.standalone.search_s(MYSUFFIX, ldap.SCOPE_SUBTREE, SEARCHFILTER)
|
|
|
+ topology.standalone.log.info("Returned %d entries.\n", len(entries))
|
|
|
+
|
|
|
+ #print entries
|
|
|
+
|
|
|
+ assert dnnum == len(entries)
|
|
|
+
|
|
|
+ topology.standalone.log.info('%d entries are successfully imported.' % dnnum)
|
|
|
+
|
|
|
+ topology.standalone.log.info("\n\n######################### SEARCH WITH SIMPLE PAGED RESULTS CONTROL ######################\n")
|
|
|
+
|
|
|
+ page_size = 4
|
|
|
+ spr_req_ctrl = SimplePagedResultsControl(True, size=page_size, cookie='')
|
|
|
+ ger_req_ctrl = GetEffectiveRightsControl(True, "dn: " + DN_DM)
|
|
|
+
|
|
|
+ known_ldap_resp_ctrls = {
|
|
|
+ SimplePagedResultsControl.controlType:SimplePagedResultsControl,
|
|
|
+ }
|
|
|
+
|
|
|
+ topology.standalone.log.info("Calling search_ext...")
|
|
|
+ msgid = topology.standalone.search_ext(MYSUFFIX,
|
|
|
+ ldap.SCOPE_SUBTREE,
|
|
|
+ SEARCHFILTER,
|
|
|
+ ['cn'],
|
|
|
+ serverctrls=[spr_req_ctrl, ger_req_ctrl])
|
|
|
+ attrlevelrightscnt = 0
|
|
|
+ pageddncnt = 0
|
|
|
+ pages = 0
|
|
|
+ while True:
|
|
|
+ pages += 1
|
|
|
+
|
|
|
+ topology.standalone.log.info("Getting page %d" % pages)
|
|
|
+ rtype, rdata, rmsgid, responcectrls = topology.standalone.result3(msgid, resp_ctrl_classes=known_ldap_resp_ctrls)
|
|
|
+ topology.standalone.log.info("%d results" % len(rdata))
|
|
|
+ pageddncnt += len(rdata)
|
|
|
+
|
|
|
+ topology.standalone.log.info("Results:")
|
|
|
+ for dn, attrs in rdata:
|
|
|
+ topology.standalone.log.info("dn: %s" % dn)
|
|
|
+ topology.standalone.log.info("attributeLevelRights: %s" % attrs['attributeLevelRights'][0])
|
|
|
+ if attrs['attributeLevelRights'][0] != "":
|
|
|
+ attrlevelrightscnt += 1
|
|
|
+
|
|
|
+ pctrls = [
|
|
|
+ c for c in responcectrls if c.controlType == SimplePagedResultsControl.controlType
|
|
|
+ ]
|
|
|
+ if not pctrls:
|
|
|
+ topology.standalone.log.info('Warning: Server ignores RFC 2696 control.')
|
|
|
+ break
|
|
|
+
|
|
|
+ if pctrls[0].cookie:
|
|
|
+ spr_req_ctrl.cookie = pctrls[0].cookie
|
|
|
+ topology.standalone.log.info("cookie: %s" % spr_req_ctrl.cookie)
|
|
|
+ msgid = topology.standalone.search_ext(MYSUFFIX,
|
|
|
+ ldap.SCOPE_SUBTREE,
|
|
|
+ SEARCHFILTER,
|
|
|
+ ['cn'],
|
|
|
+ serverctrls=[spr_req_ctrl, ger_req_ctrl])
|
|
|
+ else:
|
|
|
+ topology.standalone.log.info("No cookie")
|
|
|
+ break
|
|
|
+
|
|
|
+ topology.standalone.log.info("Paged result search returned %d entries in %d pages.\n", pageddncnt, pages)
|
|
|
+
|
|
|
+ assert dnnum == len(entries)
|
|
|
+ assert dnnum == attrlevelrightscnt
|
|
|
+ assert pages == (dnnum / page_size)
|
|
|
+ topology.standalone.log.info("ticket47664 was successfully verified.");
|
|
|
+
|
|
|
+def test_ticket47664_final(topology):
|
|
|
+ topology.standalone.stop(timeout=10)
|
|
|
+
|
|
|
+def run_isolated():
|
|
|
+ '''
|
|
|
+ run_isolated is used to run these test cases independently of a test scheduler (xunit, py.test..)
|
|
|
+ To run isolated without py.test, you need to
|
|
|
+ - edit this file and comment '@pytest.fixture' line before 'topology' function.
|
|
|
+ - set the installation prefix
|
|
|
+ - run this program
|
|
|
+ '''
|
|
|
+ global installation_prefix
|
|
|
+ installation_prefix = None
|
|
|
+
|
|
|
+ topo = topology(True)
|
|
|
+ test_ticket47664_run(topo)
|
|
|
+
|
|
|
+ test_ticket47664_final(topo)
|
|
|
+
|
|
|
+
|
|
|
+if __name__ == '__main__':
|
|
|
+ run_isolated()
|
|
|
+
|