Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/dateranges.txt
blob: 886e7d27e323984c91d36cfac1ddd0bcf9dcc9ea (plain)
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
Test that date
First clean up from any other tests.
>>> import os, datetime
>>> assert os.system('rm -rf /tmp/test_ds/') == 0

>>> from olpc.datastore import DataStore
>>> from olpc.datastore import backingstore, model
>>> ds = DataStore()
>>> ds.registerBackend(backingstore.FileBackingStore)

>>> assert ds.mount("/tmp/test_ds")

>>> t1 = datetime.datetime(1995, 1, 1)
>>> t2 = datetime.datetime(2000, 1, 1)
>>> t3 = datetime.datetime(2005, 1, 1)

>>> a = ds.create(dict(title="Content A", author="Bob", ctime=t1.isoformat()), '')
>>> b = ds.create(dict(title="Content B", author="Alice", ctime=t2.isoformat()), '')
>>> c = ds.create(dict(title="Content V", author="Clare", ctime=t3.isoformat()), '')        

>>> ds.complete_indexing()


Scan for ranges

>>> result, count = ds.find({'ctime' : {'start' : t1.isoformat(), 'end' : t3.isoformat() }})
>>> assert count == 3


>>> result, count = ds.find({'ctime' : {'start' : t1.isoformat(), 'end' : t2.isoformat() }})
>>> assert count == 2

>>> result, count = ds.find({'ctime' : {'start' : t2.isoformat(), 'end' : t3.isoformat() }})
>>> assert count == 2

>>> result, count = ds.find({'ctime' : {'start' : t1.isoformat(), 'end' : t1.isoformat() }})
>>> assert count == 1


>>> ds.stop()
>>> del ds
>>> assert os.system('rm -rf /tmp/test_ds/') == 0