12345678910111213141516171819202122 |
- # Copyright (C) 2012-2021 Zammad Foundation, http://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
|