debian-mirror-gitlab/spec/controllers/projects_controller_spec.rb

66 lines
2.3 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require('spec_helper')
describe ProjectsController do
let(:project) { create(:project) }
let(:public_project) { create(:project, :public) }
let(:user) { create(:user) }
let(:jpg) { fixture_file_upload(Rails.root + 'spec/fixtures/rails_sample.jpg', 'image/jpg') }
let(:txt) { fixture_file_upload(Rails.root + 'spec/fixtures/doc_sample.txt', 'text/plain') }
2015-04-26 12:48:37 +05:30
describe "GET show" do
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
context "when requested by `go get`" do
render_views
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
it "renders the go-import meta tag" do
get :show, "go-get" => "1", namespace_id: "bogus_namespace", id: "bogus_project"
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
expect(response.body).to include("name='go-import'")
2015-09-11 14:41:01 +05:30
2015-04-26 12:48:37 +05:30
content = "localhost/bogus_namespace/bogus_project git http://localhost/bogus_namespace/bogus_project.git"
expect(response.body).to include("content='#{content}'")
2014-09-02 18:07:02 +05:30
end
end
2015-10-24 18:46:33 +05:30
context "when requested with case sensitive namespace and project path" do
it "redirects to the normalized path for case mismatch" do
get :show, namespace_id: public_project.namespace.path, id: public_project.path.upcase
expect(response).to redirect_to("/#{public_project.path_with_namespace}")
end
it "loads the page if normalized path matches request path" do
get :show, namespace_id: public_project.namespace.path, id: public_project.path
expect(response.status).to eq(200)
end
end
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
2014-09-02 18:07:02 +05:30
describe "POST #toggle_star" do
it "toggles star if user is signed in" do
sign_in(user)
2015-04-26 12:48:37 +05:30
expect(user.starred?(public_project)).to be_falsey
2015-09-11 14:41:01 +05:30
post(:toggle_star,
namespace_id: public_project.namespace.to_param,
2015-04-26 12:48:37 +05:30
id: public_project.to_param)
expect(user.starred?(public_project)).to be_truthy
2015-09-11 14:41:01 +05:30
post(:toggle_star,
namespace_id: public_project.namespace.to_param,
2015-04-26 12:48:37 +05:30
id: public_project.to_param)
expect(user.starred?(public_project)).to be_falsey
2014-09-02 18:07:02 +05:30
end
it "does nothing if user is not signed in" do
2015-09-11 14:41:01 +05:30
post(:toggle_star,
namespace_id: project.namespace.to_param,
2015-04-26 12:48:37 +05:30
id: public_project.to_param)
expect(user.starred?(public_project)).to be_falsey
2015-09-11 14:41:01 +05:30
post(:toggle_star,
namespace_id: project.namespace.to_param,
2015-04-26 12:48:37 +05:30
id: public_project.to_param)
expect(user.starred?(public_project)).to be_falsey
2014-09-02 18:07:02 +05:30
end
end
end