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
|
# File 'lib/assertthat-bdd.rb', line 8
def self.download(accessKey: ENV['ASSERTTHAT_ACCESS_KEY'], secretKey: ENV['ASSERTTHAT_ACCESS_KEY'], projectId: nil, outputFolder: './features/', proxy: nil, mode: 'automated', jql: '', tags: '', jiraServerUrl: nil)
RestClient.proxy = proxy unless proxy.nil?
url = 'https://bdd.assertthat.app/rest/api/1/project/'+ projectId +'/features'
url = jiraServerUrl+"/rest/assertthat/latest/project/"+projectId+"/client/features" unless jiraServerUrl.nil?
resource = RestClient::Resource.new(url, :user => accessKey, :password => secretKey, :content_type => 'application/zip')
begin
contents = resource.get(:accept => 'application/zip', params: {mode: mode, jql: jql, tags: tags})
rescue => e
if e.respond_to?('response') then
if e.response.respond_to?('code') then
case e.response.code
when 401
puts '*** ERROR: Unauthorized error (401). Supplied secretKey/accessKey is invalid'
when 400
puts '*** ERROR: ' + e.response
when 500
puts '*** ERROR: Jira server error (500)'
end
end
else
puts '*** ERROR: Failed download features: ' + e.message
end
return
end
Dir.mkdir("#{outputFolder}") unless File.exists?("#{outputFolder}")
File.open("#{outputFolder}/features.zip", 'wb') {|f| f.write(contents) }
features_count = 0
Zip::File.open("#{outputFolder}/features.zip") do |zip_file|
zip_file.each do |entry|
features_count = features_count + 1
File.delete("#{outputFolder}#{entry.name}") if File.exists?("#{outputFolder}#{entry.name}")
entry.("#{outputFolder}#{entry.name}")
end
end
puts "*** INFO: #{features_count} features downloaded"
File.delete("#{outputFolder}/features.zip")
end
|