Skip to content

Commit 14eb6d5

Browse files
MSP-Gregeregon
authored andcommitted
Add cli test
1 parent 0253b00 commit 14eb6d5

File tree

2 files changed

+65
-4
lines changed

2 files changed

+65
-4
lines changed

.github/workflows/build.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -106,15 +106,13 @@ jobs:
106106
- uses: actions/checkout@v2
107107
with:
108108
path: test_files
109+
- name: CLI Test
110+
run: ruby test_files/cli_test.rb
109111
- run: mv test_files/Gemfile .
110-
- run: ruby --version
111112
- run: ruby -e 'pp RbConfig::CONFIG'
112113
- run: ruby --yjit -e 'exit RubyVM::YJIT.enabled?'
113-
- run: gem --version
114-
- run: rake --version
115114
- run: ruby -ropen-uri -e 'puts URI.send(:open, "https://rubygems.org/") { |f| f.read(1024) }'
116115
- run: gem install json:2.2.0 --no-document
117-
- run: bundle --version
118116
- run: bundle install
119117
- run: bundle exec rake --version
120118
- name: Subprocess test

cli_test.rb

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
require 'rbconfig'
2+
3+
module CLITest
4+
class << self
5+
BIN_DIR = RbConfig::CONFIG['bindir']
6+
7+
DASH = "\u2500".dup.force_encoding 'utf-8'
8+
9+
def chk_cli(cmd, regex)
10+
cmd_str = cmd[/\A[^ ]+/].ljust(10)
11+
if File.exist? "#{BIN_DIR}/#{cmd_str}".strip
12+
require 'open3'
13+
ret = ''.dup
14+
Open3.popen3(cmd) {|stdin, stdout, stderr, wait_thr|
15+
ret = stdout.read.strip
16+
}
17+
if ret[regex]
18+
"#{cmd_str}#{$1}"
19+
else
20+
@error += 1
21+
"#{cmd_str}❌ version?"
22+
end
23+
else
24+
@error += 1
25+
"#{cmd_str}❌ missing binstub"
26+
end
27+
rescue => e
28+
@error += 1
29+
"#{cmd_str}#{e.class}"
30+
end
31+
32+
def run
33+
re_version = '(\d{1,2}\.\d{1,2}\.\d{1,2}(\.[a-z0-9.]+)?)'
34+
@error = 0
35+
puts "\n#{DASH * 5} CLI Test #{DASH * 17}"
36+
puts chk_cli("bundle -v", /\ABundler version #{re_version}/)
37+
puts chk_cli("gem --version", /\A#{re_version}/)
38+
puts chk_cli("irb --version", /\Airb +#{re_version}/)
39+
puts chk_cli("racc --version", /\Aracc version #{re_version}/)
40+
puts chk_cli("rake -V", /\Arake, version #{re_version}/)
41+
puts chk_cli("rbs -v" , /\Arbs #{re_version}/)
42+
puts chk_cli("rdbg -v", /\Ardbg #{re_version}/)
43+
puts chk_cli("rdoc -v", /\A#{re_version}/)
44+
puts ''
45+
46+
cli_desc = %x[ruby -v].strip
47+
if cli_desc == RUBY_DESCRIPTION
48+
puts cli_desc, ''
49+
else
50+
puts "'ruby -v' doesn't match RUBY_DESCRIPTION\n" \
51+
"#{cli_desc} (ruby -v)\n" \
52+
"#{RUBY_DESCRIPTION} (RUBY_DESCRIPTION)", ''
53+
@error += 1
54+
end
55+
56+
unless @error.zero?
57+
puts "bad exit"
58+
exit 1
59+
end
60+
end
61+
end
62+
end
63+
CLITest.run

0 commit comments

Comments
 (0)