Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/presenters/blob_presenter_spec.rb')
-rw-r--r--spec/presenters/blob_presenter_spec.rb137
1 files changed, 110 insertions, 27 deletions
diff --git a/spec/presenters/blob_presenter_spec.rb b/spec/presenters/blob_presenter_spec.rb
index 47402fea2b5..38bdf3b9364 100644
--- a/spec/presenters/blob_presenter_spec.rb
+++ b/spec/presenters/blob_presenter_spec.rb
@@ -2,52 +2,96 @@
require 'spec_helper'
-RSpec.describe BlobPresenter, :seed_helper do
- let(:repository) { Gitlab::Git::Repository.new('default', TEST_REPO_PATH, '', 'group/project') }
-
- let(:git_blob) do
- Gitlab::Git::Blob.find(
- repository,
- 'fa1b1e6c004a68b7d8763b86455da9e6b23e36d6',
- 'files/ruby/regex.rb'
- )
+RSpec.describe BlobPresenter do
+ let_it_be(:project) { create(:project, :repository) }
+ let_it_be(:user) { project.owner }
+
+ let(:repository) { project.repository }
+ let(:blob) { repository.blob_at('HEAD', 'files/ruby/regex.rb') }
+
+ subject(:presenter) { described_class.new(blob, current_user: user) }
+
+ describe '#web_url' do
+ it { expect(presenter.web_url).to eq("http://localhost/#{project.full_path}/-/blob/#{blob.commit_id}/#{blob.path}") }
+ end
+
+ describe '#web_path' do
+ it { expect(presenter.web_path).to eq("/#{project.full_path}/-/blob/#{blob.commit_id}/#{blob.path}") }
end
- let(:blob) { Blob.new(git_blob) }
+ describe '#edit_blob_path' do
+ it { expect(presenter.edit_blob_path).to eq("/#{project.full_path}/-/edit/#{blob.commit_id}/#{blob.path}") }
+ end
- describe '.web_url' do
- let(:project) { create(:project, :repository) }
- let(:repository) { project.repository }
- let(:blob) { Gitlab::Graphql::Representation::TreeEntry.new(repository.tree.blobs.first, repository) }
+ describe '#raw_path' do
+ it { expect(presenter.raw_path).to eq("/#{project.full_path}/-/raw/#{blob.commit_id}/#{blob.path}") }
+ end
- subject { described_class.new(blob) }
+ describe '#replace_path' do
+ it { expect(presenter.replace_path).to eq("/#{project.full_path}/-/create/#{blob.commit_id}/#{blob.path}") }
+ end
- it { expect(subject.web_url).to eq("http://localhost/#{project.full_path}/-/blob/#{blob.commit_id}/#{blob.path}") }
+ describe '#ide_edit_path' do
+ it { expect(presenter.ide_edit_path).to eq("/-/ide/project/#{project.full_path}/edit/HEAD/-/files/ruby/regex.rb") }
end
- describe '#web_path' do
- let(:project) { create(:project, :repository) }
- let(:repository) { project.repository }
- let(:blob) { Gitlab::Graphql::Representation::TreeEntry.new(repository.tree.blobs.first, repository) }
+ describe '#fork_and_edit_path' do
+ it 'generates expected URI + query' do
+ uri = URI.parse(presenter.fork_and_edit_path)
+ query = Rack::Utils.parse_query(uri.query)
+
+ expect(uri.path).to eq("/#{project.full_path}/-/forks")
+ expect(query).to include('continue[to]' => presenter.edit_blob_path, 'namespace_key' => user.namespace_id.to_s)
+ end
- subject { described_class.new(blob) }
+ context 'current_user is nil' do
+ let(:user) { nil }
- it { expect(subject.web_path).to eq("/#{project.full_path}/-/blob/#{blob.commit_id}/#{blob.path}") }
+ it { expect(presenter.fork_and_edit_path).to be_nil }
+ end
+ end
+
+ describe '#ide_fork_and_edit_path' do
+ it 'generates expected URI + query' do
+ uri = URI.parse(presenter.ide_fork_and_edit_path)
+ query = Rack::Utils.parse_query(uri.query)
+
+ expect(uri.path).to eq("/#{project.full_path}/-/forks")
+ expect(query).to include('continue[to]' => presenter.ide_edit_path, 'namespace_key' => user.namespace_id.to_s)
+ end
+
+ context 'current_user is nil' do
+ let(:user) { nil }
+
+ it { expect(presenter.ide_fork_and_edit_path).to be_nil }
+ end
+ end
+
+ context 'given a Gitlab::Graphql::Representation::TreeEntry' do
+ let(:blob) { Gitlab::Graphql::Representation::TreeEntry.new(super(), repository) }
+
+ describe '#web_url' do
+ it { expect(presenter.web_url).to eq("http://localhost/#{project.full_path}/-/blob/#{blob.commit_id}/#{blob.path}") }
+ end
+
+ describe '#web_path' do
+ it { expect(presenter.web_path).to eq("/#{project.full_path}/-/blob/#{blob.commit_id}/#{blob.path}") }
+ end
end
describe '#highlight' do
- subject { described_class.new(blob) }
+ let(:git_blob) { blob.__getobj__ }
it 'returns highlighted content' do
expect(Gitlab::Highlight).to receive(:highlight).with('files/ruby/regex.rb', git_blob.data, plain: nil, language: nil)
- subject.highlight
+ presenter.highlight
end
it 'returns plain content when :plain is true' do
expect(Gitlab::Highlight).to receive(:highlight).with('files/ruby/regex.rb', git_blob.data, plain: true, language: nil)
- subject.highlight(plain: true)
+ presenter.highlight(plain: true)
end
context '"to" param is present' do
@@ -60,7 +104,7 @@ RSpec.describe BlobPresenter, :seed_helper do
it 'returns limited highlighted content' do
expect(Gitlab::Highlight).to receive(:highlight).with('files/ruby/regex.rb', "line one\n", plain: nil, language: nil)
- subject.highlight(to: 1)
+ presenter.highlight(to: 1)
end
end
@@ -72,7 +116,46 @@ RSpec.describe BlobPresenter, :seed_helper do
it 'passes language to inner call' do
expect(Gitlab::Highlight).to receive(:highlight).with('files/ruby/regex.rb', git_blob.data, plain: nil, language: 'ruby')
- subject.highlight
+ presenter.highlight
+ end
+ end
+ end
+
+ describe '#plain_data' do
+ let(:blob) { repository.blob_at('HEAD', file) }
+
+ subject { described_class.new(blob).plain_data }
+
+ context 'when blob is binary' do
+ let(:file) { 'files/images/logo-black.png' }
+
+ it 'returns nil' do
+ expect(subject).to be_nil
+ end
+ end
+
+ context 'when blob is markup' do
+ let(:file) { 'README.md' }
+
+ it 'returns plain content' do
+ expect(subject).to include('<span id="LC1" class="line" lang="markdown">')
+ end
+ end
+
+ context 'when blob has syntax' do
+ let(:file) { 'files/ruby/regex.rb' }
+
+ it 'returns highlighted syntax content' do
+ expect(subject)
+ .to include '<span id="LC1" class="line" lang="ruby"><span class="k">module</span> <span class="nn">Gitlab</span>'
+ end
+ end
+
+ context 'when blob has plain data' do
+ let(:file) { 'LICENSE' }
+
+ it 'returns plain text highlighted content' do
+ expect(subject).to include('<span id="LC1" class="line" lang="plaintext">The MIT License (MIT)</span>')
end
end
end