Example #1
0
    def testInequalityDiffertnOperations(self):
        """
        Modify operations for same DN but different operations are not equal.
        """
        first = delta.ModifyOp("cn=john,dc=example,dc=com",
                               [delta.Delete("description")])
        second = delta.ModifyOp("cn=doe,dc=example,dc=com",
                                [delta.Delete("homeDirectory")])

        self.assertNotEqual(first, second)
Example #2
0
    def testInequalityDiffertnDN(self):
        """
        Modify operations for different DN are not equal.
        """
        first = delta.ModifyOp("cn=john,dc=example,dc=com",
                               [delta.Delete("description")])

        second = delta.ModifyOp("cn=doe,dc=example,dc=com",
                                [delta.Delete("description")])

        self.assertNotEqual(first, second)
Example #3
0
    def testInequalityDifferentModifications(self):
        """
        Modify operations with different modifications are not equal
        """
        first = delta.ModifyOp("cn=john,dc=example,dc=com",
                               [delta.Add("description")])

        second = delta.ModifyOp("cn=john,dc=example,dc=com",
                                [delta.Delete("description")])

        self.assertNotEqual(first, second)
Example #4
0
    def testHashInequality(self):
        """
        Different modify operations have different hash values.
        """
        first = delta.ModifyOp("cn=john,dc=example,dc=com",
                               [delta.Delete("description")])

        second = delta.ModifyOp("cn=john,dc=example,dc=com",
                                [delta.Delete("homeDirectory")])

        self.assertNotEqual(first.asLDIF(), second.asLDIF())
        self.assertNotEqual(hash(first), hash(second))
Example #5
0
 def disable_dn_(self, dn, client=None):
     """
     Deprovision subject based on DN.
     """
     log = self.log
     unbind = False
     if client is None:
         client = yield self.get_ldap_client_()
         unbind = True
     with LDAPClientManager(client, active=unbind) as c:
         o = ldapsyntax.LDAPEntry(c, dn)
         results = yield o.search(filterText=self.search_filter,
                                  attributes=('userAccountControl', ))
         if len(results) == 1:
             entry = results[0]
             ADS_UF_ACCOUNTDISABLE = 0x00000002
             user_account_control = int(
                 list(entry['userAccountControl'])[0])
             user_account_control = (user_account_control
                                     | ADS_UF_ACCOUNTDISABLE)
             mod = delta.ModifyOp(dn, [
                 delta.Replace('userAccountControl',
                               ["{}".format(user_account_control)]),
             ])
             l = mod.asLDAP()
             response = yield client.send(l)
Example #6
0
    def testModification_twoAdds(self):
        proto = LDIFDeltaDriver()
        proto.dataReceived(b"""\
version: 1
dn: cn=foo,dc=example,dc=com
changetype: modify
add: foo
foo: bar
-
add: thud
thud: quux
thud: baz
-

""")
        proto.connectionLost()
        self.assertEqual(
            proto.listOfCompleted,
            [
                delta.ModifyOp(
                    dn=b"cn=foo,dc=example,dc=com",
                    modifications=[
                        delta.Add(b"foo", [b"bar"]),
                        delta.Add(b"thud", [b"quux", b"baz"]),
                    ],
                ),
            ],
        )
Example #7
0
 def testRootChange_Add(self):
     a = inmemory.ReadOnlyInMemoryLDAPEntry(
         "dc=example,dc=com",
         {
             "dc": ["example"],
         },
     )
     b = inmemory.ReadOnlyInMemoryLDAPEntry(
         "dc=example,dc=com",
         {
             "dc": ["example"],
             "foo": ["bar"],
         },
     )
     d = a.diffTree(b)
     d.addCallback(
         self.assertEqual,
         [
             delta.ModifyOp(
                 "dc=example,dc=com",
                 [
                     delta.Add("foo", ["bar"]),
                 ],
             ),
         ],
     )
     return d
Example #8
0
    def testModify(self):
        op=delta.ModifyOp('cn=Paula Jensen, ou=Product Development, dc=airius, dc=com',
                          [
            delta.Add('postaladdress',
                      ['123 Anystreet $ Sunnyvale, CA $ 94086']),
            delta.Delete('description'),
            delta.Replace('telephonenumber', ['+1 408 555 1234', '+1 408 555 5678']),
            delta.Delete('facsimiletelephonenumber', ['+1 408 555 9876']),
            ])
        self.assertEquals(op.asLDIF(),
                          """\
dn: cn=Paula Jensen,ou=Product Development,dc=airius,dc=com
changetype: modify
add: postaladdress
postaladdress: 123 Anystreet $ Sunnyvale, CA $ 94086
-
delete: description
-
replace: telephonenumber
telephonenumber: +1 408 555 1234
telephonenumber: +1 408 555 5678
-
delete: facsimiletelephonenumber
facsimiletelephonenumber: +1 408 555 9876
-

""")
Example #9
0
 def testComplex(self):
     a = entry.BaseLDAPEntry(
         dn="cn=Paula Jensen,ou=Product Development,dc=airius,dc=com",
         attributes={
             "description": ["Something"],
             "telephonenumber": ["+123 456"],
             "facsimiletelephonenumber": ["+1 408 555 9876"],
         },
     )
     b = entry.BaseLDAPEntry(
         dn="cn=Paula Jensen,ou=Product Development,dc=airius,dc=com",
         attributes={
             "postalAddress": ["123 Anystreet $ Sunnyvale, CA $ 94086"],
             "telephonenumber": ["+1 408 555 1234", "+1 408 555 5678"],
         },
     )
     result = a.diff(b)
     self.assertEqual(
         result,
         delta.ModifyOp(
             "cn=Paula Jensen,ou=Product Development,dc=airius,dc=com",
             [
                 delta.Add(
                     "postalAddress", ["123 Anystreet $ Sunnyvale, CA $ 94086"]
                 ),
                 delta.Delete("description", ["Something"]),
                 delta.Delete("facsimiletelephonenumber", ["+1 408 555 9876"]),
                 delta.Add(
                     "telephonenumber", ["+1 408 555 1234", "+1 408 555 5678"]
                 ),
                 delta.Delete("telephonenumber", ["+123 456"]),
             ],
         ),
     )
Example #10
0
 def cb3(got):
     self.assertEquals(got, [
         delta.ModifyOp(
             self.empty.dn,
             [delta.Add('foo', ['bar'])],
         ),
     ])
Example #11
0
 def testComplex(self):
     a = entry.BaseLDAPEntry(
         dn='cn=Paula Jensen,ou=Product Development,dc=airius,dc=com',
         attributes={
             'description': ['Something'],
             'telephonenumber': ['+123 456'],
             'facsimiletelephonenumber': ['+1 408 555 9876'],
         })
     b = entry.BaseLDAPEntry(
         dn='cn=Paula Jensen,ou=Product Development,dc=airius,dc=com',
         attributes={
             'postalAddress': ['123 Anystreet $ Sunnyvale, CA $ 94086'],
             'telephonenumber': ['+1 408 555 1234', '+1 408 555 5678'],
         })
     result = a.diff(b)
     self.assertEqual(
         result,
         delta.ModifyOp(
             'cn=Paula Jensen,ou=Product Development,dc=airius,dc=com', [
                 delta.Add('postalAddress',
                           ['123 Anystreet $ Sunnyvale, CA $ 94086']),
                 delta.Delete('description', ['Something']),
                 delta.Delete('facsimiletelephonenumber',
                              ['+1 408 555 9876']),
                 delta.Add('telephonenumber',
                           ['+1 408 555 1234', '+1 408 555 5678']),
                 delta.Delete('telephonenumber', ['+123 456']),
             ]))
Example #12
0
 def testAdd_NewAndExisting_ManyTypes(self):
     a = entry.BaseLDAPEntry(
         dn="dc=foo",
         attributes={
             "foo": ["bar"],
             "baz": ["quux"],
         },
     )
     b = entry.BaseLDAPEntry(
         dn="dc=foo",
         attributes={
             "foo": ["bar", "thud", "bang"],
             "baz": ["quux", "bar", "stump"],
             "bang": ["thud", "barble"],
         },
     )
     result = a.diff(b)
     self.assertEqual(
         result,
         delta.ModifyOp(
             "dc=foo",
             [
                 delta.Add("bang", ["thud", "barble"]),
                 delta.Add("baz", ["bar", "stump"]),
                 delta.Add("foo", ["thud", "bang"]),
             ],
         ),
     )
Example #13
0
 def testDelete_Some_OneType(self):
     a = entry.BaseLDAPEntry(
         dn="dc=foo",
         attributes={
             "foo": ["bar"],
             "baz": ["quux", "thud"],
         },
     )
     b = entry.BaseLDAPEntry(
         dn="dc=foo",
         attributes={
             "foo": ["bar"],
             "baz": ["thud"],
         },
     )
     result = a.diff(b)
     self.assertEqual(
         result,
         delta.ModifyOp(
             "dc=foo",
             [
                 delta.Delete("baz", ["quux"]),
             ],
         ),
     )
Example #14
0
 def testModifyOp_DNNotFound(self):
     op = delta.ModifyOp('cn=nope,dc=example,dc=com',
                         [delta.Add('foo', ['bar'])])
     d = op.patch(self.root)
     def eb(fail):
         fail.trap(ldaperrors.LDAPNoSuchObject)
     d.addCallbacks(testutil.mustRaise, eb)
     return d
Example #15
0
    def testInequalityNotModifyOP(self):
        """
        Modify operations are not equal with other object types.
        """
        sut = delta.ModifyOp("cn=john,dc=example,dc=com",
                             [delta.Delete("description")])

        self.assertNotEqual("cn=john,dc=example,dc=com", sut)
Example #16
0
    def testHashEquality(self):
        """
        Modify operations can be hashed and equal objects have the same
        hash.
        """
        first = delta.ModifyOp("cn=john,dc=example,dc=com",
                               [delta.Delete("description")])

        second = delta.ModifyOp("cn=john,dc=example,dc=com",
                                [delta.Delete("description")])

        self.assertEqual(first, second)
        self.assertEqual(
            first.asLDIF(),
            second.asLDIF(),
            "LDIF equality is a precondition for valid hash values",
        )
        self.assertEqual(hash(first), hash(second))
Example #17
0
 def cb3(got):
     self.assertEqual(
         got,
         [
             delta.ModifyOp(
                 self.empty.dn,
                 [delta.Add(b"foo", [b"bar"])],
             ),
         ],
     )
Example #18
0
    def testRepr(self):
        """
        Getting string representation
        """
        sut = delta.ModifyOp('cn=john,dc=example,dc=com',
                             [delta.Delete('description')])

        self.assertEqual(
            repr(sut), "ModifyOp(dn='cn=john,dc=example,dc=com', "
            "modifications=[Delete('description', [])])")
Example #19
0
    def testModification_empty(self):
        proto = LDIFDeltaDriver()
        proto.dataReceived(b"""\
version: 1
dn: cn=foo,dc=example,dc=com
changetype: modify

""")
        proto.connectionLost()
        self.assertEqual(proto.listOfCompleted, [
            delta.ModifyOp(dn='cn=foo,dc=example,dc=com'),
        ])
Example #20
0
 def testAdd_Existing_OneType_OneValue(self):
     a = entry.BaseLDAPEntry(dn='dc=foo', attributes={
         'foo': ['bar'],
     })
     b = entry.BaseLDAPEntry(dn='dc=foo',
                             attributes={
                                 'foo': ['bar', 'quux'],
                             })
     result = a.diff(b)
     self.assertEqual(
         result, delta.ModifyOp('dc=foo', [
             delta.Add('foo', ['quux']),
         ]))
Example #21
0
    def testModifyOp_DNNotFound(self):
        """
        If fail to modify when the RDN does not exists.
        """
        root = self.getRoot()
        sut = delta.ModifyOp(
            'cn=nope,dc=example,dc=com',
            [delta.Add('foo', ['bar'])],
            )

        deferred = sut.patch(root)

        failure = self.failureResultOf(deferred)
        self.assertIsInstance(failure.value, ldaperrors.LDAPNoSuchObject)
Example #22
0
 def testRootChange_Add(self):
     a = inmemory.ReadOnlyInMemoryLDAPEntry('dc=example,dc=com', {
         'dc': ['example'],
     })
     b = inmemory.ReadOnlyInMemoryLDAPEntry('dc=example,dc=com', {
         'dc': ['example'],
         'foo': ['bar'],
     })
     d = a.diffTree(b)
     d.addCallback(self.assertEquals, [
         delta.ModifyOp('dc=example,dc=com', [
             delta.Add('foo', ['bar']),
         ]),
     ])
     return d
Example #23
0
 def testAdd_New_OneType_ManyValues(self):
     a = entry.BaseLDAPEntry(dn='dc=foo', attributes={
         'foo': ['bar'],
     })
     b = entry.BaseLDAPEntry(dn='dc=foo',
                             attributes={
                                 'foo': ['bar'],
                                 'baz': ['quux', 'thud', 'foo'],
                             })
     result = a.diff(b)
     self.assertEqual(
         result,
         delta.ModifyOp('dc=foo', [
             delta.Add('baz', ['quux', 'thud', 'foo']),
         ]))
Example #24
0
 def testDelete_All_OneType(self):
     a = entry.BaseLDAPEntry(dn='dc=foo',
                             attributes={
                                 'foo': ['bar'],
                                 'baz': ['quux', 'thud'],
                             })
     b = entry.BaseLDAPEntry(dn='dc=foo', attributes={
         'foo': ['bar'],
     })
     result = a.diff(b)
     self.assertEqual(
         result,
         delta.ModifyOp('dc=foo', [
             delta.Delete('baz', ['quux', 'thud']),
         ]))
Example #25
0
    def testModification_complex(self):
        proto = LDIFDeltaDriver()
        proto.dataReceived(b"""\
version: 1
dn: cn=foo,dc=example,dc=com
changetype: modify
delete: foo
foo: bar
-
delete: garply
-
add: thud
thud: quux
thud: baz
-
replace: waldo
-
add: foo
foo: baz
-
replace: thud
thud: xyzzy
-
add: silly
-

""")
        proto.connectionLost()
        self.assertEqual(
            proto.listOfCompleted,
            [
                delta.ModifyOp(
                    dn=b"cn=foo,dc=example,dc=com",
                    modifications=[
                        delta.Delete(b"foo", [b"bar"]),
                        delta.Delete(b"garply"),
                        delta.Add(b"thud", [b"quux", b"baz"]),
                        delta.Replace(b"waldo"),
                        delta.Add(b"foo", [b"baz"]),
                        delta.Replace(b"thud", [b"xyzzy"]),
                        delta.Add(b"silly"),
                    ],
                ),
            ],
        )
Example #26
0
    def testModification_oneAdd(self):
        proto = LDIFDeltaDriver()
        proto.dataReceived(b"""\
version: 1
dn: cn=foo,dc=example,dc=com
changetype: modify
add: foo
foo: bar
-

""")
        proto.connectionLost()
        self.assertEqual(proto.listOfCompleted, [
            delta.ModifyOp(dn=b'cn=foo,dc=example,dc=com',
                           modifications=[
                               delta.Add(b'foo', [b'bar']),
                           ]),
        ])
Example #27
0
 def update_entry_(self, account, client):
     """
     Attempt to update and LDAP entry.
     """
     log = self.log
     log.info("Entered update_entry_()")
     updateable_attribs = {
         "givenName",
         "displayName",
         "sn",
         "userAccountControl",
     }
     attribs = [
         delta.Replace(prop, list(values))
         for prop, values in account.items() if prop in updateable_attribs
     ]
     log.debug("attribs: {attribs}", attribs=attribs)
     try:
         dn = account['dn']
     except KeyError:
         raise Exception("Account template must include a `dn` property.")
     mod = delta.ModifyOp(dn, attribs)
     log.debug("LDAP MOD request: {mod_req}", mod_req=repr(mod))
     unbind = False
     if client is None:
         client = yield self.get_ldap_client_()
         unbind = True
     response = None
     log.debug("LDAPClientManager unbind flag: {unbind}", unbind=unbind)
     with LDAPClientManager(client, active=unbind, log=log) as c:
         log.debug("Sending LDAP MOD request.")
         response = yield c.send(mod.asLDAP())
         log.debug("LDAP MOD request sent.  Response: {resp}",
                   resp=repr(response))
     log.debug("LDAP MOD response: {mod_resp}", mod_resp=repr(response))
     result_code = response.resultCode
     allowed_results = (ldaperrors.Success.resultCode,
                        ldaperrors.LDAPNoSuchObject.resultCode)
     if result_code not in allowed_results:
         msg = response.errorMessage
         raise Exception(
             "Error adding entry: result_code={}, msg={}".format(
                 result_code, msg))
     returnValue(result_code)
Example #28
0
    def diff(self, other):
        """
        Compute differences between this and another LDAP entry.

        @param other: An LDAPEntry to compare to.

        @return: None if equal, otherwise a ModifyOp that would make
        this entry look like other.
        """
        assert self.dn == other.dn
        if self == other:
            return None

        r = []

        myKeys = set(key for key in self)
        otherKeys = set(key for key in other)

        addedKeys = list(otherKeys - myKeys)
        addedKeys.sort(key=to_bytes)  # for reproducability only
        for added in addedKeys:
            r.append(delta.Add(added, other[added]))

        deletedKeys = list(myKeys - otherKeys)
        deletedKeys.sort(key=to_bytes)  # for reproducability only
        for deleted in deletedKeys:
            r.append(delta.Delete(deleted, self[deleted]))

        sharedKeys = list(myKeys & otherKeys)
        sharedKeys.sort(key=to_bytes)  # for reproducability only
        for shared in sharedKeys:

            addedValues = list(other[shared] - self[shared])
            if addedValues:
                addedValues.sort(key=to_bytes)  # for reproducability only
                r.append(delta.Add(shared, addedValues))

            deletedValues = list(self[shared] - other[shared])
            if deletedValues:
                deletedValues.sort(key=to_bytes)  # for reproducability only
                r.append(delta.Delete(shared, deletedValues))

        return delta.ModifyOp(dn=self.dn, modifications=r)
Example #29
0
    def state_WAIT_FOR_MOD_SPEC(self, line):
        if line == b"":
            # end of entry
            self.mode = ldifprotocol.WAIT_FOR_DN
            m = delta.ModifyOp(dn=self.dn, modifications=self.modifications)
            self.dn = None
            self.data = None
            self.modifications = None
            self.gotEntry(m)
            return

        key, val = self._parseLine(line)

        if key not in self.MOD_SPEC_TO_DELTA:
            raise LDIFDeltaUnknownModificationError(self.dn, key)

        self.mod_spec = key
        self.mod_spec_attr = val
        self.mod_spec_data = []
        self.mode = IN_MOD_SPEC
Example #30
0
 def testAdd_NewAndExisting_ManyTypes(self):
     a = entry.BaseLDAPEntry(dn='dc=foo',
                             attributes={
                                 'foo': ['bar'],
                                 'baz': ['quux'],
                             })
     b = entry.BaseLDAPEntry(dn='dc=foo',
                             attributes={
                                 'foo': ['bar', 'thud', 'bang'],
                                 'baz': ['quux', 'bar', 'stump'],
                                 'bang': ['thud', 'barble'],
                             })
     result = a.diff(b)
     self.assertEqual(
         result,
         delta.ModifyOp('dc=foo', [
             delta.Add('bang', ['thud', 'barble']),
             delta.Add('baz', ['bar', 'stump']),
             delta.Add('foo', ['thud', 'bang']),
         ]))