Ejemplo n.º 1
0
 def test_unreviewed_file_not_on_mirror(self):
     # Make sure the mirror dir is clear.
     mirrordir = settings.MIRROR_STAGE_PATH + '/3615'
     rmtree(mirrordir)
     self.file.update(status=amo.STATUS_UNREVIEWED)
     new_file = tasks.repackage_jetpack(self.builder_data())
     assert not storage.exists(new_file.mirror_file_path)
Ejemplo n.º 2
0
 def test_unreviewed_file_not_on_mirror(self):
     # Make sure the mirror dir is clear.
     mirrordir = settings.MIRROR_STAGE_PATH + "/3615"
     rmtree(mirrordir)
     self.file.update(status=amo.STATUS_UNREVIEWED)
     new_file = tasks.repackage_jetpack(self.builder_data())
     assert not storage.exists(new_file.mirror_file_path)
Ejemplo n.º 3
0
 def test_unreviewed_file_not_on_mirror(self):
     # Make sure the mirror dir is clear.
     mirrordir = user_media_path('mirror_stage') + '/3615'
     rmtree(mirrordir)
     self.file.update(status=amo.STATUS_UNREVIEWED)
     new_file = tasks.repackage_jetpack(self.builder_data())
     assert not storage.exists(new_file.mirror_file_path)
Ejemplo n.º 4
0
 def test_file_on_mirror(self):
     # Make sure the mirror dir is clear.
     if storage.exists(os.path.dirname(self.file.mirror_file_path)):
         rmtree(os.path.dirname(self.file.mirror_file_path))
     new_file = tasks.repackage_jetpack(self.builder_data())
     assert storage.exists(new_file.mirror_file_path)
Ejemplo n.º 5
0
 def test_file_on_mirror(self):
     # Make sure the mirror dir is clear.
     if storage.exists(os.path.dirname(self.file.mirror_file_path)):
         rmtree(os.path.dirname(self.file.mirror_file_path))
     new_file = tasks.repackage_jetpack(self.builder_data())
     assert storage.exists(new_file.mirror_file_path)