-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest_file_errors.py
44 lines (35 loc) · 1.46 KB
/
test_file_errors.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
"""Tests for variantkey file errors."""
# test_esid.py
# @category Libraries
# @author Nicola Asuni <[email protected]>
# @copyright 2017-2018 GENOMICS plc
# @license MIT (see LICENSE)
# @link https://github.com/genomicsplc/variantkey
import pyvariantkey.variantkey as pyvk
from unittest import TestCase
class TestFunctions(TestCase):
def test_class_file_error_genoref(self):
with self.assertRaises(Exception):
pyvk.VariantKey("/wrong/path/error.bin", None, None, None)
def test_class_file_error_nrvk(self):
with self.assertRaises(Exception):
pyvk.VariantKey(None, "/wrong/path/error.bin", None, None)
def test_class_file_error_rsvk(self):
with self.assertRaises(Exception):
pyvk.VariantKey(None, None, "/wrong/path/error.bin", None)
def test_class_file_error_vkrs(self):
with self.assertRaises(Exception):
pyvk.VariantKey(None, None, None, "/wrong/path/error.bin")
def test_class_file_all_none(self):
c = pyvk.VariantKey(None, None, None, None)
self.assertEqual(c.genoref_size, 0)
self.assertIsNone(c.nrvk_mf)
self.assertIsNone(c.nrvk_mc)
self.assertEqual(c.nrvk_nrows, 0)
self.assertIsNone(c.rsvk_mf)
self.assertIsNone(c.rsvk_mc)
self.assertEqual(c.rsvk_nrows, 0)
self.assertIsNone(c.vkrs_mf)
self.assertIsNone(c.vkrs_mc)
self.assertEqual(c.vkrs_nrows, 0)
c.close()