2019-07-03 23:33:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::GlobalId do
|
|
|
|
describe '.build' do
|
2020-02-20 13:08:51 -05:00
|
|
|
let_it_be(:object) { create(:issue) }
|
2019-07-03 23:33:14 -04:00
|
|
|
|
|
|
|
it 'returns a standard GlobalId if only object is passed' do
|
|
|
|
expect(described_class.build(object).to_s).to eq(object.to_global_id.to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a GlobalId from params' do
|
|
|
|
expect(described_class.build(model_name: 'MyModel', id: 'myid').to_s).to eq(
|
|
|
|
'gid://gitlab/MyModel/myid'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a GlobalId from object and `id` param' do
|
|
|
|
expect(described_class.build(object, id: 'myid').to_s).to eq(
|
|
|
|
'gid://gitlab/Issue/myid'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a GlobalId from object and `model_name` param' do
|
|
|
|
expect(described_class.build(object, model_name: 'MyModel').to_s).to eq(
|
|
|
|
"gid://gitlab/MyModel/#{object.id}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns an error if model_name and id are not able to be determined' do
|
|
|
|
expect { described_class.build(id: 'myid') }.to raise_error(URI::InvalidComponentError)
|
|
|
|
expect { described_class.build(model_name: 'MyModel') }.to raise_error(URI::InvalidComponentError)
|
|
|
|
expect { described_class.build }.to raise_error(URI::InvalidComponentError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|