Skip to content

Commit 8fba48a

Browse files
committed
more coverage
1 parent a4926c2 commit 8fba48a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

synapse/lib/cell.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1719,11 +1719,13 @@ async def setDriveInfoPerm(self, iden, perm):
17191719
async def setDriveItemProp(self, iden, path, valu):
17201720
if isinstance(path, str):
17211721
path = (path,)
1722-
vers, item = await self.getDriveData(iden)
1723-
if item is None:
1722+
data = await self.getDriveData(iden)
1723+
if data is None:
17241724
mesg = f'No drive item with ID {iden}.'
17251725
raise s_exc.NoSuchIden(mesg=mesg)
17261726

1727+
vers, item = data
1728+
17271729
try:
17281730
step = item
17291731
for p in path[:-1]:

synapse/lib/drive.py

+2
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,8 @@ def _getItemData(self, bidn, vers=None):
450450

451451
if vers is None:
452452
info = self._getItemInfo(bidn)
453+
if info is None:
454+
return None
453455
vers = info.get('version')
454456

455457
versindx = getVersIndx(vers)

synapse/tests/test_lib_cell.py

+2
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,8 @@ async def migrate_v1(info, versinfo, data):
298298
data = await cell.getDriveData(iden)
299299
self.eq(data[1]['stuff'], 3829)
300300

301+
await self.asyncraises(s_exc.NoSuchIden, cell.setDriveItemProp(s_common.guid(), ('lolnope',), 'not real'))
302+
301303
await self.asyncraises(s_exc.BadArg, cell.setDriveItemProp(iden, ('blorp', 0, 'neato'), 'my special string'))
302304
data[1]['blorp'] = {
303305
'bleep': [{'neato': 'thing'}]

0 commit comments

Comments
 (0)