2018-11-02 19:07:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-04-14 02:05:27 -04:00
|
|
|
RSpec.describe "require 'bundler/gem_tasks'" do
|
2018-11-02 19:07:56 -04:00
|
|
|
before :each do
|
|
|
|
bundled_app("foo.gemspec").open("w") do |f|
|
|
|
|
f.write <<-GEMSPEC
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "foo"
|
2019-12-14 05:49:16 -05:00
|
|
|
s.version = "1.0"
|
|
|
|
s.summary = "dummy"
|
|
|
|
s.author = "Perry Mason"
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
|
|
|
GEMSPEC
|
|
|
|
end
|
2019-12-14 05:49:16 -05:00
|
|
|
|
2018-11-02 19:07:56 -04:00
|
|
|
bundled_app("Rakefile").open("w") do |f|
|
|
|
|
f.write <<-RAKEFILE
|
2019-11-11 03:57:45 -05:00
|
|
|
$:.unshift("#{lib_dir}")
|
2018-11-02 19:07:56 -04:00
|
|
|
require "bundler/gem_tasks"
|
|
|
|
RAKEFILE
|
|
|
|
end
|
2019-12-14 05:49:16 -05:00
|
|
|
|
|
|
|
install_gemfile! <<-G
|
|
|
|
source "#{file_uri_for(gem_repo1)}"
|
|
|
|
|
|
|
|
gem "rake"
|
|
|
|
G
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "includes the relevant tasks" do
|
|
|
|
with_gem_path_as(Spec::Path.base_system_gems.to_s) do
|
2020-05-08 01:19:04 -04:00
|
|
|
sys_exec "#{rake} -T", :env => { "RUBYOPT" => opt_add("-I#{lib_dir}", ENV["RUBYOPT"]) }
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
|
|
|
|
2019-12-14 05:49:16 -05:00
|
|
|
expect(err).to be_empty
|
2018-11-02 19:07:56 -04:00
|
|
|
expected_tasks = [
|
|
|
|
"rake build",
|
|
|
|
"rake clean",
|
|
|
|
"rake clobber",
|
|
|
|
"rake install",
|
|
|
|
"rake release[remote]",
|
|
|
|
]
|
|
|
|
tasks = out.lines.to_a.map {|s| s.split("#").first.strip }
|
|
|
|
expect(tasks & expected_tasks).to eq(expected_tasks)
|
|
|
|
expect(exitstatus).to eq(0) if exitstatus
|
|
|
|
end
|
|
|
|
|
2019-12-14 05:49:16 -05:00
|
|
|
it "defines a working `rake install` task" do
|
|
|
|
with_gem_path_as(Spec::Path.base_system_gems.to_s) do
|
2020-05-08 01:19:04 -04:00
|
|
|
sys_exec "#{rake} install", :env => { "RUBYOPT" => opt_add("-I#{lib_dir}", ENV["RUBYOPT"]) }
|
2019-12-14 05:49:16 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(err).to be_empty
|
|
|
|
|
|
|
|
bundle! "exec rake install"
|
|
|
|
|
|
|
|
expect(err).to be_empty
|
|
|
|
end
|
|
|
|
|
2020-01-08 02:11:52 -05:00
|
|
|
context "rake build when path has spaces" do
|
|
|
|
before do
|
|
|
|
spaced_bundled_app = tmp.join("bundled app")
|
2020-05-08 01:19:04 -04:00
|
|
|
FileUtils.cp_r bundled_app, spaced_bundled_app
|
|
|
|
bundle! "exec rake build", :dir => spaced_bundled_app
|
2020-01-08 02:11:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "still runs successfully" do
|
|
|
|
expect(err).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-02 19:07:56 -04:00
|
|
|
it "adds 'pkg' to rake/clean's CLOBBER" do
|
|
|
|
with_gem_path_as(Spec::Path.base_system_gems.to_s) do
|
2018-11-11 19:53:15 -05:00
|
|
|
sys_exec! %(#{rake} -e 'load "Rakefile"; puts CLOBBER.inspect')
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
2019-06-01 05:49:40 -04:00
|
|
|
expect(out).to eq '["pkg"]'
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
|
|
|
end
|