forked from ahupp/python-magic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.py
77 lines (64 loc) · 2.7 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import os.path
import unittest
import magic
class MagicTest(unittest.TestCase):
TESTDATA_DIR = os.path.join(os.path.dirname(__file__), 'testdata')
def assert_values(self, m, expected_values):
for filename, expected_value in expected_values.items():
try:
filename = os.path.join(self.TESTDATA_DIR, filename)
except TypeError:
filename = os.path.join(self.TESTDATA_DIR.encode('utf-8'), filename)
value = m.from_buffer(open(filename, 'rb').read())
expected_value_bytes = expected_value.encode('utf-8')
self.assertEqual(value, expected_value_bytes)
value = m.from_file(filename)
self.assertEqual(value, expected_value_bytes)
def test_mime_types(self):
m = magic.Magic(mime=True)
self.assert_values(m, {
'magic.pyc': 'application/octet-stream',
'test.pdf': 'application/pdf',
'test.gz': 'application/x-gzip',
'text.txt': 'text/plain',
b'\xce\xbb'.decode('utf-8'): 'text/plain',
b'\xce\xbb': 'text/plain',
})
def test_descriptions(self):
m = magic.Magic()
os.environ['TZ'] = 'UTC' # To get the last modified date of test.gz in UTC
try:
self.assert_values(m, {
'magic.pyc': 'python 2.4 byte-compiled',
'test.pdf': 'PDF document, version 1.2',
'test.gz': 'gzip compressed data, was "test", from Unix, '
'last modified: Sun Jun 29 01:32:52 2008',
'text.txt': 'ASCII text',
})
finally:
del os.environ['TZ']
def test_mime_encodings(self):
m = magic.Magic(mime_encoding=True)
self.assert_values(m, {
'text-iso8859-1.txt': 'iso-8859-1',
'text.txt': 'us-ascii',
})
def test_errors(self):
m = magic.Magic()
self.assertRaises(IOError, m.from_file, 'nonexistent')
self.assertRaises(magic.MagicException, magic.Magic,
magic_file='nonexistent')
os.environ['MAGIC'] = 'nonexistent'
try:
self.assertRaises(magic.MagicException, magic.Magic)
finally:
del os.environ['MAGIC']
def test_keep_going(self):
filename = os.path.join(self.TESTDATA_DIR, 'keep-going.jpg')
m = magic.Magic(mime=True)
self.assertEqual(m.from_file(filename),
'application/octet-stream'.encode('utf-8'))
m = magic.Magic(mime=True, keep_going=True)
self.assertEqual(m.from_file(filename), 'image/jpeg'.encode('utf-8'))
if __name__ == '__main__':
unittest.main()