2019-04-15 06:17:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-01-07 06:56:18 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Projects::FindFileController do
|
2017-01-25 16:44:33 -05:00
|
|
|
let(:project) { create(:project, :repository) }
|
2016-01-07 06:56:18 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
|
2018-07-11 10:36:08 -04:00
|
|
|
project.add_maintainer(user)
|
2016-01-07 06:56:18 -05:00
|
|
|
controller.instance_variable_set(:@project, project)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET #show" do
|
|
|
|
# Make sure any errors accessing the tree in our views bubble up to this spec
|
|
|
|
render_views
|
|
|
|
|
|
|
|
before do
|
|
|
|
get(:show,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: id
|
|
|
|
})
|
2016-01-07 06:56:18 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context "valid branch" do
|
|
|
|
let(:id) { 'master' }
|
2019-12-18 19:08:01 -05:00
|
|
|
|
2016-01-07 06:56:18 -05:00
|
|
|
it { is_expected.to respond_with(:success) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "invalid branch" do
|
|
|
|
let(:id) { 'invalid-branch' }
|
2019-12-18 19:08:01 -05:00
|
|
|
|
2016-01-07 06:56:18 -05:00
|
|
|
it { is_expected.to respond_with(:not_found) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET #list" do
|
|
|
|
def go(format: 'json')
|
|
|
|
get :list,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: id
|
|
|
|
},
|
2016-01-07 06:56:18 -05:00
|
|
|
format: format
|
|
|
|
end
|
|
|
|
|
|
|
|
context "valid branch" do
|
|
|
|
let(:id) { 'master' }
|
2019-12-18 19:08:01 -05:00
|
|
|
|
2016-01-07 06:56:18 -05:00
|
|
|
it 'returns an array of file path list' do
|
|
|
|
go
|
|
|
|
|
|
|
|
is_expected.to respond_with(:success)
|
2019-07-16 04:03:49 -04:00
|
|
|
expect(json_response).not_to eq(nil)
|
|
|
|
expect(json_response.length).to be >= 0
|
2016-01-07 06:56:18 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "invalid branch" do
|
|
|
|
let(:id) { 'invalid-branch' }
|
|
|
|
|
|
|
|
it 'responds with status 404' do
|
|
|
|
go
|
|
|
|
is_expected.to respond_with(:not_found)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|