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
|
"""Tests for wqflask/base/data_set.py"""
import unittest
import mock
from wqflask import app
from data import gen_menu_json
from base.data_set import DatasetType
class TestDataSetTypes(unittest.TestCase):
"""Tests for the DataSetType class"""
def setUp(self):
self.app_context = app.app_context()
self.app_context.push()
def tearDown(self):
self.app_context.pop()
@mock.patch('base.data_set.g')
def test_data_set_type(self, db_mock):
"""Test that DatasetType returns correctly if the Redis Instance is not empty
and the name variable exists in the dictionary
"""
with app.app_context():
db_mock.get = mock.Mock()
redis_mock = mock.Mock()
redis_mock.get.return_value = """
{
"AD-cases-controls-MyersGeno": "Geno",
"AD-cases-controls-MyersPublish": "Publish",
"AKXDGeno": "Geno",
"AXBXAGeno": "Geno",
"AXBXAPublish": "Publish",
"Aging-Brain-UCIPublish": "Publish",
"All Phenotypes": "Publish",
"B139_K_1206_M": "ProbeSet",
"B139_K_1206_R": "ProbeSet"
}
"""
self.assertEqual(DatasetType(redis_mock)
("All Phenotypes"), "Publish")
redis_mock.get.assert_called_once_with("dataset_structure")
@mock.patch('base.data_set.requests.get')
def test_data_set_type_with_empty_redis(self, request_mock):
"""Test that DatasetType returns correctly if the Redis Instance is empty and
the name variable exists in the dictionary
"""
with app.app_context():
request_mock.return_value.content = gen_menu_json
redis_mock = mock.Mock()
redis_mock.get.return_value = None
data_set = DatasetType(redis_mock)
self.assertEqual(data_set("BXDGeno"), "Geno")
self.assertEqual(data_set("BXDPublish"), "Publish")
self.assertEqual(data_set("HLC_0311"), "ProbeSet")
redis_mock.set.assert_called_once_with(
"dataset_structure",
'{"BXDGeno": "Geno", "BXDPublish": "Publish", "HLCPublish": "Publish", "HLC_0311": "ProbeSet", "HC_M2_0606_P": "ProbeSet"}')
|