discourse/spec/requests/admin/versions_controller_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe Admin::VersionsController do
2013-02-05 14:16:51 -05:00
before do
Jobs::VersionCheck.any_instance.stubs(:execute).returns(true)
DiscourseUpdates.stubs(:updated_at).returns(2.hours.ago)
DiscourseUpdates.stubs(:latest_version).returns('1.2.33')
DiscourseUpdates.stubs(:critical_updates_available?).returns(false)
2013-02-05 14:16:51 -05:00
end
it "is a subclass of AdminController" do
2015-01-09 12:04:02 -05:00
expect(Admin::VersionsController < Admin::AdminController).to eq(true)
2013-02-05 14:16:51 -05:00
end
context 'while logged in as an admin' do
fab!(:admin) { Fabricate(:admin) }
2013-02-05 14:16:51 -05:00
before do
sign_in(admin)
2013-02-05 14:16:51 -05:00
end
describe 'show' do
it 'should return the currently available version' do
get "/admin/version_check.json"
expect(response.status).to eq(200)
json = response.parsed_body
2015-01-09 12:04:02 -05:00
expect(json['latest_version']).to eq('1.2.33')
2013-02-05 14:16:51 -05:00
end
it "should return the installed version" do
get "/admin/version_check.json"
json = response.parsed_body
expect(response.status).to eq(200)
2015-01-09 12:04:02 -05:00
expect(json['installed_version']).to eq(Discourse::VERSION::STRING)
2013-02-05 14:16:51 -05:00
end
end
end
2013-11-05 13:04:47 -05:00
end