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
|
|
|
|
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
|