debian-mirror-gitlab/spec/lib/gitlab/github_import/importer/releases_importer_spec.rb

151 lines
4.2 KiB
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::GithubImport::Importer::ReleasesImporter do
2018-03-17 18:26:18 +05:30
let(:project) { create(:project) }
let(:client) { double(:client) }
let(:importer) { described_class.new(project, client) }
2019-12-21 20:55:43 +05:30
let(:github_release_name) { 'Initial Release' }
2018-03-17 18:26:18 +05:30
let(:created_at) { Time.new(2017, 1, 1, 12, 00) }
2019-10-12 21:52:04 +05:30
let(:released_at) { Time.new(2017, 1, 1, 12, 00) }
2018-03-17 18:26:18 +05:30
2019-12-21 20:55:43 +05:30
let(:github_release) do
2018-03-17 18:26:18 +05:30
double(
2019-12-21 20:55:43 +05:30
:github_release,
2018-03-17 18:26:18 +05:30
tag_name: '1.0',
2019-12-21 20:55:43 +05:30
name: github_release_name,
2018-03-17 18:26:18 +05:30
body: 'This is my release',
created_at: created_at,
2019-10-12 21:52:04 +05:30
published_at: released_at
2018-03-17 18:26:18 +05:30
)
end
describe '#execute' do
it 'imports the releases in bulk' do
release_hash = {
tag_name: '1.0',
description: 'This is my release',
created_at: created_at,
2019-12-21 20:55:43 +05:30
updated_at: created_at,
2019-10-12 21:52:04 +05:30
released_at: released_at
2018-03-17 18:26:18 +05:30
}
expect(importer).to receive(:build_releases).and_return([release_hash])
expect(importer).to receive(:bulk_insert).with(Release, [release_hash])
importer.execute
end
2019-12-21 20:55:43 +05:30
it 'imports draft releases' do
release_double = double(
name: 'Test',
body: 'This is description',
tag_name: '1.0',
description: 'This is my release',
created_at: created_at,
updated_at: created_at,
published_at: nil
)
expect(importer).to receive(:each_release).and_return([release_double])
expect { importer.execute }.to change { Release.count }.by(1)
end
2018-03-17 18:26:18 +05:30
end
describe '#build_releases' do
2019-12-21 20:55:43 +05:30
it 'returns an Array containing release rows' do
expect(importer).to receive(:each_release).and_return([github_release])
2018-03-17 18:26:18 +05:30
rows = importer.build_releases
expect(rows.length).to eq(1)
expect(rows[0][:tag]).to eq('1.0')
end
it 'does not create releases that already exist' do
create(:release, project: project, tag: '1.0', description: '1.0')
2019-12-21 20:55:43 +05:30
expect(importer).to receive(:each_release).and_return([github_release])
2018-03-17 18:26:18 +05:30
expect(importer.build_releases).to be_empty
end
it 'uses a default release description if none is provided' do
2019-12-21 20:55:43 +05:30
expect(github_release).to receive(:body).and_return('')
expect(importer).to receive(:each_release).and_return([github_release])
2018-03-17 18:26:18 +05:30
release = importer.build_releases.first
expect(release[:description]).to eq('Release for tag 1.0')
end
end
describe '#build' do
2019-12-21 20:55:43 +05:30
let(:release_hash) { importer.build(github_release) }
2018-03-17 18:26:18 +05:30
it 'returns the attributes of the release as a Hash' do
expect(release_hash).to be_an_instance_of(Hash)
end
context 'the returned Hash' do
it 'includes the tag name' do
expect(release_hash[:tag]).to eq('1.0')
end
it 'includes the release description' do
expect(release_hash[:description]).to eq('This is my release')
end
it 'includes the project ID' do
expect(release_hash[:project_id]).to eq(project.id)
end
it 'includes the created timestamp' do
expect(release_hash[:created_at]).to eq(created_at)
end
it 'includes the updated timestamp' do
2019-12-21 20:55:43 +05:30
expect(release_hash[:updated_at]).to eq(created_at)
end
it 'includes the release name' do
expect(release_hash[:name]).to eq(github_release_name)
2018-03-17 18:26:18 +05:30
end
end
end
describe '#each_release' do
2019-12-21 20:55:43 +05:30
let(:github_release) { double(:github_release) }
2018-03-17 18:26:18 +05:30
before do
allow(project).to receive(:import_source).and_return('foo/bar')
allow(client)
.to receive(:releases)
.with('foo/bar')
2019-12-21 20:55:43 +05:30
.and_return([github_release].to_enum)
2018-03-17 18:26:18 +05:30
end
it 'returns an Enumerator' do
expect(importer.each_release).to be_an_instance_of(Enumerator)
end
it 'yields every release to the Enumerator' do
2019-12-21 20:55:43 +05:30
expect(importer.each_release.next).to eq(github_release)
2018-03-17 18:26:18 +05:30
end
end
describe '#description_for' do
it 'returns the description when present' do
2019-12-21 20:55:43 +05:30
expect(importer.description_for(github_release)).to eq(github_release.body)
2018-03-17 18:26:18 +05:30
end
it 'returns a generated description when one is not present' do
2019-12-21 20:55:43 +05:30
allow(github_release).to receive(:body).and_return('')
2018-03-17 18:26:18 +05:30
2019-12-21 20:55:43 +05:30
expect(importer.description_for(github_release)).to eq('Release for tag 1.0')
2018-03-17 18:26:18 +05:30
end
end
end