@@ -304,6 +304,7 @@ async def test_lib_aha_basics(self):
304
304
305
305
async with self .getHttpSess (auth = ('root' , 'secret' ), port = httpsport ) as sess :
306
306
async with sess .get (svcsurl ) as resp :
307
+ self .eq (resp .status , 200 )
307
308
info = await resp .json ()
308
309
self .eq (info .get ('status' ), 'ok' )
309
310
result = info .get ('result' )
@@ -312,6 +313,7 @@ async def test_lib_aha_basics(self):
312
313
{svcinfo .get ('name' ) for svcinfo in result })
313
314
314
315
async with sess .get (svcsurl , json = {'network' : 'synapse' }) as resp :
316
+ self .eq (resp .status , 200 )
315
317
info = await resp .json ()
316
318
self .eq (info .get ('status' ), 'ok' )
317
319
result = info .get ('result' )
@@ -320,25 +322,29 @@ async def test_lib_aha_basics(self):
320
322
{svcinfo .get ('name' ) for svcinfo in result })
321
323
322
324
async with sess .get (svcsurl , json = {'network' : 'newp' }) as resp :
325
+ self .eq (resp .status , 200 )
323
326
info = await resp .json ()
324
327
self .eq (info .get ('status' ), 'ok' )
325
328
result = info .get ('result' )
326
329
self .len (0 , result )
327
330
328
331
# Sad path
329
332
async with sess .get (svcsurl , json = {'newp' : 'hehe' }) as resp :
333
+ self .eq (resp .status , 400 )
330
334
info = await resp .json ()
331
335
self .eq (info .get ('status' ), 'err' )
332
336
self .eq (info .get ('code' ), 'SchemaViolation' )
333
337
334
338
async with sess .get (svcsurl , json = {'network' : 'mynet' , 'newp' : 'hehe' }) as resp :
339
+ self .eq (resp .status , 400 )
335
340
info = await resp .json ()
336
341
self .eq (info .get ('status' ), 'err' )
337
342
self .eq (info .get ('code' ), 'SchemaViolation' )
338
343
339
344
# Sad path
340
345
async with self .getHttpSess (auth = ('lowuser' , 'lowuser' ), port = httpsport ) as sess :
341
346
async with sess .get (svcsurl ) as resp :
347
+ self .eq (resp .status , 403 )
342
348
info = await resp .json ()
343
349
self .eq (info .get ('status' ), 'err' )
344
350
self .eq (info .get ('code' ), 'AuthDeny' )
@@ -877,6 +883,7 @@ async def test_aha_httpapi(self):
877
883
async with self .getHttpSess (auth = ('root' , 'secret' ), port = httpsport ) as sess :
878
884
# Simple request works
879
885
async with sess .post (url , json = {'name' : '00.foosvc' }) as resp :
886
+ self .eq (resp .status , 200 )
880
887
info = await resp .json ()
881
888
self .eq (info .get ('status' ), 'ok' )
882
889
result = info .get ('result' )
@@ -904,6 +911,7 @@ async def test_aha_httpapi(self):
904
911
}
905
912
}
906
913
async with sess .post (url , json = data ) as resp :
914
+ self .eq (resp .status , 200 )
907
915
info = await resp .json ()
908
916
self .eq (info .get ('status' ), 'ok' )
909
917
result = info .get ('result' )
@@ -919,30 +927,37 @@ async def test_aha_httpapi(self):
919
927
920
928
# Sad path
921
929
async with sess .post (url ) as resp :
930
+ self .eq (resp .status , 400 )
922
931
info = await resp .json ()
923
932
self .eq (info .get ('status' ), 'err' )
924
933
self .eq (info .get ('code' ), 'SchemaViolation' )
925
934
async with sess .post (url , json = {}) as resp :
935
+ self .eq (resp .status , 400 )
926
936
info = await resp .json ()
927
937
self .eq (info .get ('status' ), 'err' )
928
938
self .eq (info .get ('code' ), 'SchemaViolation' )
929
939
async with sess .post (url , json = {'name' : 1234 }) as resp :
940
+ self .eq (resp .status , 400 )
930
941
info = await resp .json ()
931
942
self .eq (info .get ('status' ), 'err' )
932
943
self .eq (info .get ('code' ), 'SchemaViolation' )
933
944
async with sess .post (url , json = {'name' : '' }) as resp :
945
+ self .eq (resp .status , 400 )
934
946
info = await resp .json ()
935
947
self .eq (info .get ('status' ), 'err' )
936
948
self .eq (info .get ('code' ), 'SchemaViolation' )
937
949
async with sess .post (url , json = {'name' : '00.newp' , 'provinfo' : 5309 }) as resp :
950
+ self .eq (resp .status , 400 )
938
951
info = await resp .json ()
939
952
self .eq (info .get ('status' ), 'err' )
940
953
self .eq (info .get ('code' ), 'SchemaViolation' )
941
954
async with sess .post (url , json = {'name' : '00.newp' , 'provinfo' : {'dmon:port' : - 1 }}) as resp :
955
+ self .eq (resp .status , 400 )
942
956
info = await resp .json ()
943
957
self .eq (info .get ('status' ), 'err' )
944
958
self .eq (info .get ('code' ), 'SchemaViolation' )
945
959
async with sess .post (url , json = {'name' : 'doom' * 16 }) as resp :
960
+ self .eq (resp .status , 400 )
946
961
info = await resp .json ()
947
962
self .eq (info .get ('status' ), 'err' )
948
963
self .eq (info .get ('code' ), 'BadArg' )
@@ -951,6 +966,7 @@ async def test_aha_httpapi(self):
951
966
await aha .addUser ('lowuser' , passwd = 'lowuser' )
952
967
async with self .getHttpSess (auth = ('lowuser' , 'lowuser' ), port = httpsport ) as sess :
953
968
async with sess .post (url , json = {'name' : '00.newp' }) as resp :
969
+ self .eq (resp .status , 403 )
954
970
info = await resp .json ()
955
971
self .eq (info .get ('status' ), 'err' )
956
972
self .eq (info .get ('code' ), 'AuthDeny' )
0 commit comments