
Node
====

Short test on superclass

  >>> from zope.interface.common.mapping import IFullMapping
  >>> from zodict import zodict
  >>> zod = zodict()
  >>> IFullMapping.providedBy(zod)
  True

We have a base node which provides the default interface implementation.

  >>> from zope.interface.common.mapping import IFullMapping
  >>> from zodict.interfaces import INode
  >>> from zodict.node import Node
  >>> root = Node('root')
  >>> root
  <Node object 'root' at ...>
  
  >>> root.__name__
  'root'
  
  >>> root.__parent__

  >>> root.path
  ['root']
  
  >>> root['child'] = Node()
  >>> root['child'].path
  ['root', 'child']
  
  >>> root['child']['subchild'] = Node()
  >>> root['child']['subchild'].path
  ['root', 'child', 'subchild']
  
  >>> root['child']['subchild2'] = Node()
  >>> root.keys()
  ['child']
  
  >>> root['child'].keys()
  ['subchild', 'subchild2']
  
  >>> root['child'].items()
  [('subchild', <Node object 'subchild' at ...>), 
  ('subchild2', <Node object 'subchild2' at ...>)]
  
  >>> child = root['child']
  >>> child.__name__
  'child'
  
  >>> child.__parent__
  <Node object 'root' at ...>

Test filtereditems function.

  >>> from zope.interface import Interface
  >>> from zope.interface import alsoProvides
  >>> class IMarker(Interface): pass
  >>> alsoProvides(root['child']['subchild'], IMarker)
  >>> IMarker.providedBy(root['child']['subchild'])
  True
  
  >>> for item in root['child'].filtereditems(IMarker):
  ...     print item.path
  ['root', 'child', 'subchild']

Check UUID stuff.::

  >>> root._index.keys()
  [UUID('...'), UUID('...'), UUID('...'), UUID('...')]

  >>> uuid = root['child']['subchild'].uuid
  >>> uuid
  UUID('...')
  
  >>> root.node(uuid).path
  ['root', 'child', 'subchild']
  
  >>> root.uuid = uuid
  Traceback (most recent call last):
    ...
  ValueError: Given uuid was already used for another Node
  
  >>> import uuid
  >>> newuuid = uuid.uuid4()
  
  >>> root.uuid = newuuid
  >>> root['child'].node(newuuid).path
  ['root']
  
  >>> len(root._index.keys())
  4
  
  >>> root.uuid = object()
  Traceback (most recent call last):
    ...  
  AssertionError: arg <object object at ...> does not match <class 'uuid.UUID'>

Delete an Item::

Child of root contains 2 more subchilds.:

  >>> len(root['child'].keys())
  2

Store the uuids of the nodes which are expected to be deleted from index if
child is deleted.:

  >>> delindexes = [
  ...     root['child'].uuid,
  ...     root['child']['subchild'].uuid,
  ...     root['child']['subchild2'].uuid,
  ... ]

Read the uuid index and check containment in index.:

  >>> uuids = root._index.keys()
  >>> len(uuids)
  4
  
  >>> delindexes[0] in uuids
  True
  
  >>> delindexes[1] in uuids
  True
  
  >>> delindexes[2] in uuids
  True
  
Delete child. All checked uuids above must be deleted from index.:
  
  >>> del root['child']
  >>> root.keys()
  []
  
  >>> uuids = root._index.keys()
  >>> len(uuids)
  1
  
  >>> delindexes[0] in uuids
  False
  
  >>> delindexes[1] in uuids
  False
  
  >>> delindexes[2] in uuids
  False