forked from ruby/reline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdownload-test_readline.rb
67 lines (55 loc) · 2.52 KB
/
download-test_readline.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
# frozen_string_literal: true
# From ruby/ruby, copies readline test files & tool/lib files
# Replicates testing used in Ruby master
require 'uri'
require 'net/http'
require 'openssl'
require 'fileutils'
module HTTPS_DL
# number of concurrent connections
CONNECTIONS = 4
HOST = "https://raw.githubusercontent.com"
URI_GH = URI HOST
# 1st - source path , 2nd - reline dir , 3rd - filename
FILES = [
["ruby/readline-ext/master/test/readline", "test/ext/readline" , "helper.rb" ],
["ruby/readline-ext/master/test/readline", "test/ext/readline" , "test_readline.rb" ],
["ruby/readline-ext/master/test/readline", "test/ext/readline" , "test_readline_history.rb" ],
["ruby/ruby/master/tool/lib" , "tool/lib" , "colorize.rb" ],
["ruby/ruby/master/tool/lib" , "tool/lib" , "core_assertions.rb" ],
["ruby/ruby/master/tool/lib" , "tool/lib" , "envutil.rb" ],
["ruby/ruby/master/tool/lib" , "tool/lib" , "find_executable.rb" ],
["ruby/ruby/master/tool/lib" , "tool/lib" , "leakchecker.rb" ],
["ruby/ruby/master/tool/lib/test" , "tool/lib/test" , "unit.rb" ],
["ruby/ruby/master/tool/lib/test/unit" , "tool/lib/test/unit", "assertions.rb" ],
["ruby/ruby/master/tool/lib/test/unit" , "tool/lib/test/unit", "parallel.rb" ],
["ruby/ruby/master/tool/lib/test/unit" , "tool/lib/test/unit", "testcase.rb" ]
]
class << self
def run
files = FILES
dirs = FILES.map { |l| l[1] }.uniq
dirs.each { |dir| FileUtils.mkdir_p("./#{dir}") unless Dir.exist? dir }
connections = []
CONNECTIONS.times do
connections << Thread.new do
Net::HTTP.start(URI_GH.host, URI_GH.port, :use_ssl => true,:verify_mode => OpenSSL::SSL::VERIFY_PEER) do |http|
while (path, dir, file = files.shift)
uri = URI("#{HOST}/#{path}/#{file}")
req = Net::HTTP::Get.new uri.request_uri
http.request req do |res|
unless Net::HTTPOK === res
STDOUT.puts "Can't download #{path}/#{file} from #{HOST}/"
exit 1
end
File.binwrite "./#{dir}/#{file}", res.body
end
end
end
end
end
connections.each { |th| th.join }
end
end
end
HTTPS_DL.run