Add GC test for torrent info
This commit is contained in:
parent
ec6efa0217
commit
742f3b4fc1
1 changed files with 7 additions and 0 deletions
|
@ -43,6 +43,13 @@ class TestGarbageCollection(unittest.TestCase):
|
|||
model.image.find_or_create_derived_storage(image, 'squash', preferred)
|
||||
model.image.find_or_create_derived_storage(image, 'aci', preferred)
|
||||
|
||||
# Add some torrent info.
|
||||
try:
|
||||
model.storage.save_torrent_info(image.storage, 1, 'helloworld')
|
||||
model.storage.save_torrent_info(image.storage, 2, 'helloworlds!')
|
||||
except:
|
||||
pass
|
||||
|
||||
# Add some additional placements to the image.
|
||||
for location_name in ['local_eu']:
|
||||
location = database.ImageStorageLocation.get(name=location_name)
|
||||
|
|
Reference in a new issue