specs: properly use xhr: true
in javascript requests
This avoids an unexpected `ActionController::InvalidCrossOriginRequest` exception to be raised when the forgery protection is disabled.
This commit is contained in:
parent
c20b8183a9
commit
5908b8019a
4 changed files with 26 additions and 28 deletions
|
@ -12,7 +12,7 @@ describe AttachmentsController, type: :controller do
|
||||||
|
|
||||||
subject do
|
subject do
|
||||||
request.headers['HTTP_REFERER'] = dossier_url(dossier)
|
request.headers['HTTP_REFERER'] = dossier_url(dossier)
|
||||||
get :show, params: { id: attachment.id, signed_id: signed_id }, format: format
|
get :show, params: { id: attachment.id, signed_id: signed_id }, format: format, xhr: (format == :js)
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when authenticated' do
|
context 'when authenticated' do
|
||||||
|
|
|
@ -116,21 +116,19 @@ describe Champs::CarteController, type: :controller do
|
||||||
describe 'GET #index' do
|
describe 'GET #index' do
|
||||||
render_views
|
render_views
|
||||||
|
|
||||||
|
before do
|
||||||
|
get :index, params: params, format: :js, xhr: true
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'without focus' do
|
||||||
let(:params) do
|
let(:params) do
|
||||||
{ champ_id: champ.id }
|
{ champ_id: champ.id }
|
||||||
end
|
end
|
||||||
|
|
||||||
before do
|
it 'updates the list' do
|
||||||
request.accept = "application/javascript"
|
|
||||||
request.content_type = "application/javascript"
|
|
||||||
get :index, params: params
|
|
||||||
end
|
|
||||||
|
|
||||||
context "update list" do
|
|
||||||
it {
|
|
||||||
expect(response.body).not_to include("DS.fire('map:feature:focus'")
|
expect(response.body).not_to include("DS.fire('map:feature:focus'")
|
||||||
expect(response.status).to eq 200
|
expect(response.status).to eq 200
|
||||||
}
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context "update list and focus" do
|
context "update list and focus" do
|
||||||
|
@ -141,10 +139,10 @@ describe Champs::CarteController, type: :controller do
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
it {
|
it 'updates the list and focuses the map' do
|
||||||
expect(response.body).to include("DS.fire('map:feature:focus'")
|
expect(response.body).to include("DS.fire('map:feature:focus'")
|
||||||
expect(response.status).to eq 200
|
expect(response.status).to eq 200
|
||||||
}
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -22,9 +22,9 @@ describe Champs::DossierLinkController, type: :controller do
|
||||||
let(:dossier_id) { dossier.id }
|
let(:dossier_id) { dossier.id }
|
||||||
|
|
||||||
context 'when the dossier exist' do
|
context 'when the dossier exist' do
|
||||||
before {
|
before do
|
||||||
get :show, params: params, format: 'js'
|
get :show, params: params, format: :js, xhr: true
|
||||||
}
|
end
|
||||||
|
|
||||||
it 'renders the procedure name' do
|
it 'renders the procedure name' do
|
||||||
expect(response.body).to include('Dossier en brouillon')
|
expect(response.body).to include('Dossier en brouillon')
|
||||||
|
@ -36,9 +36,9 @@ describe Champs::DossierLinkController, type: :controller do
|
||||||
|
|
||||||
context 'when the dossier does not exist' do
|
context 'when the dossier does not exist' do
|
||||||
let(:dossier_id) { '13' }
|
let(:dossier_id) { '13' }
|
||||||
before {
|
before do
|
||||||
get :show, params: params, format: 'js'
|
get :show, params: params, format: :js, xhr: true
|
||||||
}
|
end
|
||||||
|
|
||||||
it 'renders error message' do
|
it 'renders error message' do
|
||||||
expect(response.body).to include('Ce dossier est inconnu')
|
expect(response.body).to include('Ce dossier est inconnu')
|
||||||
|
@ -48,9 +48,9 @@ describe Champs::DossierLinkController, type: :controller do
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when user is not connected' do
|
context 'when user is not connected' do
|
||||||
before {
|
before do
|
||||||
get :show, params: { position: '1' }, format: 'js'
|
get :show, params: { position: '1' }, format: :js, xhr: true
|
||||||
}
|
end
|
||||||
|
|
||||||
it { expect(response.code).to eq('401') }
|
it { expect(response.code).to eq('401') }
|
||||||
end
|
end
|
||||||
|
|
|
@ -38,7 +38,7 @@ describe Champs::SiretController, type: :controller do
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when the SIRET is empty' do
|
context 'when the SIRET is empty' do
|
||||||
subject! { get :show, params: params, format: 'js' }
|
subject! { get :show, params: params, format: :js, xhr: true }
|
||||||
|
|
||||||
it 'clears the etablissement and SIRET on the model' do
|
it 'clears the etablissement and SIRET on the model' do
|
||||||
champ.reload
|
champ.reload
|
||||||
|
@ -55,7 +55,7 @@ describe Champs::SiretController, type: :controller do
|
||||||
context 'when the SIRET is invalid' do
|
context 'when the SIRET is invalid' do
|
||||||
let(:siret) { '1234' }
|
let(:siret) { '1234' }
|
||||||
|
|
||||||
subject! { get :show, params: params, format: 'js' }
|
subject! { get :show, params: params, format: :js, xhr: true }
|
||||||
|
|
||||||
it 'clears the etablissement and SIRET on the model' do
|
it 'clears the etablissement and SIRET on the model' do
|
||||||
champ.reload
|
champ.reload
|
||||||
|
@ -72,7 +72,7 @@ describe Champs::SiretController, type: :controller do
|
||||||
let(:siret) { '82161143100015' }
|
let(:siret) { '82161143100015' }
|
||||||
let(:api_etablissement_status) { 503 }
|
let(:api_etablissement_status) { 503 }
|
||||||
|
|
||||||
subject! { get :show, params: params, format: 'js' }
|
subject! { get :show, params: params, format: :js, xhr: true }
|
||||||
|
|
||||||
it 'clears the etablissement and SIRET on the model' do
|
it 'clears the etablissement and SIRET on the model' do
|
||||||
champ.reload
|
champ.reload
|
||||||
|
@ -89,7 +89,7 @@ describe Champs::SiretController, type: :controller do
|
||||||
let(:siret) { '00000000000000' }
|
let(:siret) { '00000000000000' }
|
||||||
let(:api_etablissement_status) { 404 }
|
let(:api_etablissement_status) { 404 }
|
||||||
|
|
||||||
subject! { get :show, params: params, format: 'js' }
|
subject! { get :show, params: params, format: :js, xhr: true }
|
||||||
|
|
||||||
it 'clears the etablissement and SIRET on the model' do
|
it 'clears the etablissement and SIRET on the model' do
|
||||||
champ.reload
|
champ.reload
|
||||||
|
@ -107,7 +107,7 @@ describe Champs::SiretController, type: :controller do
|
||||||
let(:api_etablissement_status) { 200 }
|
let(:api_etablissement_status) { 200 }
|
||||||
let(:api_etablissement_body) { File.read('spec/fixtures/files/api_entreprise/etablissements.json') }
|
let(:api_etablissement_body) { File.read('spec/fixtures/files/api_entreprise/etablissements.json') }
|
||||||
|
|
||||||
subject! { get :show, params: params, format: 'js' }
|
subject! { get :show, params: params, format: :js, xhr: true }
|
||||||
|
|
||||||
it 'populates the etablissement and SIRET on the model' do
|
it 'populates the etablissement and SIRET on the model' do
|
||||||
champ.reload
|
champ.reload
|
||||||
|
@ -120,7 +120,7 @@ describe Champs::SiretController, type: :controller do
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when user is not signed in' do
|
context 'when user is not signed in' do
|
||||||
subject! { get :show, params: { position: '1' }, format: 'js' }
|
subject! { get :show, params: { position: '1' }, format: :js, xhr: true }
|
||||||
|
|
||||||
it { expect(response.code).to eq('401') }
|
it { expect(response.code).to eq('401') }
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue