1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe ImportUrlParams do
let(:import_url_params) do
controller = double('controller', params: params).extend(described_class)
controller.import_url_params
end
context 'empty URL' do
let(:params) do
ActionController::Parameters.new(project: {
title: 'Test'
})
end
it 'returns empty hash' do
expect(import_url_params).to eq({})
end
end
context 'url and password separately provided' do
let(:params) do
ActionController::Parameters.new(project: {
import_url: 'https://url.com',
import_url_user: 'user', import_url_password: 'password'
})
end
describe '#import_url_params' do
it 'returns hash with import_url' do
expect(import_url_params).to eq(
import_url: "https://user:password@url.com",
import_type: 'git'
)
end
end
end
context 'url with provided empty credentials' do
let(:params) do
ActionController::Parameters.new(project: {
import_url: 'https://user:password@url.com',
import_url_user: '', import_url_password: ''
})
end
describe '#import_url_params' do
it 'does not change the url' do
expect(import_url_params).to eq(
import_url: "https://user:password@url.com",
import_type: 'git'
)
end
end
end
context 'url with provided mixed credentials' do
let(:params) do
ActionController::Parameters.new(project: {
import_url: 'https://user@url.com',
import_url_user: '', import_url_password: 'password'
})
end
describe '#import_url_params' do
it 'returns import_url built from both url and hash credentials' do
expect(import_url_params).to eq(
import_url: 'https://user:password@url.com',
import_type: 'git'
)
end
end
end
end
|