forked from BioAnalyticResource/BAR_API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_gene_information.py
More file actions
442 lines (393 loc) · 18.5 KB
/
Copy pathtest_gene_information.py
File metadata and controls
442 lines (393 loc) · 18.5 KB
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
from api import app
from unittest import TestCase
class TestIntegrations(TestCase):
def setUp(self):
self.app_client = app.test_client()
def test_get_gene_alias_list(self):
"""This function tests the gene alias list get function
:return:
"""
response = self.app_client.get("/gene_information/gene_alias")
expected = {"wasSuccessful": True, "data": ["arabidopsis"]}
self.assertEqual(response.json, expected)
def test_get_arabidopsis_gene_alias(self):
"""This tests checks GET request for gene alias Arabidopsis
:return:
"""
# Valid data
response = self.app_client.get("/gene_information/gene_alias/arabidopsis/At3g24650")
expected = {"wasSuccessful": True, "data": ["ABI3", "AtABI3", "SIS10"]}
self.assertEqual(response.json, expected)
# Data not found, but gene is valid
response = self.app_client.get("/gene_information/gene_alias/arabidopsis/At3g24651")
expected = {
"wasSuccessful": False,
"error": "There are no data found for the given gene",
}
self.assertEqual(response.json, expected)
# Invalid Gene
response = self.app_client.get("/gene_information/gene_alias/arabidopsis/At3g2465x")
expected = {"wasSuccessful": False, "error": "Invalid gene id"}
self.assertEqual(response.json, expected)
# Invalid Species
response = self.app_client.get("/gene_information/gene_alias/x/At3g24650")
expected = {"wasSuccessful": False, "error": "No data for the given species"}
self.assertEqual(response.json, expected)
def test_get_arabidopsis_gene_publications(self):
"""This tests checks GET request for gene publications Arabidopsis
:return:
"""
# Valid data
response = self.app_client.get("/gene_information/gene_publications/AT1G01020")
expected = {
"wasSuccessful": True,
"data": [
{
"gene_id": "AT1G01020",
"author": "Forés O",
"year": "2006",
"journal": "Biochim. Biophys. Acta",
"title": "Arabidopsis thaliana expresses two functional isoforms of Arvp, a protein involved in the regulation of cellular lipid homeostasis.",
"pubmed": "16725371"
},
{
"gene_id": "AT1G01020",
"author": "Theologis A",
"year": "2000",
"journal": "Nature",
"title": "Sequence and analysis of chromosome 1 of the plant Arabidopsis thaliana.",
"pubmed": "11130712"
}
]
}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_publications/AT1G01020.")
expected = {
"wasSuccessful": True,
"data": [
{
"gene_id": "AT1G01020",
"author": "Forés O",
"year": "2006",
"journal": "Biochim. Biophys. Acta",
"title": "Arabidopsis thaliana expresses two functional isoforms of Arvp, a protein involved in the regulation of cellular lipid homeostasis.",
"pubmed": "16725371"
},
{
"gene_id": "AT1G01020",
"author": "Theologis A",
"year": "2000",
"journal": "Nature",
"title": "Sequence and analysis of chromosome 1 of the plant Arabidopsis thaliana.",
"pubmed": "11130712"
}
]
}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_publications/AT1G01020.0")
expected = {
"wasSuccessful": True,
"data": [
{
"gene_id": "AT1G01020",
"author": "Forés O",
"year": "2006",
"journal": "Biochim. Biophys. Acta",
"title": "Arabidopsis thaliana expresses two functional isoforms of Arvp, a protein involved in the regulation of cellular lipid homeostasis.",
"pubmed": "16725371"
},
{
"gene_id": "AT1G01020",
"author": "Theologis A",
"year": "2000",
"journal": "Nature",
"title": "Sequence and analysis of chromosome 1 of the plant Arabidopsis thaliana.",
"pubmed": "11130712"
}
]
}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_publications/AT1G01020.1")
expected = {
"wasSuccessful": True,
"data": [
{
"gene_id": "AT1G01020",
"author": "Forés O",
"year": "2006",
"journal": "Biochim. Biophys. Acta",
"title": "Arabidopsis thaliana expresses two functional isoforms of Arvp, a protein involved in the regulation of cellular lipid homeostasis.",
"pubmed": "16725371"
},
{
"gene_id": "AT1G01020",
"author": "Theologis A",
"year": "2000",
"journal": "Nature",
"title": "Sequence and analysis of chromosome 1 of the plant Arabidopsis thaliana.",
"pubmed": "11130712"
}
]
}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_publications/AT1G01020.12345")
expected = {
"wasSuccessful": True,
"data": [
{
"gene_id": "AT1G01020",
"author": "Forés O",
"year": "2006",
"journal": "Biochim. Biophys. Acta",
"title": "Arabidopsis thaliana expresses two functional isoforms of Arvp, a protein involved in the regulation of cellular lipid homeostasis.",
"pubmed": "16725371"
},
{
"gene_id": "AT1G01020",
"author": "Theologis A",
"year": "2000",
"journal": "Nature",
"title": "Sequence and analysis of chromosome 1 of the plant Arabidopsis thaliana.",
"pubmed": "11130712"
}
]
}
self.assertEqual(response.json, expected)
# Data not found, but gene is valid
response = self.app_client.get("/gene_information/gene_publications/AT1G01035")
expected = {
"wasSuccessful": False,
"error": "There are no data found for the given gene",
}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_publications/AT1G010400")
expected = {
"wasSuccessful": False,
"error": "There are no data found for the given gene",
}
self.assertEqual(response.json, expected)
# Invalid Gene
response = self.app_client.get("/gene_information/gene_publications/001G01030")
expected = {"wasSuccessful": False, "error": "Invalid gene id"}
self.assertEqual(response.json, expected)
def test_get_arabidopsis_gene_isoform(self):
"""This tests checks GET request for gene isoforms Arabidopsis
:return:
"""
# Valid data
response = self.app_client.get("/gene_information/gene_isoforms/arabidopsis/AT1G01020")
expected = {"wasSuccessful": True, "data": ["AT1G01020.1", "AT1G01020.2"]}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_isoforms/poplar/Potri.001G000300")
expected = {"wasSuccessful": True, "data": ["Potri.001G000300.1"]}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_isoforms/tomato/Solyc00g005000")
expected = {"wasSuccessful": True, "data": ["Solyc00g005000.3.1"]}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_isoforms/soybean/Glyma.01G000100")
expected = {"wasSuccessful": True, "data": ["Glyma.01G000100"]}
self.assertEqual(response.json, expected)
# Data not found, but gene is valid
response = self.app_client.get("/gene_information/gene_isoforms/arabidopsis/At3g24651")
expected = {
"wasSuccessful": False,
"error": "There are no data found for the given gene",
}
self.assertEqual(response.json, expected)
# Data not found, but gene is valid
response = self.app_client.get("/gene_information/gene_isoforms/poplar/Potri.001G000201")
expected = {
"wasSuccessful": False,
"error": "There are no data found for the given gene",
}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_isoforms/tomato/Solyc00g005001")
expected = {
"wasSuccessful": False,
"error": "There are no data found for the given gene",
}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_isoforms/soybean/Glyma.01G000102")
expected = {
"wasSuccessful": False,
"error": "There are no data found for the given gene",
}
self.assertEqual(response.json, expected)
# Invalid Gene
response = self.app_client.get("/gene_information/gene_isoforms/arabidopsis/At3g2465x")
expected = {"wasSuccessful": False, "error": "Invalid gene id"}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_isoforms/poplar/Potri.001G00020x")
expected = {"wasSuccessful": False, "error": "Invalid gene id"}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_isoforms/tomato/Solyc00g00500x")
expected = {"wasSuccessful": False, "error": "Invalid gene id"}
self.assertEqual(response.json, expected)
response = self.app_client.get("/gene_information/gene_isoforms/soybean/Glyma.01G00010x")
expected = {"wasSuccessful": False, "error": "Invalid gene id"}
self.assertEqual(response.json, expected)
# Invalid Species
response = self.app_client.get("/gene_information/gene_isoforms/x/At3g24650")
expected = {"wasSuccessful": False, "error": "No data for the given species"}
self.assertEqual(response.json, expected)
def test_post_arabidopsis_gene_isoform(self):
"""This tests the data returned for Arabidopsis gene isoforms.
:return:
"""
# Valid example
data = {"species": "arabidopsis", "genes": ["AT1G01010", "AT1G01020"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": True,
"data": {
"AT1G01010": ["AT1G01010.1"],
"AT1G01020": ["AT1G01020.1", "AT1G01020.2"],
},
}
self.assertEqual(response.json, expected)
data = {"species": "poplar", "genes": ["Potri.001G000300", "Potri.001G000400"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": True,
"data": {
"Potri.001G000300": ["Potri.001G000300.1"],
"Potri.001G000400": [
"Potri.001G000400.1",
"Potri.001G000400.2",
"Potri.001G000400.3",
"Potri.001G000400.4",
],
},
}
self.assertEqual(response.json, expected)
data = {"species": "soybean", "genes": ["Glyma.01G000100", "Glyma.01G000200"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": True,
"data": {
"Glyma.01G000100": ["Glyma.01G000100"],
"Glyma.01G000200": ["Glyma.01G000200"],
},
}
self.assertEqual(response.json, expected)
data = {"species": "tomato", "genes": ["Solyc00g005000"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": True,
"data": {"Solyc00g005000": ["Solyc00g005000.3.1"]},
}
self.assertEqual(response.json, expected)
# Invalid data in JSON
data = {
"species": "arabidopsis",
"genes": ["AT1G01010", "AT1G01020"],
"abc": "xyz",
}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {"wasSuccessful": False, "error": {"abc": ["Unknown field."]}}
self.assertEqual(response.json, expected)
data = {
"species": "poplar",
"genes": ["Potri.001G000200", "Potri.001G000300"],
"abc": "xyz",
}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {"wasSuccessful": False, "error": {"abc": ["Unknown field."]}}
self.assertEqual(response.json, expected)
data = {
"species": "soybean",
"genes": ["Glyma.01G000100", "Glyma.01G000200"],
"abc": "xyz",
}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {"wasSuccessful": False, "error": {"abc": ["Unknown field."]}}
self.assertEqual(response.json, expected)
# Data not found for a valid gene
data = {"species": "arabidopsis", "genes": ["AT1G01011", "AT1G01020"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": True,
"data": {"AT1G01020": ["AT1G01020.1", "AT1G01020.2"]},
}
self.assertEqual(response.json, expected)
data = {"species": "poplar", "genes": ["Potri.001G000201", "Potri.001G000300"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": True,
"data": {"Potri.001G000300": ["Potri.001G000300.1"]},
}
self.assertEqual(response.json, expected)
data = {"species": "soybean", "genes": ["Glyma.01G000100", "Glyma.01G000101"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": True,
"data": {"Glyma.01G000100": ["Glyma.01G000100"]},
}
self.assertEqual(response.json, expected)
# Check if arabidopsis gene is valid
data = {"species": "arabidopsis", "genes": ["AT1G01011", "AT1G01020"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": True,
"data": {"AT1G01020": ["AT1G01020.1", "AT1G01020.2"]},
}
self.assertEqual(response.json, expected)
# Check if gene is valid
data = {"species": "arabidopsis", "genes": ["abc"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {"wasSuccessful": False, "error": "Invalid gene id"}
self.assertEqual(response.json, expected)
data = {"species": "poplar", "genes": ["abc"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {"wasSuccessful": False, "error": "Invalid gene id"}
self.assertEqual(response.json, expected)
data = {"species": "tomato", "genes": ["abc"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {"wasSuccessful": False, "error": "Invalid gene id"}
self.assertEqual(response.json, expected)
data = {"species": "soybean", "genes": ["abc"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {"wasSuccessful": False, "error": "Invalid gene id"}
self.assertEqual(response.json, expected)
# Check if there is data for the given gene
data = {"species": "arabidopsis", "genes": ["AT1G01011"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": False,
"error": "No data for the given species/genes",
}
self.assertEqual(response.json, expected)
# Check if species is valid
data = {"species": "abc", "genes": ["AT1G01010", "AT1G01020"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {"wasSuccessful": False, "error": "Invalid species"}
self.assertEqual(response.json, expected)
# Check if there is data for the given gene
data = {"species": "arabidopsis", "genes": ["AT1G01011"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": False,
"error": "No data for the given species/genes",
}
self.assertEqual(response.json, expected)
data = {"species": "poplar", "genes": ["Potri.001G000201"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": False,
"error": "No data for the given species/genes",
}
self.assertEqual(response.json, expected)
data = {"species": "tomato", "genes": ["Solyc00g005001"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": False,
"error": "No data for the given species/genes",
}
self.assertEqual(response.json, expected)
data = {"species": "soybean", "genes": ["Glyma.01G000101"]}
response = self.app_client.post("/gene_information/gene_isoforms/", json=data)
expected = {
"wasSuccessful": False,
"error": "No data for the given species/genes",
}
self.assertEqual(response.json, expected)