diff --git a/tests/test_normalize.py b/tests/test_normalize.py index 3d0d31a4..2fb6a832 100644 --- a/tests/test_normalize.py +++ b/tests/test_normalize.py @@ -1022,6 +1022,9 @@ async def test_genomic_delins( "NC_000003.12:g.10149938delinsAA", ) + # TODO: Add response + resp = await test_handler.normalize("BRAF g.140453135_140453136delinsAT") + @pytest.mark.asyncio async def test_protein_delins(test_handler, protein_delins): @@ -1305,24 +1308,24 @@ async def test_valid_queries(test_handler): async def test_no_matches(test_handler): """Test no matches work correctly.""" queries = [ - "braf", - "braf v600e", - "braf v600000932092039e", - "NP_000213.1:cp.Leu862=", - "NP_000213.1:cp.Leu862", - "BRAF V600E 33", - "NP_004324.2:p.Glu600Val", - "NP_004324.2:p.Glu600Gal", - "NP_004324.2839:p.Glu600Val", - "NP_004324.2:t.Glu600Val", - "this:c.54G>H", - "NC_000007.13:g.4TH", # not a valid accession + "NC_000007.13:g.4TT%20(p.Arg325Trp)", - "NG_008212.3:g.5426_5445del", + "NG_008212.3:g.5426_5445del", # NG accessions not supported + "NC_000010.11-87925523-C-G", # invalid format ] for q in queries: assert isinstance(q, str)