-
Notifications
You must be signed in to change notification settings - Fork 15
/
plugins_test.py
159 lines (142 loc) · 5.25 KB
/
plugins_test.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
import unittest
from plugins import getPlugins
import os
import platform
OS = os.environ.get("OS", platform.system().lower())
class TestGetPlugins(unittest.TestCase):
def test_get_plugin_with_version(self):
os.environ[
"GRAFANA_PLUGINS"
] = "grafana-clock-panel:1.0.1,grafana-simple-json-datasource:1.3.5"
actual = getPlugins()
expected = [
(
"https://grafana.com/api/plugins/grafana-clock-panel/versions/1.0.1/download?os="
+ OS
+ "&arch=x86_64",
"/tmp/grafana-clock-panel_1.0.1.zip",
),
(
"https://grafana.com/api/plugins/grafana-simple-json-datasource/versions/1.3.5/download?os="
+ OS
+ "&arch=x86_64",
"/tmp/grafana-simple-json-datasource_1.3.5.zip",
),
]
self.assertEqual(actual, expected)
def test_get_plugin_without_version(self):
os.environ[
"GRAFANA_PLUGINS"
] = "grafana-clock-panel:1.0.1,grafana-simple-json-datasource"
actual = getPlugins()
expected = [
(
"https://grafana.com/api/plugins/grafana-clock-panel/versions/1.0.1/download?os="
+ OS
+ "&arch=x86_64",
"/tmp/grafana-clock-panel_1.0.1.zip",
),
(
"https://grafana.com/api/plugins/grafana-simple-json-datasource/versions/latest/download?os="
+ OS
+ "&arch=x86_64",
"/tmp/grafana-simple-json-datasource_latest.zip",
),
]
self.assertEqual(actual, expected)
def test_get_plugin_without_multiple(self):
os.environ["GRAFANA_PLUGINS"] = "grafana-clock-panel:1.0.1"
actual = getPlugins()
expected = [
(
"https://grafana.com/api/plugins/grafana-clock-panel/versions/1.0.1/download?os="
+ OS
+ "&arch=x86_64",
"/tmp/grafana-clock-panel_1.0.1.zip",
),
]
self.assertEqual(actual, expected)
def test_get_plugin_withurl(self):
os.environ[
"GRAFANA_PLUGINS"
] = "url:https://grafana.com/api/plugins/grafana-clock-panel"
actual = getPlugins()
expected = [
(
"https://grafana.com/api/plugins/grafana-clock-panel",
"/tmp/grafana-clock-panel.zip",
),
]
self.assertEqual(actual, expected)
def test_get_plugin_withurl_multiple(self):
os.environ[
"GRAFANA_PLUGINS"
] = "url:https://grafana.com/api/plugins/grafana-clock-panel,grafana-clock-panel:1.0.1"
actual = getPlugins()
expected = [
(
"https://grafana.com/api/plugins/grafana-clock-panel",
"/tmp/grafana-clock-panel.zip",
),
(
"https://grafana.com/api/plugins/grafana-clock-panel/versions/1.0.1/download?os="
+ OS
+ "&arch=x86_64",
"/tmp/grafana-clock-panel_1.0.1.zip",
),
]
self.assertEqual(actual, expected)
def test_get_plugin_withurl_multiple_similar(self):
os.environ[
"GRAFANA_PLUGINS"
] = "url:https://grafana.com/api/plugins/grafana-clock-panel,url:https://grafana.com/api/plugins/grafana-simple-json-datasource"
actual = getPlugins()
expected = [
(
"https://grafana.com/api/plugins/grafana-clock-panel",
"/tmp/grafana-clock-panel.zip",
),
(
"https://grafana.com/api/plugins/grafana-simple-json-datasource",
"/tmp/grafana-simple-json-datasource.zip",
),
]
self.assertEqual(actual, expected)
def test_get_plugin_withurl_multiple_withoutversion(self):
os.environ[
"GRAFANA_PLUGINS"
] = "url:https://grafana.com/api/plugins/grafana-clock-panel,grafana-clock-panel"
actual = getPlugins()
expected = [
(
"https://grafana.com/api/plugins/grafana-clock-panel",
"/tmp/grafana-clock-panel.zip",
),
(
"https://grafana.com/api/plugins/grafana-clock-panel/versions/latest/download?os="
+ OS
+ "&arch=x86_64",
"/tmp/grafana-clock-panel_latest.zip",
),
]
self.assertEqual(actual, expected)
def test_get_plugin_withurl_multiple_withoutversion_reverse(self):
os.environ[
"GRAFANA_PLUGINS"
] = "grafana-clock-panel,url:https://grafana.com/api/plugins/grafana-clock-panel"
actual = getPlugins()
expected = [
(
"https://grafana.com/api/plugins/grafana-clock-panel/versions/latest/download?os="
+ OS
+ "&arch=x86_64",
"/tmp/grafana-clock-panel_latest.zip",
),
(
"https://grafana.com/api/plugins/grafana-clock-panel",
"/tmp/grafana-clock-panel.zip",
),
]
self.assertEqual(actual, expected)
if __name__ == "__main__":
unittest.main()