123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- require 'rails_helper'
- RSpec.describe 'Public Knowledge Base for guest', type: :system, authenticated_as: false do
- include_context 'basic Knowledge Base'
- before do
- published_answer && draft_answer && internal_answer
- end
- context 'homepage' do
- before { visit help_no_locale_path }
- it('is redirected to primary locale') { expect(page).to have_current_path help_root_path(primary_locale.system_locale.locale) }
- it { expect(page).not_to have_breadcrumb }
- it { expect(page).not_to have_editor_bar }
- it 'shows category' do
- within '.main' do
- expect(page).to have_selector(:link_containing, published_answer.category.translation.title)
- end
- end
- it 'does not show answer' do
- within '.main' do
- expect(page).to have_no_selector(:link_containing, published_answer.translation.title)
- end
- end
- end
- context 'category' do
- before { visit help_category_path(primary_locale.system_locale.locale, category) }
- it { expect(page).to have_breadcrumb }
- it 'shows published answer' do
- within '.main' do
- expect(page).to have_selector(:link_containing, published_answer.translation.title)
- end
- end
- it 'does not show draft answer' do
- within '.main' do
- expect(page).to have_no_selector(:link_containing, draft_answer.translation.title)
- end
- end
- it 'does not show internal answer' do
- within '.main' do
- expect(page).to have_no_selector(:link_containing, internal_answer.translation.title)
- end
- end
- context 'breadcrumb' do
- it { expect(page).to have_breadcrumb.with(2).items }
- it { expect(page).to have_breadcrumb_item(knowledge_base.translation.title).at_index(0) }
- it { expect(page).to have_breadcrumb_item(category.translation.title).at_index(1) }
- end
- end
- context 'answer' do
- before { visit help_answer_path(primary_locale.system_locale.locale, category, published_answer) }
- context 'breadcrumb' do
- it { expect(page).to have_breadcrumb.with(3).items }
- it { expect(page).to have_breadcrumb_item(knowledge_base.translation.title).at_index(0) }
- it { expect(page).to have_breadcrumb_item(category.translation.title).at_index(1) }
- it { expect(page).to have_breadcrumb_item(published_answer.translation.title).at_index(2) }
- end
- end
- context 'wrong locale' do
- before { visit help_root_path(alternative_locale.system_locale.locale) }
- it { expect(page).to have_language_banner }
- context 'switch to correct locale after clicking on language banner' do
- before do
- within '.language-banner' do
- click_on 'activate'
- end
- end
- it { expect(page).not_to have_language_banner }
- end
- end
- context 'offer in another locale' do
- before do
- create(:knowledge_base_translation, kb_locale: alternative_locale)
- visit help_answer_path(alternative_locale.system_locale.locale, category, published_answer)
- end
- it { expect(page).to have_text(published_answer.translation_primary.title) }
- it { expect(page).to have_text('only available in these languages') }
- it { expect(page).to have_no_selector('h1', text: published_answer.translation_primary.title) }
- context 'follow primary locale' do
- before { click_on published_answer.translation_primary.title }
- it { expect(page).to have_selector('h1', text: published_answer.translation_primary.title) }
- end
- end
- context '404' do
- before { visit help_answer_path(primary_locale.system_locale.locale, category, 12_345) }
- it { expect(page).to have_text('Page not found') }
- end
- end
|