summaryrefslogtreecommitdiff
path: root/tests/format/elf/non_existing_binary.py
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-11-25 23:26:53 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-11-25 23:26:53 (GMT)
commit545d0490f6fbb397da66410f534670c52bfcc5da (patch)
treeb6923de79a4b406e51b906b76a737d93ea74b73c /tests/format/elf/non_existing_binary.py
parent355a7140932b77d351bc6ddd965608b0011af855 (diff)
Implemented restricted contents and created test cases.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@608 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'tests/format/elf/non_existing_binary.py')
-rw-r--r--tests/format/elf/non_existing_binary.py20
1 files changed, 9 insertions, 11 deletions
diff --git a/tests/format/elf/non_existing_binary.py b/tests/format/elf/non_existing_binary.py
index 47c9028..6111f03 100644
--- a/tests/format/elf/non_existing_binary.py
+++ b/tests/format/elf/non_existing_binary.py
@@ -5,22 +5,20 @@
# Eprouve quelques mécanismes de construction côté Python.
-import pychrysalide
-
+from chrysacase import ChrysalideTestCase
from pychrysalide.analysis.contents import FileContent
from pychrysalide.format.elf import ElfFormat
-cnt = FileContent("non_existing_binary")
-print(cnt)
+class TestNonExistingBinary(ChrysalideTestCase):
+ """TestCase for non existent binary loading."""
-print(cnt == None)
+ def testNonExistent(self):
+ """Try to load a non existent binary without crashing."""
-try:
- fmt = ElfFormat(cnt)
-except TypeError as e:
- fmt = None
+ cnt = FileContent('non_existing_binary')
+ self.assertIsNone(cnt)
-print(fmt)
+ with self.assertRaisesRegex(TypeError, 'The argument must be an instance of BinContent.'):
-print(fmt == None)
+ fmt = ElfFormat(cnt)