aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/required_params_test.rb
blob: 661bcb3945450d323d8a5ce1df414850efc72fdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require 'abstract_unit'

class BooksController < ActionController::Base
  def create
    params.require(:book).require(:name)
    head :ok
  end
end

class ActionControllerRequiredParamsTest < ActionController::TestCase
  tests BooksController

  test "missing required parameters will raise exception" do
    post :create, { magazine: { name: "Mjallo!" } }
    assert_response :bad_request

    post :create, { book: { title: "Mjallo!" } }
    assert_response :bad_request
  end

  test "required parameters that are present will not raise" do
    post :create, { book: { name: "Mjallo!" } }
    assert_response :ok
  end

  test "missing parameters will be mentioned in the return" do
    post :create, { magazine: { name: "Mjallo!" } }
    assert_equal "Required parameter missing: book", response.body
  end
end