1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
"""
"""
# Created on 2013.06.04
#
# Author: Giovanni Cannata
#
# Copyright 2013 - 2020 Giovanni Cannata
#
# This file is part of ldap3.
#
# ldap3 is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ldap3 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with ldap3 in the COPYING and COPYING.LESSER files.
# If not, see <http://www.gnu.org/licenses/>.
import unittest
from ldap3.operation.search import parse_filter, MATCH_EQUAL, MATCH_EXTENSIBLE
from ldap3.utils.conv import escape_filter_chars
from ldap3.protocol.schemas.edir914 import edir_9_1_4_schema, edir_9_1_4_dsa_info
from ldap3.protocol.rfc4512 import SchemaInfo, DsaInfo
from ldap3.core.exceptions import LDAPAttributeError, LDAPObjectClassError
from test.config import test_auto_escape, test_auto_encode, test_validator, test_check_names
class Test(unittest.TestCase):
def test_parse_search_filter_equality(self):
f = parse_filter('(cn=admin)', None, test_auto_escape, test_auto_encode, test_validator, test_check_names)
self.assertEqual(f.elements[0].tag, MATCH_EQUAL)
self.assertEqual(f.elements[0].assertion['attr'], 'cn')
self.assertEqual(f.elements[0].assertion['value'], b'admin')
def test_parse_search_filter_equality_2(self):
f = parse_filter('(cn=a<=b=>c)', None, test_auto_escape, test_auto_encode, test_validator, test_check_names)
self.assertEqual(f.elements[0].tag, MATCH_EQUAL)
self.assertEqual(f.elements[0].assertion['attr'], 'cn')
self.assertEqual(f.elements[0].assertion['value'], b'a<=b=>c')
def test_parse_search_filter_extensible_syntax_1(self):
f = parse_filter('(cn:caseExactMatch:=Fred Flintstone)', None, test_auto_escape, test_auto_encode, test_validator, test_check_names)
self.assertEqual(f.elements[0].tag, MATCH_EXTENSIBLE)
self.assertEqual(f.elements[0].assertion['attr'], 'cn')
self.assertEqual(f.elements[0].assertion['value'], b'Fred Flintstone')
self.assertEqual(f.elements[0].assertion['matchingRule'], 'caseExactMatch')
self.assertEqual(f.elements[0].assertion['dnAttributes'], False)
def test_parse_search_filter_extensible_syntax_2(self):
f = parse_filter('(cn:=Betty Rubble)', None, test_auto_escape, test_auto_encode, test_validator, test_check_names)
self.assertEqual(f.elements[0].tag, MATCH_EXTENSIBLE)
self.assertEqual(f.elements[0].assertion['attr'], 'cn')
self.assertEqual(f.elements[0].assertion['value'], b'Betty Rubble')
self.assertEqual(f.elements[0].assertion['matchingRule'], False)
self.assertEqual(f.elements[0].assertion['dnAttributes'], False)
def test_parse_search_filter_extensible_syntax_3(self):
f = parse_filter('(sn:dn:2.4.6.8.10:=Barney Rubble)', None, test_auto_escape, test_auto_encode, test_validator, test_check_names)
self.assertEqual(f.elements[0].tag, MATCH_EXTENSIBLE)
self.assertEqual(f.elements[0].assertion['attr'], 'sn')
self.assertEqual(f.elements[0].assertion['value'], b'Barney Rubble')
self.assertEqual(f.elements[0].assertion['matchingRule'], '2.4.6.8.10')
self.assertEqual(f.elements[0].assertion['dnAttributes'], True)
def test_parse_search_filter_extensible_syntax_4(self):
f = parse_filter('(o:dn:=Ace Industry)', None, test_auto_escape, test_auto_encode, test_validator, test_check_names)
self.assertEqual(f.elements[0].tag, MATCH_EXTENSIBLE)
self.assertEqual(f.elements[0].assertion['attr'], 'o')
self.assertEqual(f.elements[0].assertion['value'], b'Ace Industry')
self.assertEqual(f.elements[0].assertion['matchingRule'], False)
self.assertEqual(f.elements[0].assertion['dnAttributes'], True)
def test_parse_search_filter_extensible_syntax_5(self):
f = parse_filter('(:1.2.3:=Wilma Flintstone)', None, test_auto_escape, test_auto_encode, test_validator, test_check_names)
self.assertEqual(f.elements[0].tag, MATCH_EXTENSIBLE)
self.assertEqual(f.elements[0].assertion['attr'], False)
self.assertEqual(f.elements[0].assertion['value'], b'Wilma Flintstone')
self.assertEqual(f.elements[0].assertion['matchingRule'], '1.2.3')
self.assertEqual(f.elements[0].assertion['dnAttributes'], False)
def test_parse_search_filter_extensible_syntax_6(self):
f = parse_filter('(:DN:2.4.6.8.10:=Dino)', None, test_auto_escape, test_auto_encode, test_validator, test_check_names)
self.assertEqual(f.elements[0].tag, MATCH_EXTENSIBLE)
self.assertEqual(f.elements[0].assertion['attr'], False)
self.assertEqual(f.elements[0].assertion['value'], b'Dino')
self.assertEqual(f.elements[0].assertion['matchingRule'], '2.4.6.8.''10')
self.assertEqual(f.elements[0].assertion['dnAttributes'], True)
def test_parse_search_filter_parenteses(self):
f = parse_filter('(cn=' + escape_filter_chars('Doe (Missing Inc)') + ')', None, test_auto_escape, test_auto_encode, test_validator, test_check_names)
self.assertEqual(f.elements[0].tag, MATCH_EQUAL)
self.assertEqual(f.elements[0].assertion['attr'], 'cn')
self.assertEqual(f.elements[0].assertion['value'], b'Doe \\28Missing Inc\\29')
def test_parse_search_filter_bad_attribute_type_check_true(self):
self.assertRaises(LDAPAttributeError, parse_filter, '(bad=admin)', SchemaInfo.from_json(edir_9_1_4_schema), test_auto_escape, test_auto_encode, test_validator, check_names=True)
def test_parse_search_filter_bad_attribute_type_check_false(self):
f = parse_filter('(bad=admin)', SchemaInfo.from_json(edir_9_1_4_schema), test_auto_escape, test_auto_encode, test_validator, check_names=False)
self.assertEqual(f.elements[0].tag, MATCH_EQUAL)
self.assertEqual(f.elements[0].assertion['attr'], 'bad')
self.assertEqual(f.elements[0].assertion['value'], b'admin')
def test_parse_search_filter_bad_object_class_type_check_true(self):
self.assertRaises(LDAPObjectClassError, parse_filter, '(objectClass=bad)', SchemaInfo.from_json(edir_9_1_4_schema), test_auto_escape, test_auto_encode, test_validator, check_names=True)
def test_parse_search_filter_bad_object_class_type_check_false(self):
f = parse_filter('(objectClass=bad)', SchemaInfo.from_json(edir_9_1_4_schema), test_auto_escape, test_auto_encode, test_validator, check_names=False)
self.assertEqual(f.elements[0].tag, MATCH_EQUAL)
self.assertEqual(f.elements[0].assertion['attr'], 'objectClass')
self.assertEqual(f.elements[0].assertion['value'], b'bad')
|