Esempio n. 1
0
 def test_example_3(self):
     q = Query()
     q.username = '******'
     q.password = hashlib.md5('password').hexdigest()
     q.profile.name = 'Sergey'
     q.profile.surname = 'Nikitin'
     q.profile.age = 28
     q.profile.gender = 'M'
     q.profile.dob = datetime.datetime(1985, 10, 8).strftime('%Y-%m-%d')
     q.created = 1381733783
     q.version += 1
     self.assertDictEqual(q.update, {'$set': {'username': '******', 'profile.name': 'Sergey', 'created': 1381733783, 'profile.age': 28, 'profile.surname': 'Nikitin', 'profile.gender': 'M', 'profile.dob': '1985-10-08', 'password': '******'}, '$inc': {'version': 1}})
Esempio n. 2
0
 def test_example_1(self):
     q = Query()
     q.find = ((~(q.profile.age > 20)) & (q.username == 'test'))
     self.assertDictEqual(q.find, {'$and': [{'profile.age': {'$not': {'$gt': 20}}}, {'username': {'$eq': 'test'}}]})
Esempio n. 3
0
 def test_example_2(self):
     q = Query()
     q.username = '******'
     q.profile.age = 28
     q.visits += 1
     self.assertDictEqual(q.update, {'$set': {'username': '******', 'profile.age': 28}, '$inc': {'visits': 1}})
Esempio n. 4
0
 def test_basic_find(self):
     q = Query()
     q.find = ((q.username == 'test') & ~(q.profile.gender == 1))
     self.assertDictEqual(q.find, {'$and': [{'username': {'$eq': 'test'}}, {'profile.gender': {'$not': {'$eq': 1}}}]})