|
1 |
| -require_relative ".././spec_helper" |
2 |
| -require_relative "../../lib/next_rails/bundle_report" |
| 1 | +# frozen_string_literal: true |
| 2 | + |
| 3 | +require "rainbow/refinement" |
| 4 | + |
| 5 | +using Rainbow |
| 6 | + |
| 7 | +require "spec_helper" |
3 | 8 |
|
4 | 9 | RSpec.describe NextRails::BundleReport do
|
| 10 | + describe '.outdated' do |
| 11 | + let(:mock_version) { Struct.new(:version, :age) } |
| 12 | + let(:mock_gem) { Struct.new(:name, :version, :age, :latest_version, :up_to_date?, :created_at, :sourced_from_git?) } |
| 13 | + let(:format_str) { '%b %e, %Y' } |
| 14 | + let(:alpha_date) { Date.parse('2022-01-01') } |
| 15 | + let(:alpha_age) { alpha_date.strftime(format_str) } |
| 16 | + let(:bravo_date) { Date.parse('2022-02-02') } |
| 17 | + let(:bravo_age) { bravo_date.strftime(format_str) } |
| 18 | + let(:charlie_date) { Date.parse('2022-03-03') } |
| 19 | + let(:charlie_age) { charlie_date.strftime(format_str) } |
| 20 | + |
| 21 | + before do |
| 22 | + allow(NextRails::GemInfo).to receive(:all).and_return( |
| 23 | + [ |
| 24 | + mock_gem.new('alpha', '0.0.1', alpha_age, mock_version.new('0.0.2', bravo_age), false, alpha_date, false), |
| 25 | + mock_gem.new('bravo', '0.2.0', bravo_age, mock_version.new('0.2.2', charlie_age), false, bravo_date, true) |
| 26 | + ] |
| 27 | + ) |
| 28 | + end |
| 29 | + |
| 30 | + context 'when writing human-readable output' do |
| 31 | + #subject { described_class.outdated } |
| 32 | + |
| 33 | + it 'invokes $stdout.puts properly', :aggregate_failures do |
| 34 | + allow($stdout) |
| 35 | + .to receive(:puts) |
| 36 | + .with("#{'alpha 0.0.1'.bold.white}: released #{alpha_age} (latest version, 0.0.2, released #{bravo_age})\n") |
| 37 | + allow($stdout) |
| 38 | + .to receive(:puts) |
| 39 | + .with("#{'bravo 0.2.0'.bold.white}: released #{bravo_age} (latest version, 0.2.2, released #{charlie_age})\n") |
| 40 | + allow($stdout).to receive(:puts).with('') |
| 41 | + allow($stdout).to receive(:puts).with(<<-EO_MULTLINE_STRING) |
| 42 | + #{'1'.yellow} gems are sourced from git |
| 43 | + #{'2'.red} of the 2 gems are out-of-date (100%) |
| 44 | + EO_MULTLINE_STRING |
| 45 | + end |
| 46 | + end |
| 47 | + |
| 48 | + context 'when writing JSON output' do |
| 49 | + it 'JSON is correctly formatted' do |
| 50 | + gems = NextRails::GemInfo.all |
| 51 | + out_of_date_gems = gems.reject(&:up_to_date?).sort_by(&:created_at) |
| 52 | + sourced_from_git = gems.select(&:sourced_from_git?) |
| 53 | + |
| 54 | + expect(NextRails::BundleReport.build_json(out_of_date_gems, gems.count, sourced_from_git.count)).to eq( |
| 55 | + { |
| 56 | + outdated_gems: [ |
| 57 | + { name: 'alpha', installed_version: '0.0.1', installed_age: alpha_age, latest_version: '0.0.2', |
| 58 | + latest_age: bravo_age }, |
| 59 | + { name: 'bravo', installed_version: '0.2.0', installed_age: bravo_age, latest_version: '0.2.2', |
| 60 | + latest_age: charlie_age } |
| 61 | + ], |
| 62 | + sourced_from_git_count: sourced_from_git.count, |
| 63 | + total_gem_count: gems.count |
| 64 | + } |
| 65 | + ) |
| 66 | + end |
| 67 | + end |
| 68 | + end |
| 69 | + |
| 70 | + describe ".compatibility" do |
| 71 | + describe "output" do |
| 72 | + it "returns ERB generated output" do |
| 73 | + output = NextRails::BundleReport.erb_output({}, [], 7.0) |
| 74 | + expect(output).to match "gems incompatible with Rails 7.0" |
| 75 | + end |
| 76 | + end |
| 77 | + end |
| 78 | + |
5 | 79 | describe "#compatible_ruby_version" do
|
6 | 80 | context "when rails_version is a valid one" do
|
7 | 81 | it "returns the correct ruby version" do
|
|
18 | 92 | expect(ruby_version).to eq(">= 2.7.0")
|
19 | 93 | end
|
20 | 94 | end
|
21 |
| - |
| 95 | + |
22 | 96 | context "when rails_version is an invalid one" do
|
23 | 97 | it "returns nil for ruby version" do
|
24 | 98 | rails_version = { rails_version: "0.0.0" }
|
|
0 commit comments