2013-08-02 15 views
17

Ho un'applicazione Rails4 con un 'PagesController'.Come verificare lo stato del rendering: 404 con Rails4 e RSpec quando si utilizza rescue_from

Il metodo show genera un'eccezione personalizzata 'PageNotFoundError' quando una pagina non viene trovata.

Sulla parte superiore del controller ho definito rescue_from PageNotFoundError, with: :render_not_found

render not found è un metodo privato di PagesController e si presenta come:

def render_not_found 
    flash[:alert]=t(:page_does_not_exists, title: params[:id]) 
    @pages = Page.all 
    render :index, status: :not_found #404 
end 

Le guide-log-in sviluppo-mode mostra:

Started GET "/pages/readmef" for 127.0.0.1 at 2013-08-02 23:11:35 +0200 
Processing by PagesController#show as HTML 
    Parameters: {"id"=>"readmef"} 
    .. 
    Completed 404 Not Found in 14ms (Views: 12.0ms) 

Quindi, giunge a mio: status =>: not_found funziona, finora.

Quando faccio curl -v http://0.0.0.0:3000/pages/readmef tronchi ricciolo

curl -v http://localhost:3000/pages/readmef 
* About to connect() to localhost port 3000 (#0) 
* Trying 127.0.0.1... 
* connected 
* Connected to localhost (127.0.0.1) port 3000 (#0) 
> GET /pages/readmef HTTP/1.1 
> User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 OpenSSL/0.9.8x zlib/1.2.5 
> Host: localhost:3000 
> Accept: */* 
> 
< HTTP/1.1 404 Not Found 
< X-Frame-Options: SAMEORIGIN 

ma il seguente test con RSpec fallisce:

it 'renders an error if page not found' do 
    visit page_path('not_existing_page_321') 
    expect(response.status).to eq(404) 
    within('.alert-error') do 
     page.should have_content('Page not_existing_page_321 doesn\'t exist') 
    end 
    end 

    1) PagesController renders an error if page not found 
    Failure/Error: expect(response.status).to eq(404) 

     expected: 404 
      got: 200 

Tutto sembra funzionare bene ed anche il test.log dice 404

$ tail -f log/test.log 
Started GET "/pages/not_existing_page_321" for 127.0.0.1 at 2013-08-03 09:48:13 +0200 
Processing by PagesController#show as HTML 
    Parameters: {"id"=>"not_existing_page_321"} 
    Rendered pages/_page.haml (0.8ms) 
    Rendered layouts/_navigation.haml (0.6ms) 
    Rendered layouts/_messages.haml (0.2ms) 
    Rendered layouts/_locales.haml (0.3ms) 
    Rendered layouts/_footer.haml (0.6ms) 
Completed 404 Not Found in 6ms (Views: 4.5ms) 

Ho provato diversi server, WebRICK, Thin, unicorno. Tutto funziona come previsto in modalità di sviluppo e produzione. Anche il test.log è corretto ma il test fallisce.

Qualcuno può dirmi perché il test dice 200 anziché 404?

+1

È arricciato 'pagine/README', non' pagine/readmef'. E non hai incluso il tuo codice di test. – sevenseacat

+0

_blushing_ @sevenseacat alla tua destra Non ho visto la f mancante nel comando di arricciatura. E infatti curl funziona bene e risponde con 404. _Io dovrei davvero usare gli occhiali:/Ma le specifiche ancora non funzionano. L'ho aggiunto sopra. – Nockenfell

+0

@sevenseacat Grazie per il tuo commento. Mi porta al vero problema. Ho formulato di nuovo la domanda. – Nockenfell

risposta

12

Anche se non sono molto contento di questa soluzione, almeno questo è un lavoro intorno:

ho Splited il test in due specifiche distinte. Uno per testare il codice di risposta 404 (con GET invece di visitare) e un secondo per testare l'avviso. Il secondo test è necessario perché get non esegue il rendering della vista, anche se render_views è definito in cima al file spec.

it 'response with 404 if page not found' do 
    get :show, { controller: 'pages', id: 'not_existing_page_321' } 
    expect(response.status).to eq(404) 
    end 

    it 'renders an error-message if page not found and shows index' do 
    visit page_path('page_not_found') 
    within '.alert-error' do 
     page.should have_content("Page page_not_found doesn't exist") 
    end 
    end 
7

Il problema qui è che si sta confondendo Capybara caratteristica test e test del controller RSpec. visit è un metodo fornito da Capybara e get/response fornito dai test del controller RSpec - non è possibile utilizzarli insieme.

Per testare questo come un singolo test di controllo RSpec si può fare:

it "returns a not found response" do 
    get :show, { id: 'not_existing_page_321' } 
    expect(response.status).to eq(404) 
    expect(response.text).to match(/Page page_not_found doesn't exist/) 
end 

(N.B.La linea get è diverso da quello che hai postato - Non ho incluso il controller param come se si mette questo in spec/controllers/pages_controller_spec.rb in cui essa appartiene non è necessario che)

O come un unico Capybara caratteristica di prova:

it "renders a not found response" do 
    visit page_path('page_not_found') 
    expect(page.status_code).to eq(404) 
    within '.alert-error' do 
    expect(page).to have_content("Page page_not_found doesn't exist") 
    end 
end 
9

un altro approccio con RSpec 3+ sarebbe quello di testare una deroga:

it 'response with 404 if page not found' do 
    expect{ get :show, :id => 'bad_id' }.to raise_error(ActionController::RoutingError) 
end