-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathtest_relation.py
More file actions
61 lines (42 loc) · 1.23 KB
/
test_relation.py
File metadata and controls
61 lines (42 loc) · 1.23 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# coding: utf-8
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import os
from nose.tools import with_setup
import leancloud
from leancloud import Object
from leancloud import Relation
__author__ = "asaka <lan@leancloud.rocks>"
def setup_func():
leancloud.init(os.environ["APP_ID"], os.environ["APP_KEY"])
class Band(Object):
pass
class Album(Object):
pass
def test_create_relation(): # type: () -> None
album = Album()
r = Relation(album, "band")
assert r
@with_setup(setup_func)
def test_query_relation(): # type: () -> None
album = Album(title="variety")
band1 = Band(name="xxx")
band1.save()
band2 = Band(name="ooo")
band2.save()
relation = album.relation("band")
relation.add(band1)
relation.add(band2)
album.save()
album = leancloud.Query("Album").get(album.id)
relation = album.relation("band")
bands = relation.query.find()
assert band1.id in [x.id for x in bands]
assert band2.id in [x.id for x in bands]
bands = relation.query.find()
assert band1.id in [x.id for x in bands]
assert band2.id in [x.id for x in bands]
album.destroy()
band1.destroy()
band2.destroy()