Sha256: 9f43484abe9f1de0ac2f0d60feb0e6c92b958a1c97c66a486a452cbac1605cc1
Contents?: true
Size: 1.5 KB
Versions: 12
Compression:
Stored size: 1.5 KB
Contents
# frozen_string_literal: true require 'pathname' require 'fileutils' require 'shellwords' require 'open3' BASE_DIR = Pathname.new(__FILE__) + '..' require (BASE_DIR + 'helper').expand_path class TestRunnerRewrite < Minitest::Test def assert_rewriter_output(path, args, input: 'input.rb', output: 'output.rb', expected_output: '', expected_error: '') @ruby_rewrite = BASE_DIR.expand_path + '../bin/ruby-rewrite' @test_dir = BASE_DIR + path @fixtures_dir = @test_dir + 'fixtures' Dir.mktmpdir("parser", BASE_DIR.expand_path.to_s) do |tmp_dir| tmp_dir = Pathname.new(tmp_dir) sample_file = tmp_dir + "#{path}.rb" sample_file_expanded = sample_file.expand_path expected_file = @fixtures_dir + output FileUtils.cp(@fixtures_dir + input, sample_file_expanded) stdout, stderr, _exit_code = Dir.chdir @test_dir do Open3.capture3 %Q{ #{Shellwords.escape(@ruby_rewrite.to_s)} #{args} \ #{Shellwords.escape(sample_file_expanded.to_s)} } end assert_equal expected_output.chomp, stdout.chomp assert_match expected_error.chomp, stderr.chomp assert_equal File.read(expected_file.expand_path), File.read(sample_file) end end def test_rewriter_bug_163 assert_rewriter_output('bug_163', '--modify -l rewriter.rb', expected_error: Parser::Rewriter::DEPRECATION_WARNING ) end def test_tree_rewriter assert_rewriter_output('using_tree_rewriter', '-l using_tree_rewriter.rb --modify') end end
Version data entries
12 entries across 12 versions & 4 rubygems