2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'User views releases', :js do
|
2020-04-22 19:07:51 +05:30
|
|
|
let_it_be(:project) { create(:project, :repository, :private) }
|
|
|
|
let_it_be(:release) { create(:release, project: project, name: 'The first release' ) }
|
|
|
|
let_it_be(:maintainer) { create(:user) }
|
|
|
|
let_it_be(:guest) { create(:user) }
|
2019-03-02 22:35:43 +05:30
|
|
|
|
|
|
|
before do
|
2020-04-22 19:07:51 +05:30
|
|
|
project.add_maintainer(maintainer)
|
|
|
|
project.add_guest(guest)
|
2019-03-02 22:35:43 +05:30
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
context('when the user is a maintainer') do
|
|
|
|
before do
|
|
|
|
gitlab_sign_in(maintainer)
|
|
|
|
end
|
2019-03-02 22:35:43 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
it 'sees the release' do
|
2019-03-02 22:35:43 +05:30
|
|
|
visit project_releases_path(project)
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
expect(page).to have_content(release.name)
|
|
|
|
expect(page).to have_content(release.tag)
|
|
|
|
expect(page).not_to have_content('Upcoming Release')
|
2019-03-02 22:35:43 +05:30
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
context 'when there is a link as an asset' do
|
|
|
|
let!(:release_link) { create(:release_link, release: release, url: url ) }
|
2020-04-08 14:13:33 +05:30
|
|
|
let(:url) { "#{project.web_url}/-/jobs/1/artifacts/download" }
|
2020-04-22 19:07:51 +05:30
|
|
|
let(:direct_asset_link) { Gitlab::Routing.url_helpers.project_release_url(project, release) << release_link.filepath }
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
it 'sees the link' do
|
|
|
|
visit project_releases_path(project)
|
|
|
|
|
|
|
|
page.within('.js-assets-list') do
|
|
|
|
expect(page).to have_link release_link.name, href: direct_asset_link
|
|
|
|
expect(page).not_to have_content('(external source)')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
context 'when there is a link redirect' do
|
|
|
|
let!(:release_link) { create(:release_link, release: release, name: 'linux-amd64 binaries', filepath: '/binaries/linux-amd64', url: url) }
|
|
|
|
let(:url) { "#{project.web_url}/-/jobs/1/artifacts/download" }
|
2019-03-02 22:35:43 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
it 'sees the link' do
|
|
|
|
visit project_releases_path(project)
|
2019-03-02 22:35:43 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
page.within('.js-assets-list') do
|
|
|
|
expect(page).to have_link release_link.name, href: direct_asset_link
|
|
|
|
expect(page).not_to have_content('(external source)')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when url points to external resource' do
|
|
|
|
let(:url) { 'http://google.com/download' }
|
|
|
|
|
|
|
|
it 'sees that the link is external resource' do
|
|
|
|
visit project_releases_path(project)
|
|
|
|
|
|
|
|
page.within('.js-assets-list') do
|
|
|
|
expect(page).to have_content('(external source)')
|
|
|
|
end
|
2019-03-02 22:35:43 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-09-30 21:07:59 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
context 'with an upcoming release' do
|
|
|
|
let(:tomorrow) { Time.zone.now + 1.day }
|
|
|
|
let!(:release) { create(:release, project: project, released_at: tomorrow ) }
|
2019-09-30 21:07:59 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
it 'sees the upcoming tag' do
|
|
|
|
visit project_releases_path(project)
|
|
|
|
|
|
|
|
expect(page).to have_content('Upcoming Release')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a tag containing a slash' do
|
|
|
|
it 'sees the release' do
|
|
|
|
release = create :release, :with_evidence, project: project, tag: 'debian/2.4.0-1'
|
|
|
|
visit project_releases_path(project)
|
2019-09-30 21:07:59 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
expect(page).to have_content(release.name)
|
|
|
|
expect(page).to have_content(release.tag)
|
|
|
|
end
|
2019-09-30 21:07:59 +05:30
|
|
|
end
|
|
|
|
end
|
2020-01-12 00:16:45 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
context('when the user is a guest') do
|
|
|
|
before do
|
|
|
|
gitlab_sign_in(guest)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders release info except for Git-related data' do
|
2020-01-12 00:16:45 +05:30
|
|
|
visit project_releases_path(project)
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
within('.release-block') do
|
|
|
|
expect(page).to have_content(release.description)
|
|
|
|
|
|
|
|
# The following properties (sometimes) include Git info,
|
|
|
|
# so they are not rendered for Guest users
|
|
|
|
expect(page).not_to have_content(release.name)
|
|
|
|
expect(page).not_to have_content(release.tag)
|
|
|
|
expect(page).not_to have_content(release.commit.short_id)
|
|
|
|
end
|
2020-01-12 00:16:45 +05:30
|
|
|
end
|
|
|
|
end
|
2019-03-02 22:35:43 +05:30
|
|
|
end
|