2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 15:57:06 +00:00
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe 'RobotsTxt', type: :request do
|
2021-06-02 09:06:18 +00:00
|
|
|
shared_examples 'returns default robot instructions' do
|
|
|
|
it 'returns default robot instructions' do
|
|
|
|
expect(response.body).to match(%r{^Allow: /help/$}).and match(%r{^Disallow: /$})
|
|
|
|
end
|
|
|
|
end
|
2021-06-01 15:57:06 +00:00
|
|
|
|
|
|
|
context 'when no Knowledge Base exists' do
|
|
|
|
|
|
|
|
before do
|
|
|
|
get '/robots.txt'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns success' do
|
|
|
|
expect(response).to have_http_status(:ok)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns text' do
|
2021-06-02 09:06:18 +00:00
|
|
|
expect(response.content_type).to start_with('text/plain')
|
2021-06-01 15:57:06 +00:00
|
|
|
end
|
|
|
|
|
2021-06-02 09:06:18 +00:00
|
|
|
include_examples 'returns default robot instructions'
|
2021-06-01 15:57:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when Knowledge Base exists' do
|
|
|
|
|
|
|
|
let(:custom_address) { nil }
|
|
|
|
let(:server_name) { Setting.get('fqdn') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
create(:knowledge_base, custom_address: custom_address)
|
|
|
|
get '/robots.txt', headers: { SERVER_NAME: server_name }
|
|
|
|
end
|
|
|
|
|
2021-06-02 09:06:18 +00:00
|
|
|
include_examples 'returns default robot instructions'
|
2021-06-01 15:57:06 +00:00
|
|
|
|
|
|
|
context 'when custom path is configured' do
|
|
|
|
let(:custom_address) { '/knowledge_base' }
|
|
|
|
|
|
|
|
it 'returns rules with custom path' do
|
|
|
|
expect(response.body).to match(%r{^Allow: /knowledge_base$}).and match(%r{^Disallow: /$})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when custom domain is configured' do
|
|
|
|
let(:custom_address) { 'kb.com/knowledge_base' }
|
|
|
|
|
2021-06-02 15:16:04 +00:00
|
|
|
context 'when requesting main domain' do
|
2021-06-02 09:06:18 +00:00
|
|
|
include_examples 'returns default robot instructions'
|
2021-06-01 15:57:06 +00:00
|
|
|
end
|
|
|
|
|
2021-06-02 15:16:04 +00:00
|
|
|
context 'when requesting KB domain' do
|
2021-06-01 15:57:06 +00:00
|
|
|
let(:server_name) { 'kb.com' }
|
|
|
|
|
|
|
|
it 'returns domain rules' do
|
|
|
|
expect(response.body).to match(%r{^Allow: /$}).and satisfy { |val| !val.match?(%r{^Disallow}) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|