Commit ae90c84d authored by Ivan Tyagov's avatar Ivan Tyagov

Snapshot has been removed.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@37193 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 9772de6b
...@@ -765,27 +765,6 @@ class TestIngestion(ERP5TypeTestCase): ...@@ -765,27 +765,6 @@ class TestIngestion(ERP5TypeTestCase):
""" """
printAndLog('stepExportImage not implemented') printAndLog('stepExportImage not implemented')
def stepCheckHasSnapshot(self, sequence=None, sequence_list=None, **kw):
document = self.getDocument('one')
self.failUnless(document.hasSnapshotData())
def stepCheckHasNoSnapshot(self, sequence=None, sequence_list=None, **kw):
document = self.getDocument('one')
self.failIf(document.hasSnapshotData())
def stepCreateSnapshot(self, sequence=None, sequence_list=None, **kw):
document = self.getDocument('one')
document.createSnapshot()
def stepTryRecreateSnapshot(self, sequence=None, sequence_list=None, **kw):
document = self.getDocument('one')
# XXX this always fails, don't know why
#self.assertRaises(ConversionError, document.createSnapshot)
def stepDeleteSnapshot(self, sequence=None, sequence_list=None, **kw):
document = self.getDocument('one')
document.deleteSnapshot()
def stepCleanUp(self, sequence=None, sequence_list=None, **kw): def stepCleanUp(self, sequence=None, sequence_list=None, **kw):
""" """
Clean up DMS system from old content. Clean up DMS system from old content.
...@@ -1216,32 +1195,6 @@ class TestIngestion(ERP5TypeTestCase): ...@@ -1216,32 +1195,6 @@ class TestIngestion(ERP5TypeTestCase):
] ]
self.playSequence(step_list, quiet) self.playSequence(step_list, quiet)
def test_07_SnapshotGeneration(self, quiet=QUIET, run=RUN_ALL_TEST):
"""
Generate snapshot, make sure it is there,
try to generate it again, remove and
generate once more
"""
if not run: return
if not quiet: printAndLog('test_07_SnapshotGeneration')
step_list = [ 'stepCleanUp'
,'stepCreateTextDocument'
,'stepUploadFromViewForm'
,'stepCheckConvertingState'
,'stepTic'
,'stepCheckConvertedState'
,'stepCheckHasNoSnapshot'
,'stepCreateSnapshot'
,'stepTryRecreateSnapshot'
,'stepCheckHasSnapshot'
,'stepDeleteSnapshot'
,'stepCheckHasNoSnapshot'
,'stepCreateSnapshot'
,'stepTic'
]
self.playSequence(step_list, quiet)
def test_08_Cache(self, quiet=QUIET, run=RUN_ALL_TEST): def test_08_Cache(self, quiet=QUIET, run=RUN_ALL_TEST):
""" """
I don't know how to verify how cache works I don't know how to verify how cache works
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment