File: pypff_test_file.py

package info (click to toggle)
libpff 20180714-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 17,824 kB
  • sloc: ansic: 282,833; sh: 6,080; makefile: 1,832; python: 410; java: 78; sed: 16
file content (267 lines) | stat: -rw-r--r-- 6,722 bytes parent folder | download | duplicates (3)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#!/usr/bin/env python
#
# Python-bindings file type test script
#
# Copyright (C) 2008-2018, Joachim Metz <joachim.metz@gmail.com>
#
# Refer to AUTHORS for acknowledgements.
#
# This software is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this software.  If not, see <http://www.gnu.org/licenses/>.

import argparse
import os
import sys
import unittest

import pypff


class FileTypeTests(unittest.TestCase):
  """Tests the file type."""

  def test_signal_abort(self):
    """Tests the signal_abort function."""
    pff_file = pypff.file()

    pff_file.signal_abort()

  def test_open(self):
    """Tests the open function."""
    if not unittest.source:
      return

    pff_file = pypff.file()

    pff_file.open(unittest.source)

    with self.assertRaises(IOError):
      pff_file.open(unittest.source)

    pff_file.close()

    with self.assertRaises(TypeError):
      pff_file.open(None)

    with self.assertRaises(ValueError):
      pff_file.open(unittest.source, mode="w")

  def test_open_file_object(self):
    """Tests the open_file_object function."""
    if not unittest.source:
      return

    file_object = open(unittest.source, "rb")

    pff_file = pypff.file()

    pff_file.open_file_object(file_object)

    with self.assertRaises(IOError):
      pff_file.open_file_object(file_object)

    pff_file.close()

    # TODO: change IOError into TypeError
    with self.assertRaises(IOError):
      pff_file.open_file_object(None)

    with self.assertRaises(ValueError):
      pff_file.open_file_object(file_object, mode="w")

  def test_close(self):
    """Tests the close function."""
    if not unittest.source:
      return

    pff_file = pypff.file()

    with self.assertRaises(IOError):
      pff_file.close()

  def test_open_close(self):
    """Tests the open and close functions."""
    if not unittest.source:
      return

    pff_file = pypff.file()

    # Test open and close.
    pff_file.open(unittest.source)
    pff_file.close()

    # Test open and close a second time to validate clean up on close.
    pff_file.open(unittest.source)
    pff_file.close()

    file_object = open(unittest.source, "rb")

    # Test open_file_object and close.
    pff_file.open_file_object(file_object)
    pff_file.close()

    # Test open_file_object and close a second time to validate clean up on close.
    pff_file.open_file_object(file_object)
    pff_file.close()

    # Test open_file_object and close and dereferencing file_object.
    pff_file.open_file_object(file_object)
    del file_object
    pff_file.close()

  def test_set_ascii_codepage(self):
    """Tests the set_ascii_codepage function."""
    supported_codepages = (
        "ascii", "cp874", "cp932", "cp936", "cp949", "cp950", "cp1250",
        "cp1251", "cp1252", "cp1253", "cp1254", "cp1255", "cp1256", "cp1257",
        "cp1258")

    pff_file = pypff.file()

    for codepage in supported_codepages:
      pff_file.set_ascii_codepage(codepage)

    unsupported_codepages = (
        "iso-8859-1", "iso-8859-2", "iso-8859-3", "iso-8859-4", "iso-8859-5",
        "iso-8859-6", "iso-8859-7", "iso-8859-8", "iso-8859-9", "iso-8859-10",
        "iso-8859-11", "iso-8859-13", "iso-8859-14", "iso-8859-15",
        "iso-8859-16", "koi8_r", "koi8_u")

    for codepage in unsupported_codepages:
      with self.assertRaises(RuntimeError):
        pff_file.set_ascii_codepage(codepage)

  # TODO: add tests for get_root_item.

  def test_get_message_store(self):
    """Tests the get_message_store function."""
    pff_file = pypff.file()

    with self.assertRaises(IOError):
      pff_file.get_message_store()

    with self.assertRaises(IOError):
      pff_file.message_store

    if not unittest.source:
      return

    pff_file = pypff.file()
    pff_file.open(unittest.source)

    pff_file.get_message_store()

    _ = pff_file.message_store

    pff_file.close()

  def test_get_name_to_id_map(self):
    """Tests the get_name_to_id_map function."""
    pff_file = pypff.file()

    with self.assertRaises(IOError):
      pff_file.get_name_to_id_map()

    with self.assertRaises(IOError):
      pff_file.name_to_id_map

    if not unittest.source:
      return

    pff_file = pypff.file()
    pff_file.open(unittest.source)

    pff_file.get_name_to_id_map()

    _ = pff_file.name_to_id_map

    pff_file.close()

  def test_get_root_folder(self):
    """Tests the get_root_folder function."""
    pff_file = pypff.file()

    with self.assertRaises(IOError):
      pff_file.get_root_folder()

    with self.assertRaises(IOError):
      pff_file.root_folder

    if not unittest.source:
      return

    pff_file = pypff.file()
    pff_file.open(unittest.source)

    pff_file.get_root_folder()

    _ = pff_file.root_folder

    pff_file.close()

  def test_get_number_of_orphan_items(self):
    """Tests the get_number_of_orphan_items function."""
    pff_file = pypff.file()

    with self.assertRaises(IOError):
      pff_file.get_number_of_orphan_items()

    with self.assertRaises(IOError):
      pff_file.number_of_orphan_items

    if not unittest.source:
      return

    pff_file = pypff.file()
    pff_file.open(unittest.source)

    number_of_items = pff_file.get_number_of_orphan_items()
    self.assertIsNotNone(number_of_items)

    self.assertIsNotNone(pff_file.number_of_orphan_items)

    pff_file.close()

  def test_get_orphan_item(self):
    """Tests the get_orphan_item function."""
    pff_file = pypff.file()

    with self.assertRaises(IOError):
      pff_file.get_orphan_item(0)

    if not unittest.source:
      return

    pff_file = pypff.file()
    pff_file.open(unittest.source)

    if pff_file.number_of_orphan_items > 0:
      item = pff_file.get_orphan_item(0)
      self.assertIsNotNone(item)

    pff_file.close()


if __name__ == "__main__":
  argument_parser = argparse.ArgumentParser()

  argument_parser.add_argument(
      "source", nargs="?", action="store", metavar="PATH",
      default=None, help="The path of the source file.")

  options, unknown_options = argument_parser.parse_known_args()
  unknown_options.insert(0, sys.argv[0])

  setattr(unittest, "source", options.source)

  unittest.main(argv=unknown_options, verbosity=2)