2010-03-31 04:18:06 +03:00
# -*- coding: utf-8 -*-
#
# Unix SMB/CIFS implementation.
# Copyright (C) Kamen Mazdrashki <kamenim@samba.org> 2010
#
# 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/>.
#
#
# Usage:
2010-06-22 04:42:15 +03:00
# export DC_SERVER=target_dc_or_local_samdb_url
2010-03-31 04:18:06 +03:00
# export SUBUNITRUN=$samba4srcdir/scripting/bin/subunitrun
2010-06-22 04:42:15 +03:00
# PYTHONPATH="$PYTHONPATH:$samba4srcdir/lib/ldb/tests/python" $SUBUNITRUN dsdb_schema_info -U"$DOMAIN/$DC_USERNAME"%"$DC_PASSWORD"
2010-03-31 04:18:06 +03:00
#
import sys
import time
import random
2011-02-01 14:43:34 +11:00
sys . path . insert ( 0 , " bin/python " )
2014-11-04 20:37:41 +00:00
import samba . tests
2010-03-31 04:18:06 +03:00
2010-06-19 17:32:01 +02:00
from ldb import SCOPE_BASE , LdbError
2010-03-31 04:18:06 +03:00
import samba . dcerpc . drsuapi
from samba . dcerpc . drsblobs import schemaInfoBlob
from samba . ndr import ndr_unpack
from samba . dcerpc . misc import GUID
2010-06-19 17:32:01 +02:00
class SchemaInfoTestCase ( samba . tests . TestCase ) :
2010-03-31 04:18:06 +03:00
2010-09-29 15:56:23 +03:00
# static SamDB connection
sam_db = None
2010-03-31 04:18:06 +03:00
def setUp ( self ) :
super ( SchemaInfoTestCase , self ) . setUp ( )
2010-09-29 15:56:23 +03:00
# connect SamDB if we haven't yet
if self . sam_db is None :
2016-08-25 11:33:16 +12:00
ldb_url = " ldap:// %s " % samba . tests . env_get_var_value ( " DC_SERVER " )
2010-09-29 15:56:23 +03:00
SchemaInfoTestCase . sam_db = samba . tests . connect_samdb ( ldb_url )
2010-03-31 04:18:06 +03:00
# fetch rootDSE
2010-09-29 15:56:23 +03:00
res = self . sam_db . search ( base = " " , expression = " " , scope = SCOPE_BASE , attrs = [ " * " ] )
2020-02-07 11:02:38 +13:00
self . assertEqual ( len ( res ) , 1 )
2010-03-31 04:18:06 +03:00
self . schema_dn = res [ 0 ] [ " schemaNamingContext " ] [ 0 ]
self . base_dn = res [ 0 ] [ " defaultNamingContext " ] [ 0 ]
self . forest_level = int ( res [ 0 ] [ " forestFunctionality " ] [ 0 ] )
# get DC invocation_id
2010-09-29 15:56:23 +03:00
self . invocation_id = GUID ( self . sam_db . get_invocation_id ( ) )
2010-03-31 04:18:06 +03:00
def tearDown ( self ) :
super ( SchemaInfoTestCase , self ) . tearDown ( )
def _getSchemaInfo ( self ) :
2010-04-22 04:39:04 +03:00
try :
2010-09-29 15:56:23 +03:00
schema_info_data = self . sam_db . searchone ( attribute = " schemaInfo " ,
basedn = self . schema_dn ,
expression = " (objectClass=*) " ,
scope = SCOPE_BASE )
2010-04-22 04:39:04 +03:00
self . assertEqual ( len ( schema_info_data ) , 21 )
schema_info = ndr_unpack ( schemaInfoBlob , schema_info_data )
self . assertEqual ( schema_info . marker , 0xFF )
except KeyError :
# create default schemaInfo if
# attribute value is not created yet
schema_info = schemaInfoBlob ( )
schema_info . revision = 0
schema_info . invocation_id = self . invocation_id
2010-03-31 04:18:06 +03:00
return schema_info
def _checkSchemaInfo ( self , schi_before , schi_after ) :
self . assertEqual ( schi_before . revision + 1 , schi_after . revision )
self . assertEqual ( schi_before . invocation_id , schi_after . invocation_id )
self . assertEqual ( schi_after . invocation_id , self . invocation_id )
def _ldap_schemaUpdateNow ( self ) :
ldif = """
dn :
changetype : modify
add : schemaUpdateNow
schemaUpdateNow : 1
"""
2010-09-29 15:56:23 +03:00
self . sam_db . modify_ldif ( ldif )
2010-03-31 04:18:06 +03:00
def _make_obj_names ( self , prefix ) :
obj_name = prefix + time . strftime ( " %s " , time . gmtime ( ) )
obj_ldap_name = obj_name . replace ( " - " , " " )
obj_dn = " CN= %s , %s " % ( obj_name , self . schema_dn )
return ( obj_name , obj_ldap_name , obj_dn )
2017-01-10 10:00:43 +13:00
def _make_attr_ldif ( self , attr_name , attr_dn , sub_oid ) :
2010-03-31 04:18:06 +03:00
ldif = """
dn : """ + attr_dn + """
objectClass : top
objectClass : attributeSchema
adminDescription : """ + attr_name + """
adminDisplayName : """ + attr_name + """
cn : """ + attr_name + """
2018-07-30 18:19:05 +12:00
attributeId : 1.3 .6 .1 .4 .1 .7165 .4 .6 .1 .7 . % d . """ % s ub_oid + str(random.randint(1, 100000)) + """
2010-03-31 04:18:06 +03:00
attributeSyntax : 2.5 .5 .12
omSyntax : 64
instanceType : 4
isSingleValued : TRUE
systemOnly : FALSE
"""
return ldif
def test_AddModifyAttribute ( self ) :
# get initial schemaInfo
schi_before = self . _getSchemaInfo ( )
# create names for an attribute to add
( attr_name , attr_ldap_name , attr_dn ) = self . _make_obj_names ( " schemaInfo-Attr- " )
2017-01-10 10:00:43 +13:00
ldif = self . _make_attr_ldif ( attr_name , attr_dn , 1 )
2010-03-31 04:18:06 +03:00
# add the new attribute
2010-09-29 15:56:23 +03:00
self . sam_db . add_ldif ( ldif )
2010-03-31 04:18:06 +03:00
self . _ldap_schemaUpdateNow ( )
# compare resulting schemaInfo
schi_after = self . _getSchemaInfo ( )
self . _checkSchemaInfo ( schi_before , schi_after )
# rename the Attribute
attr_dn_new = attr_dn . replace ( attr_name , attr_name + " -NEW " )
try :
2010-09-29 15:56:23 +03:00
self . sam_db . rename ( attr_dn , attr_dn_new )
2018-02-23 14:34:23 +00:00
except LdbError as e :
( num , _ ) = e . args
2017-06-14 13:11:56 +12:00
self . fail ( " failed to change CN for %s : %s " % ( attr_name , _ ) )
2010-03-31 04:18:06 +03:00
# compare resulting schemaInfo
schi_after = self . _getSchemaInfo ( )
self . _checkSchemaInfo ( schi_before , schi_after )
pass
2017-01-10 10:00:43 +13:00
def _make_class_ldif ( self , class_name , class_dn , sub_oid ) :
2010-03-31 04:18:06 +03:00
ldif = """
dn : """ + class_dn + """
objectClass : top
objectClass : classSchema
adminDescription : """ + class_name + """
adminDisplayName : """ + class_name + """
cn : """ + class_name + """
2018-07-30 18:19:05 +12:00
governsId : 1.3 .6 .1 .4 .1 .7165 .4 .6 .2 .7 . % d . """ % s ub_oid + str(random.randint(1, 100000)) + """
2010-03-31 04:18:06 +03:00
instanceType : 4
objectClassCategory : 1
subClassOf : organizationalPerson
rDNAttID : cn
systemMustContain : cn
systemOnly : FALSE
"""
return ldif
2019-04-04 14:39:41 +13:00
def test_AddModifyClass ( self , controls = [ ] , class_pre = " schemaInfo-Class- " ) :
2010-03-31 04:18:06 +03:00
# get initial schemaInfo
schi_before = self . _getSchemaInfo ( )
# create names for a Class to add
2019-04-04 14:39:41 +13:00
( class_name , class_ldap_name , class_dn ) = \
self . _make_obj_names ( class_pre )
2017-01-10 10:00:43 +13:00
ldif = self . _make_class_ldif ( class_name , class_dn , 1 )
2010-03-31 04:18:06 +03:00
# add the new Class
2019-04-04 14:39:41 +13:00
self . sam_db . add_ldif ( ldif , controls = controls )
2010-03-31 04:18:06 +03:00
self . _ldap_schemaUpdateNow ( )
# compare resulting schemaInfo
schi_after = self . _getSchemaInfo ( )
self . _checkSchemaInfo ( schi_before , schi_after )
# rename the Class
class_dn_new = class_dn . replace ( class_name , class_name + " -NEW " )
try :
2019-04-04 14:39:41 +13:00
self . sam_db . rename ( class_dn , class_dn_new , controls = controls )
2018-02-23 14:34:23 +00:00
except LdbError as e1 :
( num , _ ) = e1 . args
2017-06-14 13:11:56 +12:00
self . fail ( " failed to change CN for %s : %s " % ( class_name , _ ) )
2010-03-31 04:18:06 +03:00
# compare resulting schemaInfo
schi_after = self . _getSchemaInfo ( )
self . _checkSchemaInfo ( schi_before , schi_after )
2019-04-04 14:39:41 +13:00
def test_AddModifyClassLocalRelaxed ( self ) :
lp = self . get_loadparm ( )
self . sam_db = samba . tests . connect_samdb ( lp . samdb_url ( ) )
self . test_AddModifyClass ( controls = [ " relax:0 " ] ,
class_pre = " schemaInfo-Relaxed- " )