Skip to content

Commit e9a816b

Browse files
committed
Fix spec namespaces
There were some not needed `require_relative` calls if the `spec` folder were ordered according to the `lib` folder. So, I removed them and organized the test suite accordingly the classes at library
1 parent 715535f commit e9a816b

7 files changed

+127
-124
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# main [(unreleased)](https://github.com/fastruby/next_rails/compare/v1.3.0...main)
22

33
* Your changes/patches go here.
4+
- [CHORE: Use next_rails namespace on spec tests.](https://github.com/fastruby/next_rails/pull/117)
45

56
- [CHORE: Remove 2.0.0, 2.1, 2.2 Ruby support](https://github.com/fastruby/next_rails/pull/126)
67
- [CHORE: Update compatibility for Ruby versions to use Rainbow](https://github.com/fastruby/next_rails/pull/125)

spec/bundle_report_spec.rb

-79
This file was deleted.

spec/deprecation_tracker_spec.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
# frozen_string_literal: true
2+
3+
require "spec_helper"
4+
5+
require "date"
16
require "tempfile"
2-
require_relative "spec_helper"
37
require_relative "../lib/deprecation_tracker"
48

59
RSpec::Matchers.define_negated_matcher :not_raise_error, :raise_error

spec/next_rails/bundle_report_spec.rb

+77-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,81 @@
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"
38

49
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+
579
describe "#compatible_ruby_version" do
680
context "when rails_version is a valid one" do
781
it "returns the correct ruby version" do
@@ -18,7 +92,7 @@
1892
expect(ruby_version).to eq(">= 2.7.0")
1993
end
2094
end
21-
95+
2296
context "when rails_version is an invalid one" do
2397
it "returns nil for ruby version" do
2498
rails_version = { rails_version: "0.0.0" }

spec/next_rails/gem_info_spec.rb

+40-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,46 @@
1-
require_relative ".././spec_helper"
2-
require_relative "../../lib/next_rails/gem_info"
1+
# frozen_string_literal: true
2+
3+
require "spec_helper"
4+
5+
require "timecop"
36

47
RSpec.describe NextRails::GemInfo do
8+
let(:release_date) { Time.utc(2019, 7, 6, 0, 0, 0) }
9+
let(:now) { Time.utc(2019, 7, 6, 12, 0, 0) }
10+
let(:spec) do
11+
Gem::Specification.new do |s|
12+
s.date = release_date
13+
s.version = "1.0.0"
14+
end
15+
end
16+
17+
subject { NextRails::GemInfo.new(spec) }
18+
19+
describe "#age" do
20+
around do |example|
21+
Timecop.travel(now) do
22+
example.run
23+
end
24+
end
25+
26+
let(:result) { now.strftime("%b %e, %Y") }
27+
28+
it "returns a date" do
29+
expect(subject.age).to eq(result)
30+
end
31+
end
32+
33+
describe "#up_to_date?" do
34+
it "is up to date" do
35+
allow(Gem).to receive(:latest_spec_for).and_return(spec)
36+
expect(subject.up_to_date?).to be_truthy
37+
end
38+
end
39+
540
describe "#state" do
641
let(:mock_gem) { Struct.new(:name, :version, :runtime_dependencies) }
742
let(:mocked_dependency) { Struct.new(:name, :requirement) }
43+
844
it "returns :incompatible if gem specifies a rails dependency but no compatible version is found" do
945
# set up a mock gem with with a rails dependency that is unsatisfied by the version given
1046
mocked_dependency_requirement = double("requirement")
@@ -36,11 +72,11 @@
3672

3773
expect(gem_info.state(rails_version)).to eq(:no_new_version)
3874
end
39-
4075
end
4176

4277
describe "#find_latest_compatible" do
4378
let(:mock_gem) { Struct.new(:name, :version) }
79+
4480
it "sets latest_compatible_version to NullGem if no specs are found" do
4581
gem = mock_gem.new('gem_name', "0.0.1")
4682

@@ -53,6 +89,5 @@
5389
gem_info.find_latest_compatible
5490
expect(gem_info.latest_compatible_version).to be_a(NextRails::GemInfo::NullGemInfo)
5591
end
56-
5792
end
58-
end
93+
end

spec/next_rails_spec.rb

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# frozen_string_literal: true
2+
3+
require "spec_helper"
4+
15
require "fileutils"
26

37
RSpec.describe NextRails do

spec/ten_years_rails/gem_info_spec.rb

-36
This file was deleted.

0 commit comments

Comments
 (0)