-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from jeromekelleher/lowlevel-tests
Initial start on cpython interface testing
- Loading branch information
Showing
3 changed files
with
102 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import pytest | ||
import numpy as np | ||
|
||
from vcztools import _vcztools | ||
|
||
FIXED_FIELD_NAMES = ["chrom", "pos", "id", "qual", "ref", "alt", "filter"] | ||
|
||
|
||
def example_fixed_data(num_variants, num_samples=0): | ||
chrom = np.array(["X"] * num_variants, dtype="S") | ||
pos = np.arange(num_variants, dtype=np.int32) | ||
id = np.array(["."] * num_variants, dtype="S").reshape((num_variants, 1)) | ||
ref = np.array(["A"] * num_variants, dtype="S") | ||
alt = np.array(["T"] * num_variants, dtype="S").reshape((num_variants, 1)) | ||
qual = np.arange(num_variants, dtype=np.float32) | ||
filter_ = np.ones(num_variants, dtype=bool).reshape((num_variants, 1)) | ||
filter_id = np.array(["PASS"], dtype="S") | ||
return { | ||
"chrom": chrom, | ||
"pos": pos, | ||
"id": id, | ||
"qual": qual, | ||
"ref": ref, | ||
"alt": alt, | ||
"filter": filter_, | ||
"filter_ids": filter_id, | ||
} | ||
|
||
|
||
class TestTypeChecking: | ||
@pytest.mark.parametrize("name", FIXED_FIELD_NAMES) | ||
def test_field_incorrect_length(self, name): | ||
num_variants = 5 | ||
data = example_fixed_data(num_variants) | ||
data[name] = data[name][1:] | ||
with pytest.raises(ValueError, match=f"Array {name.upper()} must have "): | ||
_vcztools.VcfEncoder(num_variants, 0, **data) | ||
|
||
@pytest.mark.parametrize("name", FIXED_FIELD_NAMES) | ||
def test_field_incorrect_dtype(self, name): | ||
num_variants = 5 | ||
data = example_fixed_data(num_variants) | ||
data[name] = np.zeros(data[name].shape, dtype=np.int64) | ||
with pytest.raises(ValueError, match=f"Wrong dtype for {name.upper()}"): | ||
_vcztools.VcfEncoder(num_variants, 0, **data) | ||
|
||
@pytest.mark.parametrize("name", FIXED_FIELD_NAMES) | ||
def test_field_incorrect_type(self, name): | ||
num_variants = 5 | ||
data = example_fixed_data(num_variants) | ||
data[name] = "A Python string" | ||
with pytest.raises(TypeError, match=f"must be numpy.ndarray"): | ||
_vcztools.VcfEncoder(num_variants, 0, **data) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters