test_case_test.rb 32.0 KB
Newer Older
1 2
# frozen_string_literal: true

3 4 5 6
require "abstract_unit"
require "controller/fake_controllers"
require "active_support/json/decoding"
require "rails/engine"
7

8
class TestCaseTest < ActionController::TestCase
S
Shuhei Kitagawa 已提交
9
  def self.fixture_path; end
10

11
  class TestController < ActionController::Base
12
    def no_op
13
      render plain: "dummy"
14 15
    end

16 17
    def set_flash
      flash["test"] = ">#{flash["test"]}<"
18
      render plain: "ignore me"
19
    end
20

21 22
    def delete_flash
      flash.delete("test")
23
      render plain: "ignore me"
24 25
    end

26 27
    def set_flash_now
      flash.now["test_now"] = ">#{flash["test_now"]}<"
28
      render plain: "ignore me"
29 30
    end

31
    def set_session
32 33 34
      session["string"] = "A wonder"
      session[:symbol] = "it works"
      render plain: "Success"
35 36
    end

37 38
    def reset_the_session
      reset_session
39
      render plain: "ignore me"
40 41
    end

42
    def render_raw_post
43
      raise ActiveSupport::TestCase::Assertion, "#raw_post is blank" if request.raw_post.blank?
44
      render plain: request.raw_post
45 46
    end

47
    def render_body
48
      render plain: request.body.read
49 50
    end

51
    def test_params
52
      render plain: ::JSON.dump(params.to_unsafe_h)
53 54
    end

55
    def test_query_parameters
56
      render plain: ::JSON.dump(request.query_parameters)
57 58 59
    end

    def test_request_parameters
60
      render plain: request.request_parameters.inspect
61 62
    end

63
    def test_uri
64
      render plain: request.fullpath
65
    end
66

67
    def test_format
68
      render plain: request.format
69 70
    end

71
    def test_query_string
72
      render plain: request.query_string
73 74
    end

A
Andrew White 已提交
75
    def test_protocol
76
      render plain: request.protocol
A
Andrew White 已提交
77 78
    end

79
    def test_headers
80
      render plain: ::JSON.dump(request.headers.env)
81 82
    end

83
    def test_html_output
84
      render plain: <<HTML
85 86
<html>
  <body>
87
    <a href="/"><img src="/images/button.png" /></a>
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
    <div id="foo">
      <ul>
        <li class="item">hello</li>
        <li class="item">goodbye</li>
      </ul>
    </div>
    <div id="bar">
      <form action="/somewhere">
        Name: <input type="text" name="person[name]" id="person_name" />
      </form>
    </div>
  </body>
</html>
HTML
    end
J
Joshua Peek 已提交
103

104
    def test_xml_output
M
Matthew Draper 已提交
105
      response.content_type = params[:response_as]
106
      render plain: <<XML
107 108
<?xml version="1.0" encoding="UTF-8"?>
<root>
M
Matthew Draper 已提交
109
  <area><p>area is an empty tag in HTML, so it won't contain this content</p></area>
110 111 112
</root>
XML
    end
113

114
    def test_only_one_param
115
      render plain: (params[:left] && params[:right]) ? "EEP, Both here!" : "OK"
116 117 118
    end

    def test_remote_addr
119
      render plain: (request.remote_addr || "not specified")
120
    end
121

122
    def test_file_upload
123
      render plain: params[:file].size
124
    end
125

126
    def test_send_file
B
bogdanvlviv 已提交
127
      send_file(__FILE__)
128 129
    end

130
    def redirect_to_same_controller
131
      redirect_to controller: "test", action: "test_uri", id: 5
132 133 134
    end

    def redirect_to_different_controller
135
      redirect_to controller: "fail", id: 5
136 137
    end

138
    def create
139
      head :created, location: "/resource"
140 141
    end

142 143 144 145
    def render_cookie
      render plain: cookies["foo"]
    end

146 147
    def delete_cookie
      cookies.delete("foo")
148
      render plain: "ok"
149 150
    end

151 152 153 154 155 156 157 158
    def test_without_body
      render html: '<div class="foo"></div>'.html_safe
    end

    def test_with_body
      render html: '<body class="foo"></body>'.html_safe
    end

159
    def boom
160
      raise "boom!"
161 162
    end

163 164 165
    private

      def generate_url(opts)
166
        url_for(opts.merge(action: "test_uri"))
167
      end
168 169 170
  end

  def setup
171
    super
172
    @controller = TestController.new
173
    @request.delete_header "PATH_INFO"
174 175
    @routes = ActionDispatch::Routing::RouteSet.new.tap do |r|
      r.draw do
176
        ActiveSupport::Deprecation.silence do
177
          get ":controller(/:action(/:id))"
178
        end
179 180
      end
    end
181 182
  end

183
  class DefaultUrlOptionsCachingController < ActionController::Base
184
    before_action { @dynamic_opt = "opt" }
185 186

    def test_url_options_reset
187
      render plain: url_for
188 189 190 191 192 193 194 195 196 197 198
    end

    def default_url_options
      if defined?(@dynamic_opt)
        super.merge dynamic_opt: @dynamic_opt
      else
        super
      end
    end
  end

199 200 201
  def test_assert_select_without_body
    get :test_without_body

202 203
    assert_select "body", 0
    assert_select "div.foo"
204 205 206 207 208
  end

  def test_assert_select_with_body
    get :test_with_body

209
    assert_select "body.foo"
210 211
  end

212 213 214
  def test_url_options_reset
    @controller = DefaultUrlOptionsCachingController.new
    get :test_url_options_reset
215
    assert_nil @request.params["dynamic_opt"]
216 217 218
    assert_match(/dynamic_opt=opt/, @response.body)
  end

219
  def test_raw_post_handling
220
    params = Hash[:page, { name: "page name" }, "some key", 123]
221
    post :render_raw_post, params: params.dup
222

223 224 225 226
    assert_equal params.to_query, @response.body
  end

  def test_body_stream
227
    params = Hash[:page, { name: "page name" }, "some key", 123]
228

229 230 231 232 233
    post :render_body, params: params.dup

    assert_equal params.to_query, @response.body
  end

234
  def test_document_body_and_params_with_post
235
    post :test_params, params: { id: 1 }
236
    assert_equal({ "id" => "1", "controller" => "test_case_test/test", "action" => "test_params" }, ::JSON.parse(@response.body))
237
  end
238

239
  def test_document_body_with_post
240 241 242 243
    post :render_body, body: "document body"
    assert_equal "document body", @response.body
  end

244
  def test_document_body_with_put
245 246 247 248
    put :render_body, body: "document body"
    assert_equal "document body", @response.body
  end

249 250 251 252 253
  def test_head
    head :test_params
    assert_equal 200, @response.status
  end

254 255
  def test_process_without_flash
    process :set_flash
256
    assert_equal "><", flash["test"]
257 258
  end

259
  def test_process_with_flash
260 261 262
    process :set_flash,
      method: "GET",
      flash: { "test" => "value" }
263
    assert_equal ">value<", flash["test"]
264
  end
265

266
  def test_process_with_flash_now
267 268 269
    process :set_flash_now,
      method: "GET",
      flash: { "test_now" => "value_now" }
270
    assert_equal ">value_now<", flash["test_now"]
271 272
  end

273 274 275 276 277 278 279
  def test_process_delete_flash
    process :set_flash
    process :delete_flash
    assert_empty flash
    assert_empty session
  end

280 281
  def test_process_with_session
    process :set_session
282 283 284 285
    assert_equal "A wonder", session["string"], "A value stored in the session should be available by string key"
    assert_equal "A wonder", session[:string], "Test session hash should allow indifferent access"
    assert_equal "it works", session["symbol"], "Test session hash should allow indifferent access"
    assert_equal "it works", session[:symbol], "Test session hash should allow indifferent access"
286 287
  end

288
  def test_process_with_session_kwarg
289 290 291 292 293
    process :no_op, method: "GET", session: { "string" => "value1", symbol: "value2" }
    assert_equal "value1", session["string"]
    assert_equal "value1", session[:string]
    assert_equal "value2", session["symbol"]
    assert_equal "value2", session[:symbol]
294 295
  end

296
  def test_process_merges_session_arg
297 298 299 300
    session[:foo] = "bar"
    get :no_op, session: { bar: "baz" }
    assert_equal "bar", session[:foo]
    assert_equal "baz", session[:bar]
301 302 303
  end

  def test_merged_session_arg_is_retained_across_requests
304 305
    get :no_op, session: { foo: "bar" }
    assert_equal "bar", session[:foo]
306
    get :no_op
307
    assert_equal "bar", session[:foo]
308 309 310
  end

  def test_process_overwrites_existing_session_arg
311 312 313
    session[:foo] = "bar"
    get :no_op, session: { foo: "baz" }
    assert_equal "baz", session[:foo]
314 315
  end

316 317 318 319 320 321 322 323 324 325 326 327
  def test_session_is_cleared_from_controller_after_reset_session
    process :set_session
    process :reset_the_session
    assert_equal Hash.new, @controller.session.to_hash
  end

  def test_session_is_cleared_from_request_after_reset_session
    process :set_session
    process :reset_the_session
    assert_equal Hash.new, @request.session.to_hash
  end

328 329 330 331 332 333
  def test_response_and_request_have_nice_accessors
    process :no_op
    assert_equal @response, response
    assert_equal @request, request
  end

334 335
  def test_process_with_request_uri_with_no_params
    process :test_uri
336
    assert_equal "/test_case_test/test/test_uri", @response.body
337 338
  end

339 340 341 342 343
  def test_process_with_symbol_method
    process :test_uri, method: :get
    assert_equal "/test_case_test/test/test_uri", @response.body
  end

344
  def test_process_with_request_uri_with_params
345 346 347 348
    process :test_uri,
      method: "GET",
      params: { id: 7 }

349
    assert_equal "/test_case_test/test/test_uri/7", @response.body
350
  end
351

352
  def test_process_with_request_uri_with_params_with_explicit_uri
353
    @request.env["PATH_INFO"] = "/explicit/uri"
354
    process :test_uri, method: "GET", params: { id: 7 }
355
    assert_equal "/explicit/uri", @response.body
356 357
  end

358
  def test_process_with_query_string
359 360
    process :test_query_string,
      method: "GET",
361
      params: { q: "test" }
362 363 364 365
    assert_equal "q=test", @response.body
  end

  def test_process_with_query_string_with_explicit_uri
366 367
    @request.env["PATH_INFO"] = "/explicit/uri"
    @request.env["QUERY_STRING"] = "q=test?extra=question"
368 369 370 371
    process :test_query_string
    assert_equal "q=test?extra=question", @response.body
  end

372
  def test_multiple_calls
373
    process :test_only_one_param, method: "GET", params: { left: true }
374
    assert_equal "OK", @response.body
375
    process :test_only_one_param, method: "GET", params: { right: true }
376
    assert_equal "OK", @response.body
377
  end
378

M
Matthew Draper 已提交
379 380
  def test_should_impose_childless_html_tags_in_html
    process :test_xml_output, params: { response_as: "text/html" }
381

M
Matthew Draper 已提交
382 383 384 385 386 387
    # <area> auto-closes, so the <p> becomes a sibling
    assert_select "root > area + p"
  end

  def test_should_not_impose_childless_html_tags_in_xml
    process :test_xml_output, params: { response_as: "application/xml" }
388

M
Matthew Draper 已提交
389 390
    # <area> is not special, so the <p> is its child
    assert_select "root > area > p"
391
  end
392

393
  def test_assert_generates
394
    assert_generates "controller/action/5", controller: "controller", action: "action", id: "5"
K
Koichi ITO 已提交
395 396 397
    assert_generates "controller/action/7", { id: "7" }, { controller: "controller", action: "action" }
    assert_generates "controller/action/5", { controller: "controller", action: "action", id: "5", name: "bob" }, {}, { name: "bob" }
    assert_generates "controller/action/7", { id: "7", name: "bob" }, { controller: "controller", action: "action" }, { name: "bob" }
398
    assert_generates "controller/action/7", { id: "7" }, { controller: "controller", action: "action", name: "bob" }, {}
399
  end
400

401
  def test_assert_routing
402
    assert_routing "content", controller: "content", action: "index"
403 404
  end

405 406
  def test_assert_routing_with_method
    with_routing do |set|
407
      set.draw { resources(:content) }
K
Koichi ITO 已提交
408
      assert_routing({ method: "post", path: "content" }, { controller: "content", action: "create" })
409 410 411
    end
  end

412
  def test_assert_routing_in_module
413 414 415
    with_routing do |set|
      set.draw do
        namespace :admin do
416
          get "user" => "user#index"
417 418 419
        end
      end

420
      assert_routing "admin/user", controller: "admin/user", action: "index"
421
    end
422
  end
423

424 425
  def test_assert_routing_with_glob
    with_routing do |set|
426
      set.draw { get("*path" => "pages#show") }
427
      assert_routing("/company/about", controller: "pages", action: "show", path: "company/about")
428 429
    end
  end
430

431
  def test_params_passing
432 433 434
    get :test_params, params: {
      page: {
        name: "Page name",
435 436 437
        month: "4",
        year: "2004",
        day: "6"
438 439
      }
    }
440
    parsed_params = ::JSON.parse(@response.body)
441
    assert_equal(
442
      {
443 444
        "controller" => "test_case_test/test", "action" => "test_params",
        "page" => { "name" => "Page name", "month" => "4", "year" => "2004", "day" => "6" }
445
      },
446 447 448 449
      parsed_params
    )
  end

450
  def test_query_param_named_action
451
    get :test_query_parameters, params: { action: "foobar" }
452
    parsed_params = JSON.parse(@response.body)
453
    assert_equal({ "action" => "foobar" }, parsed_params)
454 455 456
  end

  def test_request_param_named_action
457
    post :test_request_parameters, params: { action: "foobar" }
458
    parsed_params = eval(@response.body)
459
    assert_equal({ "action" => "foobar" }, parsed_params)
460 461
  end

462 463 464 465
  def test_kwarg_params_passing_with_session_and_flash
    get :test_params, params: {
      page: {
        name: "Page name",
466 467 468
        month: "4",
        year: "2004",
        day: "6"
469
      }
470
    }, session: { "foo" => "bar" }, flash: { notice: "created" }
471

472
    parsed_params = ::JSON.parse(@response.body)
473
    assert_equal(
474 475
      { "controller" => "test_case_test/test", "action" => "test_params",
       "page" => { "name" => "Page name", "month" => "4", "year" => "2004", "day" => "6" } },
476 477
      parsed_params
    )
478

479 480
    assert_equal "bar", session[:foo]
    assert_equal "created", flash[:notice]
481 482
  end

483
  def test_params_passing_with_integer
484 485 486
    get :test_params, params: {
      page: { name: "Page name", month: 4, year: 2004, day: 6 }
    }
487
    parsed_params = ::JSON.parse(@response.body)
488
    assert_equal(
489 490
      { "controller" => "test_case_test/test", "action" => "test_params",
       "page" => { "name" => "Page name", "month" => "4", "year" => "2004", "day" => "6" } },
491 492 493 494
      parsed_params
    )
  end

495
  def test_params_passing_with_integers_when_not_html_request
496
    get :test_params, params: { format: "json", count: 999 }
497
    parsed_params = ::JSON.parse(@response.body)
498
    assert_equal(
499
      { "controller" => "test_case_test/test", "action" => "test_params",
500
       "format" => "json", "count" => "999" },
501 502 503 504 505
      parsed_params
    )
  end

  def test_params_passing_path_parameter_is_string_when_not_html_request
506
    get :test_params, params: { format: "json", id: 1 }
507
    parsed_params = ::JSON.parse(@response.body)
508
    assert_equal(
509
      { "controller" => "test_case_test/test", "action" => "test_params",
510
       "format" => "json", "id" => "1" },
511 512 513 514
      parsed_params
    )
  end

515 516
  def test_params_passing_with_frozen_values
    assert_nothing_raised do
517
      get :test_params, params: {
518
        frozen: "icy".freeze, frozens: ["icy".freeze].freeze, deepfreeze: { frozen: "icy".freeze }.freeze
519
      }
520
    end
521
    parsed_params = ::JSON.parse(@response.body)
522
    assert_equal(
523 524
      { "controller" => "test_case_test/test", "action" => "test_params",
       "frozen" => "icy", "frozens" => ["icy"], "deepfreeze" => { "frozen" => "icy" } },
525 526 527 528
      parsed_params
    )
  end

529
  def test_params_passing_doesnt_modify_in_place
530
    page = { name: "Page name", month: 4, year: 2004, day: 6 }
531
    get :test_params, params: { page: page }
532 533 534
    assert_equal 2004, page[:year]
  end

535
  test "set additional HTTP headers" do
536 537
    @request.headers["Referer"] = "http://nohost.com/home"
    @request.headers["Content-Type"] = "application/rss+xml"
538
    get :test_headers
539
    parsed_env = ActiveSupport::JSON.decode(@response.body)
540 541 542 543 544
    assert_equal "http://nohost.com/home", parsed_env["HTTP_REFERER"]
    assert_equal "application/rss+xml", parsed_env["CONTENT_TYPE"]
  end

  test "set additional env variables" do
545 546
    @request.headers["HTTP_REFERER"] = "http://example.com/about"
    @request.headers["CONTENT_TYPE"] = "application/json"
547
    get :test_headers
548
    parsed_env = ActiveSupport::JSON.decode(@response.body)
549 550 551 552
    assert_equal "http://example.com/about", parsed_env["HTTP_REFERER"]
    assert_equal "application/json", parsed_env["CONTENT_TYPE"]
  end

553 554 555 556 557 558 559 560 561
  def test_using_as_json_sets_request_content_type_to_json
    post :render_body, params: { bool_value: true, str_value: "string", num_value: 2 }, as: :json

    assert_equal "application/json", @request.headers["CONTENT_TYPE"]
    assert_equal true, @request.request_parameters[:bool_value]
    assert_equal "string", @request.request_parameters[:str_value]
    assert_equal 2, @request.request_parameters[:num_value]
  end

562 563 564 565 566
  def test_using_as_json_sets_format_json
    post :render_body, params: { bool_value: true, str_value: "string", num_value: 2 }, as: :json
    assert_equal "json", @request.format
  end

567
  def test_mutating_content_type_headers_for_plain_text_files_sets_the_header
568 569
    @request.headers["Content-Type"] = "text/plain"
    post :render_body, params: { name: "foo.txt" }
570

571 572 573
    assert_equal "text/plain", @request.headers["Content-type"]
    assert_equal "foo.txt", @request.request_parameters[:name]
    assert_equal "render_body", @request.path_parameters[:action]
574 575 576
  end

  def test_mutating_content_type_headers_for_html_files_sets_the_header
577 578
    @request.headers["Content-Type"] = "text/html"
    post :render_body, params: { name: "foo.html" }
579

580 581 582
    assert_equal "text/html", @request.headers["Content-type"]
    assert_equal "foo.html", @request.request_parameters[:name]
    assert_equal "render_body", @request.path_parameters[:action]
583 584 585 586
  end

  def test_mutating_content_type_headers_for_non_registered_mime_type_raises_an_error
    assert_raises(RuntimeError) do
587 588
      @request.headers["Content-Type"] = "type/fake"
      post :render_body, params: { name: "foo.fake" }
589 590 591
    end
  end

592
  def test_id_converted_to_string
593 594 595 596 597 598
    get :test_params, params: {
      id: 20, foo: Object.new
    }
    assert_kind_of String, @request.path_parameters[:id]
  end

599 600
  def test_array_path_parameter_handled_properly
    with_routing do |set|
601
      set.draw do
602
        get "file/*path", to: "test_case_test/test#test_params"
603 604

        ActiveSupport::Deprecation.silence do
605
          get ":controller/:action"
606
        end
607
      end
608

609 610 611
      get :test_params, params: { path: ["hello", "world"] }
      assert_equal ["hello", "world"], @request.path_parameters[:path]
      assert_equal "hello/world", @request.path_parameters[:path].to_param
612 613 614 615
    end
  end

  def test_assert_realistic_path_parameters
616
    get :test_params, params: { id: 20, foo: Object.new }
617

618
    # All elements of path_parameters should use Symbol keys
619
    @request.path_parameters.each_key do |key|
620
      assert_kind_of Symbol, key
621 622 623 624
    end
  end

  def test_with_routing_places_routes_back
J
Joshua Peek 已提交
625 626
    assert @routes
    routes_id = @routes.object_id
627

628
    begin
629 630
      with_routing { raise "fail" }
      fail "Should not be here."
631
    rescue RuntimeError
632
    end
633

J
Joshua Peek 已提交
634 635
    assert @routes
    assert_equal routes_id, @routes.object_id
636
  end
637 638 639 640 641 642 643 644 645

  def test_remote_addr
    get :test_remote_addr
    assert_equal "0.0.0.0", @response.body

    @request.remote_addr = "192.0.0.1"
    get :test_remote_addr
    assert_equal "192.0.0.1", @response.body
  end
646

647
  def test_header_properly_reset_after_remote_http_request
648
    get :test_params, xhr: true
649 650
    assert_nil @request.env["HTTP_X_REQUESTED_WITH"]
    assert_nil @request.env["HTTP_ACCEPT"]
651 652
  end

653
  def test_xhr_with_params
654
    get :test_params, params: { id: 1 }, xhr: true
655

656
    assert_equal({ "id" => "1", "controller" => "test_case_test/test", "action" => "test_params" }, ::JSON.parse(@response.body))
657 658 659
  end

  def test_xhr_with_session
660 661
    get :set_session, xhr: true

662 663 664 665
    assert_equal "A wonder", session["string"], "A value stored in the session should be available by string key"
    assert_equal "A wonder", session[:string], "Test session hash should allow indifferent access"
    assert_equal "it works", session["symbol"], "Test session hash should allow indifferent access"
    assert_equal "it works", session[:symbol], "Test session hash should allow indifferent access"
666 667
  end

G
Guo Xiang Tan 已提交
668
  def test_params_reset_between_post_requests
669
    post :no_op, params: { foo: "bar" }
670
    assert_equal "bar", @request.params[:foo]
G
Guo Xiang Tan 已提交
671

672
    post :no_op
673
    assert_predicate @request.params[:foo], :blank?
674 675
  end

676
  def test_filtered_parameters_reset_between_requests
677
    get :no_op, params: { foo: "bar" }
678 679
    assert_equal "bar", @request.filtered_parameters[:foo]

680
    get :no_op, params: { foo: "baz" }
681 682 683
    assert_equal "baz", @request.filtered_parameters[:foo]
  end

684 685 686 687 688 689 690 691
  def test_raw_post_reset_between_post_requests
    post :no_op, params: { foo: "bar" }
    assert_equal "foo=bar", @request.raw_post

    post :no_op, params: { foo: "baz" }
    assert_equal "foo=baz", @request.raw_post
  end

692 693
  def test_path_is_kept_after_the_request
    get :test_params, params: { id: "foo" }
R
Rafael Mendonça França 已提交
694
    assert_equal "/test_case_test/test/test_params/foo", @request.path
695 696
  end

G
Guo Xiang Tan 已提交
697
  def test_path_params_reset_between_request
698
    get :test_params, params: { id: "foo" }
699
    assert_equal "foo", @request.path_parameters[:id]
G
Guo Xiang Tan 已提交
700

701
    get :test_params
702
    assert_nil @request.path_parameters[:id]
703 704
  end

A
Andrew White 已提交
705 706 707 708 709 710 711 712 713 714 715 716 717
  def test_request_protocol_is_reset_after_request
    get :test_protocol
    assert_equal "http://", @response.body

    @request.env["HTTPS"] = "on"
    get :test_protocol
    assert_equal "https://", @response.body

    @request.env.delete("HTTPS")
    get :test_protocol
    assert_equal "http://", @response.body
  end

718
  def test_request_format
719 720
    get :test_format, params: { format: "html" }
    assert_equal "text/html", @response.body
721

722 723
    get :test_format, params: { format: "json" }
    assert_equal "application/json", @response.body
724

725 726
    get :test_format, params: { format: "xml" }
    assert_equal "application/xml", @response.body
727 728

    get :test_format
729
    assert_equal "text/html", @response.body
730 731
  end

732
  def test_request_format_kwarg
733 734
    get :test_format, format: "html"
    assert_equal "text/html", @response.body
735

736 737
    get :test_format, format: "json"
    assert_equal "application/json", @response.body
738

739 740
    get :test_format, format: "xml"
    assert_equal "application/xml", @response.body
741 742

    get :test_format
743
    assert_equal "text/html", @response.body
744 745 746
  end

  def test_request_format_kwarg_overrides_params
747 748
    get :test_format, format: "json", params: { format: "html" }
    assert_equal "application/json", @response.body
749 750
  end

751 752 753 754 755 756 757 758
  def test_request_format_kwarg_doesnt_mutate_params
    params = { foo: "bar" }.freeze

    assert_nothing_raised do
      get :test_format, format: "json", params: params
    end
  end

759
  def test_should_have_knowledge_of_client_side_cookie_state_even_if_they_are_not_set
760
    cookies["foo"] = "bar"
761
    get :no_op
762
    assert_equal "bar", cookies["foo"]
763 764 765
  end

  def test_cookies_should_be_escaped_properly
766
    cookies["foo"] = "+"
767
    get :render_cookie
768
    assert_equal "+", @response.body
769 770 771
  end

  def test_should_detect_if_cookie_is_deleted
772
    cookies["foo"] = "bar"
773
    get :delete_cookie
774
    assert_nil cookies["foo"]
775 776
  end

777
  def test_multiple_mixed_method_process_should_scrub_rack_input
778
    post :test_params, params: { id: 1, foo: "an foo" }
779
    assert_equal({ "id" => "1", "foo" => "an foo", "controller" => "test_case_test/test", "action" => "test_params" }, ::JSON.parse(@response.body))
780

781
    get :test_params, params: { bar: "an bar" }
782
    assert_equal({ "bar" => "an bar", "controller" => "test_case_test/test", "action" => "test_params" }, ::JSON.parse(@response.body))
783 784
  end

785 786 787 788 789 790 791 792
  %w(controller response request).each do |variable|
    %w(get post put delete head process).each do |method|
      define_method("test_#{variable}_missing_for_#{method}_raises_error") do
        remove_instance_variable "@#{variable}"
        begin
          send(method, :test_remote_addr)
          assert false, "expected RuntimeError, got nothing"
        rescue RuntimeError => error
793
          assert_match(%r{@#{variable} is nil}, error.message)
794 795 796 797 798 799
        rescue => error
          assert false, "expected RuntimeError, got #{error.class}"
        end
      end
    end
  end
800

B
bogdanvlviv 已提交
801
  FILES_DIR = File.expand_path("../fixtures/multipart", __dir__)
802

803 804
  READ_BINARY = "rb:binary"
  READ_PLAIN = "r:binary"
805

806
  def test_test_uploaded_file
807
    filename = "ruby_on_rails.jpg"
808
    path = "#{FILES_DIR}/#{filename}"
809
    content_type = "image/png"
810
    expected = File.read(path)
811
    expected.force_encoding(Encoding::BINARY)
812

J
Joshua Peek 已提交
813
    file = Rack::Test::UploadedFile.new(path, content_type)
814 815 816
    assert_equal filename, file.original_filename
    assert_equal content_type, file.content_type
    assert_equal file.path, file.local_path
817
    assert_equal expected, file.read
818 819 820 821

    new_content_type = "new content_type"
    file.content_type = new_content_type
    assert_equal new_content_type, file.content_type
822
  end
J
Joshua Peek 已提交
823

824
  def test_fixture_path_is_accessed_from_self_instead_of_active_support_test_case
825
    TestCaseTest.stub :fixture_path, FILES_DIR do
826 827
      uploaded_file = fixture_file_upload("/ruby_on_rails.jpg", "image/png")
      assert_equal File.open("#{FILES_DIR}/ruby_on_rails.jpg", READ_PLAIN).read, uploaded_file.read
828
    end
829 830
  end

831
  def test_test_uploaded_file_with_binary
832
    filename = "ruby_on_rails.jpg"
833
    path = "#{FILES_DIR}/#{filename}"
834
    content_type = "image/png"
J
Joshua Peek 已提交
835

J
Joshua Peek 已提交
836
    binary_uploaded_file = Rack::Test::UploadedFile.new(path, content_type, :binary)
837
    assert_equal File.open(path, READ_BINARY).read, binary_uploaded_file.read
J
Joshua Peek 已提交
838

J
Joshua Peek 已提交
839
    plain_uploaded_file = Rack::Test::UploadedFile.new(path, content_type)
840
    assert_equal File.open(path, READ_PLAIN).read, plain_uploaded_file.read
841 842 843
  end

  def test_fixture_file_upload_with_binary
844
    filename = "ruby_on_rails.jpg"
845
    path = "#{FILES_DIR}/#{filename}"
846
    content_type = "image/jpg"
J
Joshua Peek 已提交
847

848
    binary_file_upload = fixture_file_upload(path, content_type, :binary)
849
    assert_equal File.open(path, READ_BINARY).read, binary_file_upload.read
J
Joshua Peek 已提交
850

851
    plain_file_upload = fixture_file_upload(path, content_type)
852
    assert_equal File.open(path, READ_PLAIN).read, plain_file_upload.read
853
  end
854

855
  def test_fixture_file_upload_should_be_able_access_to_tempfile
856
    file = fixture_file_upload(FILES_DIR + "/ruby_on_rails.jpg", "image/jpg")
D
Daniel Colson 已提交
857
    assert_respond_to file, :tempfile
858 859
  end

860
  def test_fixture_file_upload
861 862
    post :test_file_upload,
      params: {
863
        file: fixture_file_upload(FILES_DIR + "/ruby_on_rails.jpg", "image/jpg")
864
      }
865
    assert_equal "45142", @response.body
866
  end
867

868
  def test_fixture_file_upload_relative_to_fixture_path
869
    TestCaseTest.stub :fixture_path, FILES_DIR do
870 871
      uploaded_file = fixture_file_upload("ruby_on_rails.jpg", "image/jpg")
      assert_equal File.open("#{FILES_DIR}/ruby_on_rails.jpg", READ_PLAIN).read, uploaded_file.read
872
    end
873 874
  end

875
  def test_fixture_file_upload_ignores_fixture_path_given_full_path
B
bogdanvlviv 已提交
876
    TestCaseTest.stub :fixture_path, __dir__ do
877 878
      uploaded_file = fixture_file_upload("#{FILES_DIR}/ruby_on_rails.jpg", "image/jpg")
      assert_equal File.open("#{FILES_DIR}/ruby_on_rails.jpg", READ_PLAIN).read, uploaded_file.read
879 880 881
    end
  end

882
  def test_fixture_file_upload_ignores_nil_fixture_path
883 884
    uploaded_file = fixture_file_upload("#{FILES_DIR}/ruby_on_rails.jpg", "image/jpg")
    assert_equal File.open("#{FILES_DIR}/ruby_on_rails.jpg", READ_PLAIN).read, uploaded_file.read
885 886
  end

887
  def test_action_dispatch_uploaded_file_upload
888
    filename = "ruby_on_rails.jpg"
889
    path = "#{FILES_DIR}/#{filename}"
890
    post :test_file_upload, params: {
891
      file: Rack::Test::UploadedFile.new(path, "image/jpg", true)
892
    }
893
    assert_equal "45142", @response.body
894 895
  end

896
  def test_test_uploaded_file_exception_when_file_doesnt_exist
897
    assert_raise(RuntimeError) { Rack::Test::UploadedFile.new("non_existent_file") }
898
  end
899

900 901 902 903 904
  def test_redirect_url_only_cares_about_location_header
    get :create
    assert_response :created

    # Redirect url doesn't care that it wasn't a :redirect response.
905
    assert_equal "/resource", @response.redirect_url
906 907 908
    assert_equal @response.redirect_url, redirect_to_url

    # Must be a :redirect response.
909
    assert_raise(ActiveSupport::TestCase::Assertion) do
910
      assert_redirected_to "/resource"
911 912
    end
  end
913 914 915 916 917 918 919 920 921 922 923

  def test_exception_in_action_reaches_test
    assert_raise(RuntimeError) do
      process :boom, method: "GET"
    end
  end

  def test_request_state_is_cleared_after_exception
    assert_raise(RuntimeError) do
      process :boom,
        method: "GET",
924
        params: { q: "test1" }
925 926 927 928
    end

    process :test_query_string,
      method: "GET",
929
      params: { q: "test2" }
930 931 932

    assert_equal "q=test2", @response.body
  end
933
end
934

935 936 937 938
class ResponseDefaultHeadersTest < ActionController::TestCase
  class TestController < ActionController::Base
    def remove_header
      headers.delete params[:header]
939
      head :ok, "C" => "3"
940
    end
941 942 943 944 945

    # Render a head response, but don't touch default headers
    def leave_alone
      head :ok
    end
946 947
  end

948
  def before_setup
949
    @original = ActionDispatch::Response.default_headers
950
    @defaults = { "A" => "1", "B" => "2" }
951
    ActionDispatch::Response.default_headers = @defaults
952
    super
953 954 955 956 957 958 959 960 961
  end

  teardown do
    ActionDispatch::Response.default_headers = @original
  end

  def setup
    super
    @controller = TestController.new
962
    @request.env["PATH_INFO"] = nil
963 964
    @routes = ActionDispatch::Routing::RouteSet.new.tap do |r|
      r.draw do
965
        ActiveSupport::Deprecation.silence do
966
          get ":controller(/:action(/:id))"
967
        end
968 969 970 971 972
      end
    end
  end

  test "response contains default headers" do
973 974
    get :leave_alone

975
    # Response headers start out with the defaults
976
    assert_equal @defaults.merge("Content-Type" => "text/html"), response.headers
977
  end
978

979
  test "response deletes a default header" do
980
    get :remove_header, params: { header: "A" }
981 982 983 984
    assert_response :ok

    # After a request, the response in the test case doesn't have the
    # defaults merged on top again.
985 986 987
    assert_not_includes response.headers, "A"
    assert_includes response.headers, "B"
    assert_includes response.headers, "C"
988 989 990
  end
end

991 992 993 994 995
module EngineControllerTests
  class Engine < ::Rails::Engine
    isolate_namespace EngineControllerTests

    routes.draw do
996
      get "/" => "bar#index"
997 998 999 1000 1001
    end
  end

  class BarController < ActionController::Base
    def index
1002
      render plain: "bar"
1003 1004 1005 1006 1007 1008 1009 1010
    end
  end

  class BarControllerTest < ActionController::TestCase
    tests BarController

    def test_engine_controller_route
      get :index
1011
      assert_equal @response.body, "bar"
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
    end
  end

  class BarControllerTestWithExplicitRouteSet < ActionController::TestCase
    tests BarController

    def setup
      @routes = Engine.routes
    end

    def test_engine_controller_route
      get :index
1024
      assert_equal @response.body, "bar"
1025 1026 1027 1028
    end
  end
end

1029
class InferringClassNameTest < ActionController::TestCase
1030 1031 1032 1033 1034
  def test_determine_controller_class
    assert_equal ContentController, determine_class("ContentControllerTest")
  end

  def test_determine_controller_class_with_nonsense_name
1035
    assert_nil determine_class("HelloGoodBye")
1036 1037 1038
  end

  def test_determine_controller_class_with_sensible_name_where_no_controller_exists
1039
    assert_nil determine_class("NoControllerWithThisNameTest")
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
  end

  private
    def determine_class(name)
      ActionController::TestCase.determine_default_controller_class(name)
    end
end

class CrazyNameTest < ActionController::TestCase
  tests ContentController
1050

1051 1052 1053 1054
  def test_controller_class_can_be_set_manually_not_just_inferred
    assert_equal ContentController, self.class.controller_class
  end
end
1055

1056 1057 1058 1059 1060 1061 1062 1063 1064
class CrazySymbolNameTest < ActionController::TestCase
  tests :content

  def test_set_controller_class_using_symbol
    assert_equal ContentController, self.class.controller_class
  end
end

class CrazyStringNameTest < ActionController::TestCase
1065
  tests "content"
1066 1067 1068 1069 1070 1071

  def test_set_controller_class_using_string
    assert_equal ContentController, self.class.controller_class
  end
end

1072 1073
class NamedRoutesControllerTest < ActionController::TestCase
  tests ContentController
J
Joshua Peek 已提交
1074

1075 1076
  def test_should_be_able_to_use_named_routes_before_a_request_is_done
    with_routing do |set|
1077
      set.draw { resources :contents }
1078 1079
      assert_equal "http://test.host/contents/new", new_content_url
      assert_equal "http://test.host/contents/1", content_url(id: 1)
1080 1081 1082
    end
  end
end
A
Andrew White 已提交
1083 1084 1085 1086 1087

class AnonymousControllerTest < ActionController::TestCase
  def setup
    @controller = Class.new(ActionController::Base) do
      def index
1088
        render plain: params[:controller]
A
Andrew White 已提交
1089 1090 1091 1092 1093
      end
    end.new

    @routes = ActionDispatch::Routing::RouteSet.new.tap do |r|
      r.draw do
1094
        ActiveSupport::Deprecation.silence do
1095
          get ":controller(/:action(/:id))"
1096
        end
A
Andrew White 已提交
1097 1098 1099 1100 1101 1102
      end
    end
  end

  def test_controller_name
    get :index
1103
    assert_equal "anonymous", @response.body
A
Andrew White 已提交
1104
  end
1105
end
1106 1107 1108 1109 1110

class RoutingDefaultsTest < ActionController::TestCase
  def setup
    @controller = Class.new(ActionController::Base) do
      def post
1111
        render plain: request.fullpath
1112 1113 1114
      end

      def project
1115
        render plain: request.fullpath
1116 1117 1118 1119 1120
      end
    end.new

    @routes = ActionDispatch::Routing::RouteSet.new.tap do |r|
      r.draw do
1121 1122
        get "/posts/:id", to: "anonymous#post", bucket_type: "post"
        get "/projects/:id", to: "anonymous#project", defaults: { bucket_type: "project" }
1123 1124 1125 1126 1127
      end
    end
  end

  def test_route_option_can_be_passed_via_process
1128
    get :post, params: { id: 1, bucket_type: "post" }
1129
    assert_equal "/posts/1", @response.body
1130 1131 1132
  end

  def test_route_default_is_not_required_for_building_request_uri
1133
    get :project, params: { id: 2 }
1134
    assert_equal "/projects/2", @response.body
1135 1136
  end
end