source: waeup/trunk/src/waeup/hostel/hostelcontainer.txt @ 4789

Last change on this file since 4789 was 4789, checked in by uli, 15 years ago

Merge changes from ulif-layout back into trunk (finally).

File size: 1.9 KB
Line 
1waeup.hostel.HostelContainer
2****************************
3
4Containers for hostels.
5
6:Test-Layer: unit
7
8Getting a hostel container
9==========================
10
11We can easily create `HostelContainers`::
12
13    >>> from waeup.hostel.hostelcontainer import HostelContainer
14    >>> mycontainer = HostelContainer()
15
16Hostel containers provide ``IHostelContainer``:
17
18    >>> from waeup.interfaces import IHostelContainer
19    >>> IHostelContainer.providedBy(mycontainer)
20    True
21
22Another way to get a hostel container -- without importing the class
23-- is via factories. We registered a factory for hostel containers
24under the name ``waeup.HostelContainer``::
25
26    >>> import grok
27    >>> grok.testing.grok('waeup')
28
29Now we can ask for an object by calling the appropriate factory:
30
31    >>> from zope.component import createObject
32    >>> createObject(u'waeup.HostelContainer')
33    <waeup.hostel.hostelcontainer.HostelContainer object at 0x...>
34
35This way we get a thing that implements IHostelContainer without
36imports or similar.
37
38We can be sure, that the full interface is supported by the
39HostelContainer class::
40
41    >>> from zope.interface.verify import verifyClass
42    >>> verifyClass(IHostelContainer, HostelContainer)
43    True
44
45
46Storing things in hostel containers
47====================================
48
49We can, of course, store things in a hostel container. But when we
50really store an object, then it must be a hostel::
51
52    >>> mycontainer.addHostel(42)
53    Traceback (most recent call last):
54    ...
55    TypeError: HostelContainers contain only IHostel instances
56
57Okay, so we have to get a hostel first::
58
59    >>> from waeup.hostel.hostel import Hostel
60    >>> myhostel = Hostel()
61
62We can add this hostel to our container::
63
64    >>> mycontainer.addHostel(myhostel)
65    '0'
66
67We get back the key, under which the hostel was stored. It will be
68some string, but there is no guarantee at all, how this key looks
69like. It might be a string of integers, a name or whatever; you cannot
70know before.
Note: See TracBrowser for help on using the repository browser.