2018-11-02 19:07:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-04-14 02:01:35 -04:00
|
|
|
RSpec.describe "bundle viz", :bundler => "< 3", :if => Bundler.which("dot") do
|
2018-11-02 19:07:56 -04:00
|
|
|
before do
|
2020-05-15 08:31:12 -04:00
|
|
|
graphviz_version = RUBY_VERSION >= "2.4" ? "1.2.5" : "1.2.4"
|
|
|
|
|
|
|
|
realworld_system_gems "ruby-graphviz --version #{graphviz_version}"
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "graphs gems from the Gemfile" do
|
|
|
|
install_gemfile <<-G
|
2019-05-06 12:06:21 -04:00
|
|
|
source "#{file_uri_for(gem_repo1)}"
|
2018-11-02 19:07:56 -04:00
|
|
|
gem "rack"
|
|
|
|
gem "rack-obama"
|
|
|
|
G
|
|
|
|
|
2020-06-03 14:45:36 -04:00
|
|
|
bundle "viz"
|
2018-11-02 19:07:56 -04:00
|
|
|
expect(out).to include("gem_graph.png")
|
|
|
|
|
2020-06-03 14:45:36 -04:00
|
|
|
bundle "viz", :format => "debug"
|
2018-11-02 19:07:56 -04:00
|
|
|
expect(out).to eq(strip_whitespace(<<-DOT).strip)
|
|
|
|
digraph Gemfile {
|
|
|
|
concentrate = "true";
|
|
|
|
normalize = "true";
|
|
|
|
nodesep = "0.55";
|
|
|
|
edge[ weight = "2"];
|
|
|
|
node[ fontname = "Arial, Helvetica, SansSerif"];
|
|
|
|
edge[ fontname = "Arial, Helvetica, SansSerif" , fontsize = "12"];
|
|
|
|
default [style = "filled", fillcolor = "#B9B9D5", shape = "box3d", fontsize = "16", label = "default"];
|
|
|
|
rack [style = "filled", fillcolor = "#B9B9D5", label = "rack"];
|
|
|
|
default -> rack [constraint = "false"];
|
|
|
|
"rack-obama" [style = "filled", fillcolor = "#B9B9D5", label = "rack-obama"];
|
|
|
|
default -> "rack-obama" [constraint = "false"];
|
|
|
|
"rack-obama" -> rack;
|
|
|
|
}
|
|
|
|
debugging bundle viz...
|
|
|
|
DOT
|
|
|
|
end
|
|
|
|
|
|
|
|
it "graphs gems that are prereleases" do
|
|
|
|
build_repo2 do
|
|
|
|
build_gem "rack", "1.3.pre"
|
|
|
|
end
|
|
|
|
|
|
|
|
install_gemfile <<-G
|
2019-05-06 12:06:21 -04:00
|
|
|
source "#{file_uri_for(gem_repo2)}"
|
2018-11-02 19:07:56 -04:00
|
|
|
gem "rack", "= 1.3.pre"
|
|
|
|
gem "rack-obama"
|
|
|
|
G
|
|
|
|
|
2020-06-03 14:45:36 -04:00
|
|
|
bundle "viz"
|
2018-11-02 19:07:56 -04:00
|
|
|
expect(out).to include("gem_graph.png")
|
|
|
|
|
2020-06-03 14:45:36 -04:00
|
|
|
bundle "viz", :format => :debug, :version => true
|
2018-11-02 19:07:56 -04:00
|
|
|
expect(out).to eq(strip_whitespace(<<-EOS).strip)
|
|
|
|
digraph Gemfile {
|
|
|
|
concentrate = "true";
|
|
|
|
normalize = "true";
|
|
|
|
nodesep = "0.55";
|
|
|
|
edge[ weight = "2"];
|
|
|
|
node[ fontname = "Arial, Helvetica, SansSerif"];
|
|
|
|
edge[ fontname = "Arial, Helvetica, SansSerif" , fontsize = "12"];
|
|
|
|
default [style = "filled", fillcolor = "#B9B9D5", shape = "box3d", fontsize = "16", label = "default"];
|
|
|
|
rack [style = "filled", fillcolor = "#B9B9D5", label = "rack\\n1.3.pre"];
|
|
|
|
default -> rack [constraint = "false"];
|
|
|
|
"rack-obama" [style = "filled", fillcolor = "#B9B9D5", label = "rack-obama\\n1.0"];
|
|
|
|
default -> "rack-obama" [constraint = "false"];
|
|
|
|
"rack-obama" -> rack;
|
|
|
|
}
|
|
|
|
debugging bundle viz...
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with another gem that has a graphviz file" do
|
|
|
|
before do
|
|
|
|
build_repo4 do
|
|
|
|
build_gem "graphviz", "999" do |s|
|
|
|
|
s.write("lib/graphviz.rb", "abort 'wrong graphviz gem loaded'")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-15 08:31:12 -04:00
|
|
|
system_gems "graphviz-999", :gem_repo => gem_repo4
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "loads the correct ruby-graphviz gem" do
|
|
|
|
install_gemfile <<-G
|
2019-05-06 12:06:21 -04:00
|
|
|
source "#{file_uri_for(gem_repo1)}"
|
2018-11-02 19:07:56 -04:00
|
|
|
gem "rack"
|
|
|
|
gem "rack-obama"
|
|
|
|
G
|
|
|
|
|
2020-06-03 14:45:36 -04:00
|
|
|
bundle "viz", :format => "debug"
|
2018-11-02 19:07:56 -04:00
|
|
|
expect(out).to eq(strip_whitespace(<<-DOT).strip)
|
|
|
|
digraph Gemfile {
|
|
|
|
concentrate = "true";
|
|
|
|
normalize = "true";
|
|
|
|
nodesep = "0.55";
|
|
|
|
edge[ weight = "2"];
|
|
|
|
node[ fontname = "Arial, Helvetica, SansSerif"];
|
|
|
|
edge[ fontname = "Arial, Helvetica, SansSerif" , fontsize = "12"];
|
|
|
|
default [style = "filled", fillcolor = "#B9B9D5", shape = "box3d", fontsize = "16", label = "default"];
|
|
|
|
rack [style = "filled", fillcolor = "#B9B9D5", label = "rack"];
|
|
|
|
default -> rack [constraint = "false"];
|
|
|
|
"rack-obama" [style = "filled", fillcolor = "#B9B9D5", label = "rack-obama"];
|
|
|
|
default -> "rack-obama" [constraint = "false"];
|
|
|
|
"rack-obama" -> rack;
|
|
|
|
}
|
|
|
|
debugging bundle viz...
|
|
|
|
DOT
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "--without option" do
|
|
|
|
it "one group" do
|
|
|
|
install_gemfile <<-G
|
2019-05-06 12:06:21 -04:00
|
|
|
source "#{file_uri_for(gem_repo1)}"
|
2018-11-02 19:07:56 -04:00
|
|
|
gem "activesupport"
|
|
|
|
|
|
|
|
group :rails do
|
|
|
|
gem "rails"
|
|
|
|
end
|
|
|
|
G
|
|
|
|
|
2020-06-03 14:45:36 -04:00
|
|
|
bundle "viz --without=rails"
|
2018-11-02 19:07:56 -04:00
|
|
|
expect(out).to include("gem_graph.png")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "two groups" do
|
|
|
|
install_gemfile <<-G
|
2019-05-06 12:06:21 -04:00
|
|
|
source "#{file_uri_for(gem_repo1)}"
|
2018-11-02 19:07:56 -04:00
|
|
|
gem "activesupport"
|
|
|
|
|
|
|
|
group :rack do
|
|
|
|
gem "rack"
|
|
|
|
end
|
|
|
|
|
|
|
|
group :rails do
|
|
|
|
gem "rails"
|
|
|
|
end
|
|
|
|
G
|
|
|
|
|
2020-06-03 14:45:36 -04:00
|
|
|
bundle "viz --without=rails:rack"
|
2018-11-02 19:07:56 -04:00
|
|
|
expect(out).to include("gem_graph.png")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|