22 lines
842 B
Ruby
22 lines
842 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'ImportFreshdesk', type: :request, set_up: false, authenticated_as: false, required_envs: %w[IMPORT_FRESHDESK_ENDPOINT_SUBDOMAIN] do
|
|
let(:action) { nil }
|
|
let(:endpoint) { "/api/v1/import/freshdesk/#{action}" }
|
|
|
|
describe 'POST /api/v1/import/freshdesk/url_check', :use_vcr do
|
|
let(:action) { 'url_check' }
|
|
|
|
it 'check invalid subdomain' do
|
|
post endpoint, params: { url: 'https://reallybadexample.freshdesk.com' }, as: :json
|
|
expect(json_response['result']).to eq('invalid')
|
|
end
|
|
|
|
it 'check valid subdomain' do
|
|
post endpoint, params: { url: "https://#{ENV['IMPORT_FRESHDESK_ENDPOINT_SUBDOMAIN']}.freshdesk.com" }, as: :json
|
|
expect(json_response['result']).to eq('ok')
|
|
end
|
|
end
|
|
end
|