Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix update check spec #1743

Merged
merged 2 commits into from
Mar 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions alchemy_cms.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'rspec-rails', ['>= 4.0.0.beta2']
gem.add_development_dependency 'simplecov', ['~> 0.17.1']
gem.add_development_dependency 'webdrivers', ['~> 4.0']
gem.add_development_dependency 'webmock', ['~> 3.3']
gem.add_development_dependency 'shoulda-matchers', ['~> 4.0']

gem.post_install_message = <<-MSG
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/alchemy/admin/dashboard_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def get_alchemy_versions
response = query_github
if response.code == "200"
alchemy_tags = JSON.parse(response.body)
alchemy_tags.collect { |h| h['name'] }.sort
alchemy_tags.collect { |h| h['name'].tr('v', '') }.sort
else
# no luck at all?
raise UpdateServiceUnavailable
Expand Down
82 changes: 41 additions & 41 deletions spec/controllers/alchemy/admin/dashboard_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -79,72 +79,72 @@ module Alchemy
end

describe '#update_check' do
context "if current Alchemy version equals the latest released version or it is newer" do
before {
allow(controller).to receive(:latest_alchemy_version).and_return('2.6')
allow(Alchemy).to receive(:version).and_return("2.6")
}

it "should render 'false'" do
get :update_check
expect(response.body).to eq('false')
end
before do
WebMock.enable!
end

context "if current Alchemy version is older than latest released version" do
context "requesting rubygems.org" do
before do
allow_any_instance_of(Net::HTTP).to receive(:request) do
OpenStruct.new({code: '200', body: '[{"number": "2.6"}, {"number": "2.5"}]'})
end
allow(Alchemy).to receive(:version).and_return("2.5")
stub_request(:get, 'https://rubygems.org/api/v1/versions/alchemy_cms.json').to_return(
status: 200, body: '[{"number": "3.0.0.alpha"}, {"number": "2.6.0"}, {"number": "2.5.1"}]'
)
end

it "should render 'true'" do
get :update_check
expect(response.body).to eq('true')
context "if current Alchemy version equals the latest released version or it is newer" do
before do
allow(Alchemy).to receive(:version).and_return("2.6.2")
end

it "should render 'false'" do
get :update_check
expect(response.code).to eq('200')
expect(response.body).to eq('false')
end
end
end

context "requesting rubygems.org" do
before {
allow_any_instance_of(Net::HTTP).to receive(:request).and_return(
OpenStruct.new({code: '200', body: '[{"number": "2.6"}, {"number": "2.5"}]'})
)
allow(Alchemy).to receive(:version).and_return("2.6")
}
context "if current Alchemy version is older than latest released version" do
before do
allow(Alchemy).to receive(:version).and_return("2.5.0")
end

it "should have response code of 200" do
get :update_check
expect(response.code).to eq('200')
it "should render 'true'" do
get :update_check
expect(response.code).to eq('200')
expect(response.body).to eq('true')
end
end
end

context "requesting github.com" do
before {
allow(controller).to receive(:query_rubygems).and_return(OpenStruct.new({code: '503'}))
allow_any_instance_of(Net::HTTP).to receive(:request).and_return(
OpenStruct.new({code: '200', body: '[{"name": "2.6"}, {"name": "2.5"}]'})
context "if rubygems.org is unavailable" do
before do
stub_request(:get, 'https://rubygems.org/api/v1/versions/alchemy_cms.json').to_return(status: 503)
stub_request(:get, 'https://api.github.com/repos/AlchemyCMS/alchemy_cms/tags').to_return(
status: 200, body: '[{"name": "v2.6.0"}, {"name": "v2.5.0"}]'
)
}
allow(Alchemy).to receive(:version).and_return("2.6.2")
end

it "should have response code of 200" do
it "should request github.com" do
get :update_check
expect(response.code).to eq('200')
expect(response.body).to eq('false')
end
end

context "rubygems.org and github.com are unavailable" do
before {
allow_any_instance_of(Net::HTTP).to receive(:request).and_return(
OpenStruct.new({code: '503'})
)
}
before do
stub_request(:get, /rubygems|github/).to_return(status: 503)
end

it "should have status code 503" do
get :update_check
expect(response.code).to eq('503')
end
end

after do
WebMock.disable!
end
end
end
end
2 changes: 2 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@
end

require 'rspec/core'
require 'webmock'

RSpec.configure do |config|
config.raise_errors_for_deprecations!
config.run_all_when_everything_filtered = true
config.filter_run :focus
config.include WebMock::API, type: :controller
end