Skip to content

Commit 1b86b9e

Browse files
committed
Status codes oh my
1 parent 8263780 commit 1b86b9e

File tree

5 files changed

+162
-21
lines changed

5 files changed

+162
-21
lines changed

synapse/lib/aha.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,9 @@ async def post(self):
7979
url = await self.cell.addAhaSvcProv(name, provinfo=provinfo)
8080
except asyncio.CancelledError: # pragma: no cover
8181
raise
82-
except s_exc.SynErr as e:
83-
logger.exception(f'Error provisioning {name}')
84-
return self.sendRestErr(e.__class__.__name__, e.get('mesg', str(e)))
85-
except Exception as e: # pragma: no cover
82+
except Exception as e:
8683
logger.exception(f'Error provisioning {name}')
87-
return self.sendRestErr(e.__class__.__name__, str(e))
84+
return self.sendRestExc(e, status_code=400)
8885
return self.sendRestRetn({'url': url})
8986

9087
_getAhaSvcSchema = {

synapse/lib/httpapi.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1020,12 +1020,12 @@ async def post(self):
10201020

10211021
name = body.get('name')
10221022
if name is None:
1023-
self.sendRestErr('MissingField', 'The adduser API requires a "name" argument.')
1023+
self.sendRestErr('MissingField', 'The adduser API requires a "name" argument.', status_code=400)
10241024
return
10251025

10261026
authcell = self.getAuthCell()
10271027
if await authcell.getUserDefByName(name) is not None:
1028-
self.sendRestErr('DupUser', f'A user named {name} already exists.')
1028+
self.sendRestErr('DupUser', f'A user named {name} already exists.', status_code=400)
10291029
return
10301030

10311031
udef = await authcell.addUser(name=name)
@@ -1276,7 +1276,7 @@ async def post(self):
12761276

12771277
view = self.cell.getView(body.get('view'), user)
12781278
if view is None:
1279-
return self.sendRestErr('NoSuchView', 'The specified view does not exist.', status_code=400)
1279+
return self.sendRestErr('NoSuchView', 'The specified view does not exist.', status_code=404)
12801280

12811281
wlyr = view.layers[0]
12821282
perm = ('feed:data', *name.split('.'))
@@ -1298,7 +1298,7 @@ async def post(self):
12981298
return self.sendRestRetn(None)
12991299

13001300
except Exception as e: # pragma: no cover
1301-
return self.sendRestExc(e)
1301+
return self.sendRestExc(e, status_code=400)
13021302

13031303
class CoreInfoV1(Handler):
13041304
'''

synapse/tests/test_cortex.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1193,6 +1193,7 @@ async def test_cortex_callstorm(self):
11931193

11941194
body = {'query': 'return (asdf)'}
11951195
async with sess.get(f'https://localhost:{port}/api/v1/storm/call', json=body) as resp:
1196+
self.eq(resp.status, 200)
11961197
retn = await resp.json()
11971198
self.eq('ok', retn.get('status'))
11981199
self.eq('asdf', retn['result'])
@@ -7415,8 +7416,7 @@ async def test_cortex_export(self):
74157416
async with self.getHttpSess(port=port, auth=('root', 'secret')) as sess:
74167417

74177418
resp = await sess.post(f'https://localhost:{port}/api/v1/storm/export')
7418-
self.eq(200, resp.status)
7419-
7419+
self.eq(400, resp.status)
74207420
reply = await resp.json()
74217421
self.eq('err', reply.get('status'))
74227422
self.eq('SchemaViolation', reply.get('code'))
@@ -7426,6 +7426,7 @@ async def test_cortex_export(self):
74267426
'opts': {'scrub': {'include': {'tags': ('visi',)}}},
74277427
}
74287428
resp = await sess.post(f'https://localhost:{port}/api/v1/storm/export', json=body)
7429+
self.eq(resp.status, 200)
74297430
byts = await resp.read()
74307431

74317432
podes = [i[1] for i in s_msgpack.Unpk().feed(byts)]
@@ -7443,6 +7444,7 @@ async def test_cortex_export(self):
74437444
body = {'query': 'inet:ipv4=asdfasdf'}
74447445
resp = await sess.post(f'https://localhost:{port}/api/v1/storm/export', json=body)
74457446
retval = await resp.json()
7447+
self.eq(resp.status, 400)
74467448
self.eq('err', retval['status'])
74477449
self.eq('BadTypeValu', retval['code'])
74487450

synapse/tests/test_lib_aha.py

+16
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ async def test_lib_aha_basics(self):
304304

305305
async with self.getHttpSess(auth=('root', 'secret'), port=httpsport) as sess:
306306
async with sess.get(svcsurl) as resp:
307+
self.eq(resp.status, 200)
307308
info = await resp.json()
308309
self.eq(info.get('status'), 'ok')
309310
result = info.get('result')
@@ -312,6 +313,7 @@ async def test_lib_aha_basics(self):
312313
{svcinfo.get('name') for svcinfo in result})
313314

314315
async with sess.get(svcsurl, json={'network': 'synapse'}) as resp:
316+
self.eq(resp.status, 200)
315317
info = await resp.json()
316318
self.eq(info.get('status'), 'ok')
317319
result = info.get('result')
@@ -320,25 +322,29 @@ async def test_lib_aha_basics(self):
320322
{svcinfo.get('name') for svcinfo in result})
321323

322324
async with sess.get(svcsurl, json={'network': 'newp'}) as resp:
325+
self.eq(resp.status, 200)
323326
info = await resp.json()
324327
self.eq(info.get('status'), 'ok')
325328
result = info.get('result')
326329
self.len(0, result)
327330

328331
# Sad path
329332
async with sess.get(svcsurl, json={'newp': 'hehe'}) as resp:
333+
self.eq(resp.status, 400)
330334
info = await resp.json()
331335
self.eq(info.get('status'), 'err')
332336
self.eq(info.get('code'), 'SchemaViolation')
333337

334338
async with sess.get(svcsurl, json={'network': 'mynet', 'newp': 'hehe'}) as resp:
339+
self.eq(resp.status, 400)
335340
info = await resp.json()
336341
self.eq(info.get('status'), 'err')
337342
self.eq(info.get('code'), 'SchemaViolation')
338343

339344
# Sad path
340345
async with self.getHttpSess(auth=('lowuser', 'lowuser'), port=httpsport) as sess:
341346
async with sess.get(svcsurl) as resp:
347+
self.eq(resp.status, 403)
342348
info = await resp.json()
343349
self.eq(info.get('status'), 'err')
344350
self.eq(info.get('code'), 'AuthDeny')
@@ -877,6 +883,7 @@ async def test_aha_httpapi(self):
877883
async with self.getHttpSess(auth=('root', 'secret'), port=httpsport) as sess:
878884
# Simple request works
879885
async with sess.post(url, json={'name': '00.foosvc'}) as resp:
886+
self.eq(resp.status, 200)
880887
info = await resp.json()
881888
self.eq(info.get('status'), 'ok')
882889
result = info.get('result')
@@ -904,6 +911,7 @@ async def test_aha_httpapi(self):
904911
}
905912
}
906913
async with sess.post(url, json=data) as resp:
914+
self.eq(resp.status, 200)
907915
info = await resp.json()
908916
self.eq(info.get('status'), 'ok')
909917
result = info.get('result')
@@ -919,30 +927,37 @@ async def test_aha_httpapi(self):
919927

920928
# Sad path
921929
async with sess.post(url) as resp:
930+
self.eq(resp.status, 400)
922931
info = await resp.json()
923932
self.eq(info.get('status'), 'err')
924933
self.eq(info.get('code'), 'SchemaViolation')
925934
async with sess.post(url, json={}) as resp:
935+
self.eq(resp.status, 400)
926936
info = await resp.json()
927937
self.eq(info.get('status'), 'err')
928938
self.eq(info.get('code'), 'SchemaViolation')
929939
async with sess.post(url, json={'name': 1234}) as resp:
940+
self.eq(resp.status, 400)
930941
info = await resp.json()
931942
self.eq(info.get('status'), 'err')
932943
self.eq(info.get('code'), 'SchemaViolation')
933944
async with sess.post(url, json={'name': ''}) as resp:
945+
self.eq(resp.status, 400)
934946
info = await resp.json()
935947
self.eq(info.get('status'), 'err')
936948
self.eq(info.get('code'), 'SchemaViolation')
937949
async with sess.post(url, json={'name': '00.newp', 'provinfo': 5309}) as resp:
950+
self.eq(resp.status, 400)
938951
info = await resp.json()
939952
self.eq(info.get('status'), 'err')
940953
self.eq(info.get('code'), 'SchemaViolation')
941954
async with sess.post(url, json={'name': '00.newp', 'provinfo': {'dmon:port': -1}}) as resp:
955+
self.eq(resp.status, 400)
942956
info = await resp.json()
943957
self.eq(info.get('status'), 'err')
944958
self.eq(info.get('code'), 'SchemaViolation')
945959
async with sess.post(url, json={'name': 'doom' * 16}) as resp:
960+
self.eq(resp.status, 400)
946961
info = await resp.json()
947962
self.eq(info.get('status'), 'err')
948963
self.eq(info.get('code'), 'BadArg')
@@ -951,6 +966,7 @@ async def test_aha_httpapi(self):
951966
await aha.addUser('lowuser', passwd='lowuser')
952967
async with self.getHttpSess(auth=('lowuser', 'lowuser'), port=httpsport) as sess:
953968
async with sess.post(url, json={'name': '00.newp'}) as resp:
969+
self.eq(resp.status, 403)
954970
info = await resp.json()
955971
self.eq(info.get('status'), 'err')
956972
self.eq(info.get('code'), 'AuthDeny')

0 commit comments

Comments
 (0)