Agile Web Development with Rails, Edition 4
10.3 Iteration E3: Finishing the Cart
10.1 Iteration E1: Creating a Smarter Cart
10.2 Iteration E2: Handling Errors
Log errors and show them on the screen.
Rescue error: log, flash, and redirect.
edit app/controllers/carts_controller.rb
class CartsController < ApplicationController
before_action :set_cart, only: [:show, :edit, :update, :destroy]
rescue_from ActiveRecord::RecordNotFound, with: :invalid_cart
# GET /carts
# ...
private
# ...
def invalid_cart
logger.error "Attempt to access invalid cart #{params[:id]}"
redirect_to store_url, notice: 'Invalid cart'
end
end
Reproduce the error.
get /carts/wibble
You are being
redirected .
get http://localhost:3000/
Pragmatic Bookshelf
Invalid cart
Your Pragmatic Catalog
CoffeeScript
CoffeeScript is JavaScript done right. It provides all of JavaScript's
functionality wrapped in a cleaner, more succinct syntax. In the first
book on this exciting new language, CoffeeScript guru Trevor Burnham
shows you how to hold onto all the power and flexibility of JavaScript
while writing clearer, cleaner, and safer code.
Programming Ruby 1.9
Ruby is the fastest growing and most exciting dynamic language
out there. If you need to get working programs delivered fast,
you should add Ruby to your toolbox.
Rails Test Prescriptions
Rails Test Prescriptions is a comprehensive guide to testing
Rails applications, covering Test-Driven Development from both a
theoretical perspective (why to test) and from a practical perspective
(how to test effectively). It covers the core Rails testing tools and
procedures for Rails 2 and Rails 3, and introduces popular add-ons,
including Cucumber, Shoulda, Machinist, Mocha, and Rcov.
Inspect the log.
tail -25 log/development.log
ActiveRecord::RecordNotFound (Couldn't find Cart with id=wibble):
app/controllers/carts_controller.rb:67:in `set_cart'
Rendered /home/rubys/git/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
Rendered /home/rubys/git/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/_trace.erb (51.3ms)
Rendered /home/rubys/git/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
Rendered /home/rubys/git/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (73.1ms)
Started GET "/carts/wibble" for 192.168.1.100 at 2013-02-24 10:19:26 -0500
Processing by CartsController#show as HTML
Parameters: {"id"=>"wibble"}
Cart Load (0.3ms) SELECT "carts".* FROM "carts" WHERE "carts"."id" = ? LIMIT 1 [["id", "wibble"]]
Attempt to access invalid cart wibble
Redirected to http://localhost:3000/
Completed 302 Found in 10ms (ActiveRecord: 0.8ms)
Started GET "/" for 192.168.1.100 at 2013-02-24 10:19:27 -0500
Processing by StoreController#index as HTML
Product Load (0.3ms) SELECT "products".* FROM "products" ORDER BY updated_at DESC LIMIT 1
Product Load (0.4ms) SELECT "products".* FROM "products" ORDER BY "products"."title" ASC
Rendered store/index.html.erb within layouts/application (33.9ms)
Completed 200 OK in 56ms (Views: 46.6ms | ActiveRecord: 1.2ms)
Limit access to product_id
edit app/controllers/line_items_controller.rb
# Never trust parameters from the scary internet, only allow the white
# list through.
def line_item_params
params.require(:line_item).permit(:product_id)
end
rake test:controllers
Run options: --seed 42080
# Running tests:
......................
Finished tests in 1.388905s, 15.8398 tests/s, 31.6796 assertions/s.
22 tests, 44 assertions, 0 failures, 0 errors, 0 skips
Inspect the log.
grep -B 8 -A 7 "Unpermitted parameters" log/test.log
-----------------------------------------------------
LineItemsControllerTest: test_should_update_line_item
-----------------------------------------------------
(0.1ms) begin transaction
LineItem Load (0.2ms) SELECT "line_items".* FROM "line_items" WHERE "line_items"."id" = ? LIMIT 1 [["id", 980190962]]
Processing by LineItemsController#update as HTML
Parameters: {"line_item"=>{"cart_id"=>nil, "product_id"=>nil}, "id"=>"980190962"}
LineItem Load (0.1ms) SELECT "line_items".* FROM "line_items" WHERE "line_items"."id" = ? LIMIT 1 [["id", "980190962"]]
Unpermitted parameters: cart_id
(0.1ms) SAVEPOINT active_record_1
(0.2ms) RELEASE SAVEPOINT active_record_1
Redirected to http://test.host/line_items/980190962
Completed 302 Found in 5ms (ActiveRecord: 0.4ms)
(0.1ms) rollback transaction
--------------------------------------------------
ProductsControllerTest: test_should_create_product
edit test/controllers/line_items_controller_test.rb
test "should update line_item" do
patch :update, id: @line_item, line_item: { product_id: @line_item.product_id }
assert_redirected_to line_item_path(assigns(:line_item))
end
rake log:clear LOGS=test
rake test:controllers
Run options: --seed 9087
# Running tests:
......................
Finished tests in 0.968378s, 22.7184 tests/s, 45.4368 assertions/s.
22 tests, 44 assertions, 0 failures, 0 errors, 0 skips
grep "Unpermitted parameters" log/test.log | wc -l
0
10.3 Iteration E3: Finishing the Cart
10.1 Iteration E1: Creating a Smarter Cart