gitlab-org--gitlab-foss/spec/models/blob_viewer/base_spec.rb

178 lines
4.8 KiB
Ruby
Raw Normal View History

2017-04-25 16:22:56 -04:00
require 'spec_helper'
2017-04-20 19:34:57 -04:00
describe BlobViewer::Base, model: true do
2017-04-25 16:22:56 -04:00
include FakeBlobHelpers
let(:project) { build(:empty_project) }
let(:viewer_class) do
Class.new(described_class) do
include BlobViewer::ServerSide
2017-04-25 16:22:56 -04:00
self.extensions = %w(pdf)
2017-05-08 19:50:23 -04:00
self.binary = true
self.collapse_limit = 1.megabyte
self.size_limit = 5.megabytes
2017-04-25 16:22:56 -04:00
end
end
let(:viewer) { viewer_class.new(blob) }
describe '.can_render?' do
context 'when the extension is supported' do
2017-05-08 19:50:23 -04:00
context 'when the binaryness matches' do
let(:blob) { fake_blob(path: 'file.pdf', binary: true) }
2017-04-25 16:22:56 -04:00
2017-05-08 19:50:23 -04:00
it 'returns true' do
expect(viewer_class.can_render?(blob)).to be_truthy
end
end
context 'when the binaryness does not match' do
let(:blob) { fake_blob(path: 'file.pdf', binary: false) }
it 'returns false' do
expect(viewer_class.can_render?(blob)).to be_falsey
end
end
end
context 'when the file type is supported' do
before do
viewer_class.file_types = %i(license)
2017-05-08 19:50:23 -04:00
viewer_class.binary = false
end
2017-05-08 19:50:23 -04:00
context 'when the binaryness matches' do
let(:blob) { fake_blob(path: 'LICENSE', binary: false) }
it 'returns true' do
expect(viewer_class.can_render?(blob)).to be_truthy
end
end
context 'when the binaryness does not match' do
let(:blob) { fake_blob(path: 'LICENSE', binary: true) }
it 'returns false' do
expect(viewer_class.can_render?(blob)).to be_falsey
end
2017-04-25 16:22:56 -04:00
end
end
2017-05-08 19:50:23 -04:00
context 'when the extension and file type are not supported' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.txt') }
it 'returns false' do
expect(viewer_class.can_render?(blob)).to be_falsey
end
end
end
describe '#collapsed?' do
context 'when the blob size is larger than the collapse limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 2.megabytes) }
it 'returns true' do
expect(viewer.collapsed?).to be_truthy
2017-04-25 16:22:56 -04:00
end
end
context 'when the blob size is smaller than the collapse limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 10.kilobytes) }
it 'returns false' do
expect(viewer.collapsed?).to be_falsey
2017-04-25 16:22:56 -04:00
end
end
end
describe '#too_large?' do
context 'when the blob size is larger than the size limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 10.megabytes) }
it 'returns true' do
expect(viewer.too_large?).to be_truthy
2017-04-25 16:22:56 -04:00
end
end
context 'when the blob size is smaller than the size limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 2.megabytes) }
it 'returns false' do
expect(viewer.too_large?).to be_falsey
2017-04-25 16:22:56 -04:00
end
end
end
describe '#can_expanded?' do
context 'when the blob size is larger than the collapse limit' do
context 'when the blob size is larger than the size limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 10.megabytes) }
it 'returns false' do
expect(viewer.can_expanded?).to be_falsey
2017-04-25 16:22:56 -04:00
end
end
context 'when the blob size is smaller than the size limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 2.megabytes) }
it 'returns true' do
expect(viewer.can_expanded?).to be_truthy
2017-04-25 16:22:56 -04:00
end
end
end
context 'when the blob size is smaller than the collapse limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 10.kilobytes) }
it 'returns false' do
expect(viewer.can_expanded?).to be_falsey
2017-04-25 16:22:56 -04:00
end
end
end
describe '#render_error' do
context 'when the size limit is overridden' do
2017-04-25 16:22:56 -04:00
before do
viewer.expanded = true
2017-04-25 16:22:56 -04:00
end
context 'when the blob size is larger than the size limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 10.megabytes) }
it 'returns :too_large' do
expect(viewer.render_error).to eq(:too_large)
end
end
context 'when the blob size is smaller than the size limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 2.megabytes) }
it 'returns nil' do
expect(viewer.render_error).to be_nil
end
end
end
context 'when the size limit is not overridden' do
context 'when the blob size is larger than the collapse limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 2.megabytes) }
it 'returns :too_large' do
expect(viewer.render_error).to eq(:too_large)
end
end
context 'when the blob size is smaller than the collapse limit' do
2017-04-25 16:22:56 -04:00
let(:blob) { fake_blob(path: 'file.pdf', size: 10.kilobytes) }
it 'returns nil' do
expect(viewer.render_error).to be_nil
end
end
end
end
2017-04-20 19:34:57 -04:00
end