This repository was archived by the owner on Feb 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_charts.py
139 lines (116 loc) · 5.3 KB
/
test_charts.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
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
from __future__ import with_statement
import json
import sys
import datetime
from flask import Flask
from jinja2 import Markup
from flask_charts import GoogleCharts, Chart, ChartData
if sys.version_info < (2, 7):
import unittest2 as unittest
else:
import unittest
class TestGoogleCharts(unittest.TestCase):
def setUp(self):
app = Flask(__name__)
app.debug = True
self.charts = GoogleCharts(app)
self.app = app
self.client = app.test_client()
def tearDown(self):
self.app = None
def test(self):
self.assertTrue("init_charts()" in self.client.get("/init_charts.js").data.decode("utf8"))
def test_init_app(self):
with self.assertRaises(TypeError):
self.charts.init_app(1)
class TestChart(unittest.TestCase):
def setUp(self):
app = Flask(__name__)
app.debug = True
self.charts = GoogleCharts(app)
self.app = app
self.client = app.test_client()
def tearDown(self):
self.app = None
def test_init(self):
with self.assertRaises(ValueError):
chart = Chart("PieChart", "")
with self.assertRaises(ValueError):
Chart("PieChart", "A B")
with self.assertRaises(ValueError):
Chart("PieChart", "3")
with self.assertRaises(TypeError):
chart = Chart(1)
with self.assertRaises(ValueError):
chart = Chart("BananaChart", "chart")
with self.assertRaises(ValueError):
chart = Chart("PieChart", "!chart")
with self.assertRaises(TypeError):
chart = Chart("PieChart", 123)
def test_addEventListener(self):
chart = Chart("PieChart", "test")
chart.add_event_listener("ready", "my_function")
assert chart.event_listeners[0]["event"] == "ready" and chart.event_listeners[0]["function"] == "my_function"
def test_getJson(self):
chart = Chart("PieChart", "test", options={"title": "chart"}, data_url="/data", refresh=5000)
chart.add_event_listener("ready", "my_function")
self.assertTrue(chart.get_json() == json.dumps({
"id": "test",
"type": "PieChart",
"options": {"title": "chart"},
"refresh": 5000,
"data_url": "/data",
"event_listeners": [{
"event": "ready",
"function": "my_function"
}]
}))
chart.data.add_column("string", "col")
chart.data.add_row(["test", 200])
self.assertTrue(chart.get_json() == json.dumps({
"id": "test",
"type": "PieChart",
"options": {"title": "chart"},
"refresh": 5000,
"data": chart.data.to_json(),
"event_listeners": [{
"event": "ready",
"function": "my_function"
}]
}))
def test_render(self):
chart = Chart("PieChart", "test")
with self.assertRaises(Warning):
chart()
chart.data.add_column("string", "col")
with self.assertRaises(Warning):
chart()
chart.data.add_row(["test", 200])
self.assertTrue(isinstance(chart(), Markup))
class TestChartData(unittest.TestCase):
def test_addColumn(self):
data = ChartData()
data.add_column("string", "col")
assert data._columns[0][0] == "string" and data._columns[0][1] == "col"
with self.assertRaises(ValueError):
data.add_column("", "")
with self.assertRaises(TypeError):
data.add_column(1)
def test_addRow(self):
data = ChartData()
data.add_row(["test", 200])
assert data._rows[0][0] == "test" and data._rows[0][1] == 200
with self.assertRaises(TypeError):
data.add_row("row")
data.add_row([datetime.datetime(2019, 1, 1, 1, 1, 1, 1), datetime.date(2019, 1, 1)])
json_data = json.loads(data.to_json())
assert json_data["rows"][1]["c"][0]["v"] == "Date(2019, 0, 1, 1, 1, 1, 1)" and json_data["rows"][1]["c"][1]["v"] == "Date(2019, 0, 1)"
def test_bool(self):
data = ChartData()
self.assertFalse(data)
data.add_column("string", "col")
self.assertFalse(data)
data.add_row(["test", 200])
self.assertTrue(data)
if __name__ == "__main__":
unittest.main()