@@ -430,20 +430,18 @@ async def test_http_auth(self):
430
430
async with sess .post (f'https://localhost:{ port } /api/v1/login' ) as resp :
431
431
self .eq (resp .status , http .HTTPStatus .BAD_REQUEST )
432
432
item = await resp .json ()
433
- print (item )
434
433
self .eq ('SchemaViolation' , item .get ('code' ))
435
434
async with sess .post (f'https://localhost:{ port } /api/v1/login' , json = ['newp' ,]) as resp :
436
435
self .eq (resp .status , http .HTTPStatus .BAD_REQUEST )
437
436
item = await resp .json ()
438
- print (item )
439
437
self .eq ('SchemaViolation' , item .get ('code' ))
440
438
441
439
async with self .getHttpSess () as sess :
442
440
443
441
info = {'user' : 'hehe' , 'passwd' : 'newp' }
444
442
with self .getAsyncLoggerStream ('synapse.lib.httpapi' , 'No such user.' ) as stream :
445
443
async with sess .post (f'https://localhost:{ port } /api/v1/login' , json = info ) as resp :
446
- self .eq (resp .status , http .HTTPStatus .OK )
444
+ self .eq (resp .status , http .HTTPStatus .NOT_FOUND )
447
445
item = await resp .json ()
448
446
self .eq ('AuthDeny' , item .get ('code' ))
449
447
self .true (await stream .wait (timeout = 6 ))
@@ -453,7 +451,7 @@ async def test_http_auth(self):
453
451
await core .setUserLocked (visiiden , True )
454
452
with self .getAsyncLoggerStream ('synapse.lib.httpapi' , 'User is locked.' ) as stream :
455
453
async with sess .post (f'https://localhost:{ port } /api/v1/login' , json = info ) as resp :
456
- self .eq (resp .status , http .HTTPStatus .OK )
454
+ self .eq (resp .status , http .HTTPStatus .FORBIDDEN )
457
455
item = await resp .json ()
458
456
self .eq ('AuthDeny' , item .get ('code' ))
459
457
self .true (await stream .wait (timeout = 6 ))
@@ -464,7 +462,7 @@ async def test_http_auth(self):
464
462
info = {'user' : 'visi' , 'passwd' : 'borked' }
465
463
with self .getAsyncLoggerStream ('synapse.lib.httpapi' , 'Incorrect password.' ) as stream :
466
464
async with sess .post (f'https://localhost:{ port } /api/v1/login' , json = info ) as resp :
467
- self .eq (resp .status , http .HTTPStatus .OK )
465
+ self .eq (resp .status , http .HTTPStatus .FORBIDDEN )
468
466
item = await resp .json ()
469
467
self .eq ('AuthDeny' , item .get ('code' ))
470
468
self .true (await stream .wait (timeout = 6 ))
@@ -1602,6 +1600,21 @@ async def test_http_storm(self):
1602
1600
self .true (await task .waitfini (6 ))
1603
1601
self .len (0 , core .boss .tasks )
1604
1602
1603
+ fork = await core .callStorm ('return($lib.view.get().fork().iden)' )
1604
+ lowuser = await core .auth .addUser ('lowuser' )
1605
+
1606
+ async with sess .get (f'https://localhost:{ port } /api/v1/storm/nodes' ,
1607
+ json = {'query' : '.created' , 'opts' : {'view' : s_common .guid ()}}) as resp :
1608
+ self .eq (resp .status , http .HTTPStatus .NOT_FOUND )
1609
+
1610
+ async with sess .get (f'https://localhost:{ port } /api/v1/storm' ,
1611
+ json = {'query' : '.created' , 'opts' : {'view' : s_common .guid ()}}) as resp :
1612
+ self .eq (resp .status , http .HTTPStatus .NOT_FOUND )
1613
+
1614
+ async with sess .get (f'https://localhost:{ port } /api/v1/storm' ,
1615
+ json = {'query' : '.created' , 'opts' : {'user' : lowuser .iden , 'view' : fork }}) as resp :
1616
+ self .eq (resp .status , http .HTTPStatus .FORBIDDEN )
1617
+
1605
1618
# check reqvalidstorm with various queries
1606
1619
tvs = (
1607
1620
('test:str=test' , {}, 'ok' ),
@@ -2193,7 +2206,7 @@ async def test_http_locked_admin(self):
2193
2206
self .eq ('NotAuthenticated' , item .get ('code' ))
2194
2207
2195
2208
resp = await sess .post (f'{ root } /api/v1/login' , json = {'user' : 'visi' , 'passwd' : 'secret123' })
2196
- self .eq (resp .status , http .HTTPStatus .OK )
2209
+ self .eq (resp .status , http .HTTPStatus .FORBIDDEN )
2197
2210
retn = await resp .json ()
2198
2211
self .eq (retn .get ('status' ), 'err' )
2199
2212
self .eq (retn .get ('code' ), 'AuthDeny' )
0 commit comments