|
| 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