2014-05-23 04:22:00 -04:00
|
|
|
require('spec_helper')
|
|
|
|
|
|
|
|
describe ProjectsController do
|
|
|
|
let(:project) { create(:project) }
|
2014-06-26 03:49:14 -04:00
|
|
|
let(:public_project) { create(:project, :public) }
|
2014-05-23 04:22:00 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:jpg) { fixture_file_upload(Rails.root + 'spec/fixtures/rails_sample.jpg', 'image/jpg') }
|
2014-05-26 09:58:03 -04:00
|
|
|
let(:txt) { fixture_file_upload(Rails.root + 'spec/fixtures/doc_sample.txt', 'text/plain') }
|
2014-05-23 04:22:00 -04:00
|
|
|
|
2015-02-24 11:02:11 -05:00
|
|
|
describe "GET show" do
|
|
|
|
|
|
|
|
context "when requested by `go get`" do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
it "renders the go-import meta tag" do
|
|
|
|
get :show, "go-get" => "1", namespace_id: "bogus_namespace", id: "bogus_project"
|
|
|
|
|
|
|
|
expect(response.body).to include("name='go-import'")
|
2015-06-23 01:24:39 -04:00
|
|
|
|
2015-02-24 11:02:11 -05:00
|
|
|
content = "localhost/bogus_namespace/bogus_project git http://localhost/bogus_namespace/bogus_project.git"
|
|
|
|
expect(response.body).to include("content='#{content}'")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-06-23 01:24:39 -04:00
|
|
|
|
2014-06-26 03:49:14 -04:00
|
|
|
describe "POST #toggle_star" do
|
2014-07-14 09:17:59 -04:00
|
|
|
it "toggles star if user is signed in" do
|
2014-06-26 03:49:14 -04:00
|
|
|
sign_in(user)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(user.starred?(public_project)).to be_falsey
|
2015-06-23 01:24:39 -04:00
|
|
|
post(:toggle_star,
|
|
|
|
namespace_id: public_project.namespace.to_param,
|
2015-01-24 13:02:58 -05:00
|
|
|
id: public_project.to_param)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(user.starred?(public_project)).to be_truthy
|
2015-06-23 01:24:39 -04:00
|
|
|
post(:toggle_star,
|
|
|
|
namespace_id: public_project.namespace.to_param,
|
2015-01-24 13:02:58 -05:00
|
|
|
id: public_project.to_param)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(user.starred?(public_project)).to be_falsey
|
2014-06-26 03:49:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does nothing if user is not signed in" do
|
2015-06-23 01:24:39 -04:00
|
|
|
post(:toggle_star,
|
|
|
|
namespace_id: project.namespace.to_param,
|
2015-01-24 13:02:58 -05:00
|
|
|
id: public_project.to_param)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(user.starred?(public_project)).to be_falsey
|
2015-06-23 01:24:39 -04:00
|
|
|
post(:toggle_star,
|
|
|
|
namespace_id: project.namespace.to_param,
|
2015-01-24 13:02:58 -05:00
|
|
|
id: public_project.to_param)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(user.starred?(public_project)).to be_falsey
|
2014-06-26 03:49:14 -04:00
|
|
|
end
|
|
|
|
end
|
2014-05-26 08:17:46 -04:00
|
|
|
end
|