debian-mirror-gitlab/spec/lib/atlassian/jira_connect_spec.rb

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

38 lines
995 B
Ruby
Raw Normal View History

2022-05-07 20:08:51 +05:30
# frozen_string_literal: true
2023-05-27 22:25:52 +05:30
require 'spec_helper'
2022-05-07 20:08:51 +05:30
2023-03-04 22:38:38 +05:30
RSpec.describe Atlassian::JiraConnect, feature_category: :integrations do
2022-05-07 20:08:51 +05:30
describe '.app_name' do
subject { described_class.app_name }
it { is_expected.to eq('GitLab for Jira (localhost)') }
end
describe '.app_key' do
subject(:app_key) { described_class.app_key }
it { is_expected.to eq('gitlab-jira-connect-localhost') }
context 'host name is too long' do
before do
hostname = 'x' * 100
stub_config(gitlab: { host: hostname })
end
it 'truncates the key to be no longer than 64 characters', :aggregate_failures do
expect(app_key).to eq('gitlab-jira-connect-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
end
end
2023-03-04 22:38:38 +05:30
context 'with jira_connect_proxy_url setting' do
before do
stub_application_setting(jira_connect_proxy_url: 'https://example.com')
end
it { is_expected.to eq('gitlab-jira-connect-example.com') }
end
2022-05-07 20:08:51 +05:30
end
end