FIX: Correct version comparison logic when comparing stable to beta (#10135)

* FIX: Correct version comparison logic when comparing stable to beta

For example, version 1.3.0 should be considered higher than 1.3.0.beta3. So `Discourse.has_needed_version?('1.3.0', '1.3.0.beta3')` should return true

* Switch to use Gem::Version to compare versions
This commit is contained in:
David Taylor
2020-06-29 08:52:33 +01:00
committed by GitHub
parent c299d02287
commit 0edffcc47d
2 changed files with 10 additions and 18 deletions

View File

@ -30,12 +30,20 @@ describe Discourse::VERSION do
expect(Discourse.has_needed_version?('1.12.0', '2.12.5')).to eq(false)
end
it "works for beta comparisons" do
it "works for beta comparisons when current_version is beta" do
expect(Discourse.has_needed_version?('1.3.0.beta3', '1.2.9')).to eq(true)
expect(Discourse.has_needed_version?('1.3.0.beta3', '1.3.0.beta1')).to eq(true)
expect(Discourse.has_needed_version?('1.3.0.beta3', '1.3.0.beta4')).to eq(false)
expect(Discourse.has_needed_version?('1.3.0.beta3', '1.3.0')).to eq(false)
end
it "works for beta comparisons when needed_version is beta" do
expect(Discourse.has_needed_version?('1.2.0', '1.3.0.beta3')).to eq(false)
expect(Discourse.has_needed_version?('1.2.9', '1.3.0.beta3')).to eq(false)
expect(Discourse.has_needed_version?('1.3.0.beta1', '1.3.0.beta3')).to eq(false)
expect(Discourse.has_needed_version?('1.3.0.beta4', '1.3.0.beta3')).to eq(true)
expect(Discourse.has_needed_version?('1.3.0', '1.3.0.beta3')).to eq(true)
end
end
end