debian-mirror-gitlab/spec/presenters/releases/link_presenter_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
895 B
Ruby
Raw Normal View History

2022-07-23 23:45:48 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Releases::LinkPresenter do
describe '#direct_asset_url' do
let_it_be(:release) { create(:release) }
let(:link) { build(:release_link, release: release, url: url, filepath: filepath) }
let(:url) { 'https://google.com/-/jobs/140463678/artifacts/download' }
let(:presenter) { described_class.new(link) }
subject { presenter.direct_asset_url }
context 'when filepath is provided' do
let(:filepath) { '/bin/bigfile.exe' }
let(:expected_url) do
"http://localhost/#{release.project.namespace.path}/#{release.project.name}" \
"/-/releases/#{release.tag}/downloads/bin/bigfile.exe"
end
it { is_expected.to eq(expected_url) }
end
context 'when filepath is not provided' do
let(:filepath) { nil }
it { is_expected.to eq(url) }
end
end
end