2015-01-10 15:37:48 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe TreeHelper do
|
2017-11-10 15:39:00 -05:00
|
|
|
let(:project) { create(:project, :repository) }
|
|
|
|
let(:repository) { project.repository }
|
|
|
|
let(:sha) { 'ce369011c189f62c815f5971d096b26759bab0d1' }
|
|
|
|
|
|
|
|
describe '.render_tree' do
|
|
|
|
before do
|
|
|
|
@id = sha
|
2018-04-04 09:56:41 -04:00
|
|
|
@path = ""
|
2017-11-10 15:39:00 -05:00
|
|
|
@project = project
|
2017-12-14 06:31:50 -05:00
|
|
|
@lfs_blob_ids = []
|
2017-11-10 15:39:00 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays all entries without a warning' do
|
|
|
|
tree = repository.tree(sha, 'files')
|
|
|
|
|
|
|
|
html = render_tree(tree)
|
|
|
|
|
|
|
|
expect(html).not_to have_selector('.tree-truncated-warning')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'truncates entries and adds a warning' do
|
|
|
|
stub_const('TreeHelper::FILE_LIMIT', 1)
|
|
|
|
tree = repository.tree(sha, 'files')
|
|
|
|
|
|
|
|
html = render_tree(tree)
|
|
|
|
|
|
|
|
expect(html).to have_selector('.tree-truncated-warning', count: 1)
|
|
|
|
expect(html).to have_selector('.tree-item-file-name', count: 1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-10 15:37:48 -05:00
|
|
|
describe 'flatten_tree' do
|
2017-09-06 16:47:25 -04:00
|
|
|
let(:tree) { repository.tree(sha, 'files') }
|
|
|
|
let(:root_path) { 'files' }
|
|
|
|
let(:tree_item) { tree.entries.find { |entry| entry.path == path } }
|
2015-01-10 15:37:48 -05:00
|
|
|
|
2017-09-06 16:47:25 -04:00
|
|
|
subject { flatten_tree(root_path, tree_item) }
|
2015-01-10 15:37:48 -05:00
|
|
|
|
|
|
|
context "on a directory containing more than one file/directory" do
|
2017-09-06 16:47:25 -04:00
|
|
|
let(:path) { 'files/html' }
|
2015-01-10 15:37:48 -05:00
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "returns the directory name" do
|
2017-09-06 16:47:25 -04:00
|
|
|
expect(subject).to match('html')
|
2015-01-10 15:37:48 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "on a directory containing only one directory" do
|
2017-09-06 16:47:25 -04:00
|
|
|
let(:path) { 'files/flat' }
|
2015-01-10 15:37:48 -05:00
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "returns the flattened path" do
|
2017-09-06 16:47:25 -04:00
|
|
|
expect(subject).to match('flat/path/correct')
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with a nested root path" do
|
|
|
|
let(:root_path) { 'files/flat' }
|
|
|
|
|
|
|
|
it "returns the flattened path with the root path suffix removed" do
|
|
|
|
expect(subject).to match('path/correct')
|
|
|
|
end
|
2015-01-10 15:37:48 -05:00
|
|
|
end
|
|
|
|
end
|
2018-04-04 09:56:41 -04:00
|
|
|
|
|
|
|
context 'when the root path contains a plus character' do
|
|
|
|
let(:root_path) { 'gtk/C++' }
|
|
|
|
let(:tree_item) { double(flat_path: 'gtk/C++/glade') }
|
|
|
|
|
|
|
|
it 'returns the flattened path' do
|
|
|
|
expect(subject).to eq('glade')
|
|
|
|
end
|
|
|
|
end
|
2015-01-10 15:37:48 -05:00
|
|
|
end
|
2018-02-28 03:06:18 -05:00
|
|
|
|
|
|
|
describe '#commit_in_single_accessible_branch' do
|
|
|
|
it 'escapes HTML from the branch name' do
|
|
|
|
helper.instance_variable_set(:@branch_name, "<script>alert('escape me!');</script>")
|
|
|
|
escaped_branch_name = '<script>alert('escape me!');</script>'
|
|
|
|
|
|
|
|
expect(helper.commit_in_single_accessible_branch).to include(escaped_branch_name)
|
|
|
|
end
|
|
|
|
end
|
2015-01-10 15:37:48 -05:00
|
|
|
end
|