forked from mer-tools/sdk-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sdk_helper_spec.rb
242 lines (188 loc) · 6.32 KB
/
sdk_helper_spec.rb
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
ENV['RACK_ENV'] = 'test'
require 'minitest/autorun'
require 'rack/test'
require_relative 'sdk_helper'
include Rack::Test::Methods
def app() SdkHelper end
ORIGINAL_PATH = ENV['PATH']
$server_list = [ "MOCK_SERVER" ]
describe "Sdk Webapp" do
before do
class RestClient::Request
def self.execute(*params)
params[0][:url].must_equal 'MOCK_SERVER'
'[{"name": "MOCK_TARGET_NAME", "url": "MOCK_TARGET_URL", "toolchain": "MOCK_TARGET_TOOLCHAIN"}]'
end
end
end
describe "working with not-locked sdk-manage/zypper" do
before do
ENV['PATH'] = "./tests/mock-bin-ok/:" + ORIGINAL_PATH
end
it "asked about / should send main page with sdk version in it" do
get '/'
last_response.body.must_match /.*SDK_MOCK_VERSION.*/
end
it "asked about /targets/ should send page with list of targets, form with installed toolchains" do
get '/targets/'
response = last_response.body
response.must_match /.*TARGET1.*/
response.must_match /.*TARGET2.*/
response.must_match /.*DEFAULT_TARGET.*/
#TODO: should show default target as default
response.wont_match /.*TOOLCHAIN1.*/
response.must_match /.*TOOLCHAIN2.*/
response.wont_match /.*TOOLCHAIN3.*/
response.must_match /.*MOCK_TARGET_URL.*/
end
it "asked about /toolchains/ should send page with list of toolchains" do
get '/toolchains/'
response = last_response.body
response.must_match /.*TOOLCHAIN1.*/
response.must_match /.*TOOLCHAIN2.*/
response.must_match /.*TOOLCHAIN3.*/
#TODO: should show installed toolchains as installed
end
end
describe "with cache built, locked zypper" do
before do
ENV['PATH'] = "./tests/mock-bin-ok/:" + ORIGINAL_PATH
get '/'
get '/targets/'
get '/toolchains/'
ENV['PATH'] = "./tests/mock-bin-locked/:" + ORIGINAL_PATH
end
it "asked about / should send main page with sdk version in it" do
get '/'
last_response.body.must_match /.*SDK_MOCK_VERSION.*/
last_response.body.wont_match /.*WRONG_TEXT.*/
end
it "asked about /targets/ should send page with list of targets, form with installed toolchains" do
get '/targets/'
response = last_response.body
response.must_match /.*TARGET1.*/
response.must_match /.*TARGET2.*/
response.must_match /.*DEFAULT_TARGET.*/
#TODO: should show default target as default
response.wont_match /.*TOOLCHAIN1.*/
response.must_match /.*TOOLCHAIN2.*/
response.wont_match /.*TOOLCHAIN3.*/
response.wont_match /.*WRONG_TEXT.*/
response.must_match /.*MOCK_TARGET_URL.*/
end
it "asked about /toolchains/ should send page with list of toolchains" do
get '/toolchains/'
response = last_response.body
response.must_match /.*TOOLCHAIN1.*/
response.must_match /.*TOOLCHAIN2.*/
response.must_match /.*TOOLCHAIN3.*/
response.wont_match /.*WRONG_TEXT.*/
#TODO: should show installed toolchains as installed
end
end
describe "without cache built, locked zypper" do
before do
$sdk_version = nil
$targets_list = nil
$target_default = nil
$toolchain_list = nil
ENV['PATH'] = "./tests/mock-bin-locked/:" + ORIGINAL_PATH
end
it "asked about / should send main page with sdk version in it" do
get '/'
last_response.body.wont_match /.*SDK_MOCK_VERSION.*/
last_response.body.wont_match /.*WRONG_TEXT.*/
end
it "asked about /targets/ should send page with list of targets, form with installed toolchains" do
get '/targets/'
response = last_response.body
response.wont_match /.*TARGET1.*/
response.wont_match /.*TARGET2.*/
response.wont_match /.*DEFAULT_TARGET.*/
#TODO: should show default target as default
response.wont_match /.*TOOLCHAIN1.*/
response.wont_match /.*TOOLCHAIN2.*/
response.wont_match /.*TOOLCHAIN3.*/
response.wont_match /.*WRONG_TEXT.*/
response.must_match /.*MOCK_TARGET_URL.*/
end
it "asked about /toolchains/ should send page with list of toolchains" do
get '/toolchains/'
response = last_response.body
response.wont_match /.*TOOLCHAIN1.*/
response.wont_match /.*TOOLCHAIN2.*/
response.wont_match /.*TOOLCHAIN3.*/
response.wont_match /.*WRONG_TEXT.*/
#TODO: should show installed toolchains as installed
end
end
describe "working with target server sending commented json" do
it "doesn't fail on hash comments" do
class RestClient::Request
def self.execute(*params)
params[0][:url].must_equal 'MOCK_SERVER'
"# dupa\n"+'[{"name": "MOCK_TARGET_NAME", "url": "MOCK_TARGET_URL", "toolchain": "MOCK_TARGET_TOOLCHAIN"}]'
end
end
get '/targets/'
response = last_response.body
response.must_match /.*MOCK_TARGET_URL.*/
end
it "doesn't fail on slash-slash comments" do
class RestClient::Request
def self.execute(*params)
params[0][:url].must_equal 'MOCK_SERVER'
"# dupa\n"+'[{"name": "MOCK_TARGET_NAME", "url": "MOCK_TARGET_URL", "toolchain": "MOCK_TARGET_TOOLCHAIN"}]'
end
end
get '/targets/'
response = last_response.body
response.must_match /.*MOCK_TARGET_URL.*/
end
end
describe "working with crappy target server" do
before do
ENV['PATH'] = "./tests/mock-bin-ok/:" + ORIGINAL_PATH
end
describe "returning crap" do
it "doesn't fail when asked about /targets/" do
class RestClient::Request
def self.execute(*params)
"crap"
end
end
get "/targets/"
response = last_response.body
response.must_match /.*TARGET1.*/
response.must_match /.*TARGET2.*/
response.must_match /.*DEFAULT_TARGET.*/
#TODO: should show default target as default
response.wont_match /.*TOOLCHAIN1.*/
response.must_match /.*TOOLCHAIN2.*/
response.wont_match /.*TOOLCHAIN3.*/
response.wont_match /.*MOCK_TARGET_URL.*/
#TODO: ensure target dropdown is not generated
end
end
describe "returning nothing" do
it "doesn't fail when asked about /targets/" do
class RestClient::Request
def self.execute(*params)
nil
end
end
get "/targets/"
response = last_response.body
response.must_match /.*TARGET1.*/
response.must_match /.*TARGET2.*/
response.must_match /.*DEFAULT_TARGET.*/
#TODO: should show default target as default
response.wont_match /.*TOOLCHAIN1.*/
response.must_match /.*TOOLCHAIN2.*/
response.wont_match /.*TOOLCHAIN3.*/
response.wont_match /.*MOCK_TARGET_URL.*/
#TODO: ensure target dropdown is not generated
end
end
end
end