File tree 2 files changed +13
-14
lines changed
tests/entities/models/types
2 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,4 @@ async def my_find_many_objects(req: Request):
21
21
return Response .data (values )
22
22
group .define_handler ("myFindManyObjects" , my_find_many_objects )
23
23
app .main_namespace ().define_model_handler_group ("Support" , support_handler_group )
24
+ return app
Original file line number Diff line number Diff line change 1
- from teo .test import TestCase
1
+ from teo .test import TestCase , TestRequest
2
2
from teo .test .matchers import match_json_value , ignore
3
3
from .app import load_app
4
4
@@ -10,13 +10,11 @@ def load_app(cls):
10
10
return load_app ()
11
11
12
12
async def test_create_object (self ):
13
- response = await self .server .process ({
14
- "method" : "POST" ,
15
- "uri" : "/Support/myCreateObject" ,
16
- "body" : {
17
- "int32" : 1 ,
18
- },
19
- })
13
+ request = TestRequest (
14
+ method = 'POST' ,
15
+ uri = '/Support/myCreateObject' ,
16
+ body = {'int32' : 1 })
17
+ response = await self .server .process (request )
20
18
match_json_value (response .body_as_json (), {
21
19
"data" : {
22
20
"id" : ignore ,
@@ -25,15 +23,15 @@ async def test_create_object(self):
25
23
})
26
24
27
25
async def test_find_many_objects (self ):
28
- response = await self . server . process ({
29
- " method" : " POST" ,
30
- " uri" : " /Support/myFindManyObjects" ,
31
- " body" : {
26
+ request = TestRequest (
27
+ method = ' POST' ,
28
+ uri = ' /Support/myFindManyObjects' ,
29
+ body = {
32
30
"orderBy" : {
33
31
"id" : "asc"
34
32
}
35
- },
36
- } )
33
+ })
34
+ response = await self . server . process ( request )
37
35
match_json_value (response .body_as_json (), {
38
36
"data" : [],
39
37
})
You can’t perform that action at this time.
0 commit comments