4cb747fdb6
Test helpers are separated between two files: spec_helper and rails_helper. This separation is meant to allow tests that do not require Rails (like testing standalone libs) to boot faster. The spec_helper file is always loaded, through `--require spec_helper` in the `.rspec` config file. When needed, the rails_helper file is expected to be required manually. This is fine, but: - Many test files have a redundant `require 'spec_helper'` line; - Many test files should require `rails_helper`, but don't. Not requiring `rails_helper` will cause the Rails-concerned section of the test environment not to be configured–which may cause subtle bugs (like the test database not being properly initialized). Moreover, Spring loads all the Rails files on preloading anyway. So the gains from using only `spec_helper` are thin. To streamline this process, this commit: - Configures `.rspec` to require `rails_helper` by default; - Remove all manual requires to spec_helper or rails_helper. Reference: https://stackoverflow.com/questions/24145329/how-is-spec-rails-helper-rb-different-from-spec-spec-helper-rb-do-i-need-it
85 lines
3.1 KiB
Ruby
85 lines
3.1 KiB
Ruby
describe 'users/dossiers/index.html.haml', type: :view do
|
||
let(:user) { create(:user) }
|
||
let(:dossier_brouillon) { create(:dossier, state: Dossier.states.fetch(:brouillon), user: user) }
|
||
let(:dossier_en_construction) { create(:dossier, state: Dossier.states.fetch(:en_construction), user: user) }
|
||
let(:user_dossiers) { [dossier_brouillon, dossier_en_construction] }
|
||
let(:dossiers_invites) { [] }
|
||
let(:current_tab) { 'mes-dossiers' }
|
||
|
||
before do
|
||
allow(view).to receive(:new_demarche_url).and_return('#')
|
||
allow(controller).to receive(:current_user) { user }
|
||
assign(:user_dossiers, Kaminari.paginate_array(user_dossiers).page(1))
|
||
assign(:dossiers_invites, Kaminari.paginate_array(dossiers_invites).page(1))
|
||
assign(:dossiers, Kaminari.paginate_array(user_dossiers).page(1))
|
||
assign(:current_tab, current_tab)
|
||
render
|
||
end
|
||
|
||
it 'affiche la liste des dossiers' do
|
||
expect(rendered).to have_selector('.dossiers-table tbody tr', count: 2)
|
||
end
|
||
|
||
it 'affiche les informations des dossiers' do
|
||
dossier = user_dossiers.first
|
||
expect(rendered).to have_text(dossier_brouillon.id.to_s)
|
||
expect(rendered).to have_text(dossier_brouillon.procedure.libelle)
|
||
expect(rendered).to have_link(dossier_brouillon.id.to_s, href: brouillon_dossier_path(dossier_brouillon))
|
||
|
||
expect(rendered).to have_text(dossier_en_construction.id.to_s)
|
||
expect(rendered).to have_text(dossier_en_construction.procedure.libelle)
|
||
expect(rendered).to have_link(dossier_en_construction.id.to_s, href: dossier_path(dossier_en_construction))
|
||
end
|
||
|
||
context 'quand il n’y a aucun dossier' do
|
||
let(:user_dossiers) { [] }
|
||
let(:dossiers_invites) { [] }
|
||
|
||
it 'n’affiche pas la table' do
|
||
expect(rendered).not_to have_selector('.dossiers-table')
|
||
end
|
||
|
||
it 'affiche un message' do
|
||
expect(rendered).to have_text('Aucun dossier')
|
||
end
|
||
end
|
||
|
||
context 'quand il n’y a pas de dossiers invités' do
|
||
let(:dossiers_invites) { [] }
|
||
|
||
it 'affiche un titre adapté' do
|
||
expect(rendered).to have_selector('h1', text: 'Mes dossiers')
|
||
end
|
||
|
||
it 'n’affiche pas la barre d’onglets' do
|
||
expect(rendered).not_to have_selector('ul.tabs')
|
||
end
|
||
end
|
||
|
||
context 'quand il y a des dossiers invités' do
|
||
let(:dossiers_invites) { create_list(:dossier, 1) }
|
||
|
||
it 'affiche un titre adapté' do
|
||
expect(rendered).to have_selector('h1', text: 'Dossiers')
|
||
end
|
||
|
||
it 'affiche la barre d’onglets' do
|
||
expect(rendered).to have_selector('ul.tabs')
|
||
expect(rendered).to have_selector('ul.tabs li', count: 2)
|
||
expect(rendered).to have_selector('ul.tabs li.active', count: 1)
|
||
end
|
||
end
|
||
|
||
context "quand le user n'a aucun feedback" do
|
||
it "affiche le formulaire de satisfaction" do
|
||
expect(rendered).to have_selector('#user-satisfaction', text: 'Que pensez-vous de la facilité d\'utilisation de ce service ?')
|
||
end
|
||
end
|
||
|
||
context "quand le user a un feedback" do
|
||
let(:user) { create(:user, feedbacks: [build(:feedback)]) }
|
||
it "n'affiche pas le formulaire de satisfaction" do
|
||
expect(rendered).to_not have_selector('#user-satisfaction')
|
||
end
|
||
end
|
||
end
|