Commit 81e3c2ea authored by Gabriel Monnerat's avatar Gabriel Monnerat

refactor to test with all formats and not stop in the first failure

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk/utils@42192 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 00bd0b70
......@@ -26,9 +26,7 @@
#
##############################################################################
import unittest
from xmlrpclib import ServerProxy, Fault
from subprocess import Popen, PIPE
from base64 import encodestring, decodestring
from cloudoooTestCase import CloudoooTestCase, make_suite
import magic
......@@ -80,14 +78,11 @@ class TestAllFormats(CloudoooTestCase):
source_format,
extension[0])
except Fault, err:
fault_list.append("%s >> %s - %s" % (source_format,
extension[0],
err.faultString))
continue
fault_list.append((source_format, extension[0], err.faultString))
magic_result = file_detector.from_buffer(decodestring(data_output))
self.assertEquals(magic_result.endswith(": empty"), False, magic_result)
if fault_list != []:
raise Fault(1, "\n".join(fault_list))
raise self.fail(fault_list)
def test_suite():
......
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