aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of relative_url_path in favor of respecting SCRIPT_NAME. Also added ↵Carlhuda2010-03-041-2/+2
| | | | a way to specify a default SCRIPT_NAME when generating URLs out of the context of a request.
* Refactor cache_store to use ActionController configCarlhuda2010-03-042-9/+15
|
* Deprecated ActionController::Base.session_options= and ↵Carlhuda2010-03-041-2/+3
| | | | ActionController::Base.session_store= in favor of a config.session_store method (which takes params) and a config.cookie_secret variable, which is used in various secret scenarios. The old AC::Base options will continue to work with deprecation warnings.
* Clarify cookie jar testJeremy Kemper2010-03-041-6/+1
|
* Fixes test ordering bug (ht: evan)wycats2010-03-041-0/+3
|
* Merge branch 'configuration_refactor'Carl Lerche2010-03-037-43/+23
|\
| * ActionController::Base.use_accept_header is not actually used anymore, so ↵Carl Lerche2010-03-033-19/+0
| | | | | | | | let's deprecate it.
| * ActionDispatch::Request deprecates #request_uriCarl Lerche2010-03-032-2/+2
| | | | | | | | * Refactored ActionPatch to use fullpath instead
| * Fix tests for the request refactorCarl Lerche2010-03-032-3/+6
| |
| * Tweak the semantic of various URL related methods of ActionDispatch::RequestCarlhuda2010-03-032-6/+8
| |
| * Work on deprecating ActionController::Base.relative_url_rootCarlhuda2010-03-031-11/+4
| |
| * Move session_store and session_options to the AC configuration objectCarlhuda2010-03-031-2/+3
| |
* | don't depend on the order of cookies (Hash ordering bug)Yehuda Katz2010-03-031-1/+1
|/
* Fix failing Action Pack testsCarlhuda2010-03-021-1/+2
|
* No longer add missing leading / on path args to assert_redirected_to. ↵Jeremy Kemper2010-03-021-2/+4
| | | | Deprecated in 2.3.6.
* Action Mailer setup obviated by test bundleJeremy Kemper2010-03-021-12/+1
|
* Remove implicit controller namespacing from new dslJoshua Peek2010-02-282-4/+8
|
* 1.9 seems to have a bug involving cloned classes and super. Fix it by not ↵Carlhuda2010-02-261-8/+12
| | | | cloning (and instead creating classes on demand). The 1.9 bug should be investigated.
* If IntegrationSession is initialized with an objects that responds to ↵Carlhuda2010-02-263-6/+2
| | | | #routes, automatically extend the URL helpers from the RouteSet onto it
* Setting UrlFor in with_routing is no longer needed now that it's not globalCarlhuda2010-02-261-4/+5
|
* Silence test deprecation warningsCarlhuda2010-02-261-16/+55
|
* Rename named_url_helpers to url_helpers and url_helpers to url_forCarlhuda2010-02-264-9/+9
|
* Fix controller_path returnsing an empty string in Ruby 1.8.7 [#4036 ↵José Valim2010-02-261-0/+9
| | | | status:resolved]
* Rename metaclass to singleton_classCarlhuda2010-02-253-4/+4
|
* Get URL helpers working again in integration tests.Carlhuda2010-02-251-17/+7
|
* Continued effort to deglobalize the routerCarlhuda2010-02-252-27/+8
|
* Fix all of AP's tests with the non global routerCarlhuda2010-02-251-2/+4
|
* Merge branch 'master' of github.com:rails/railsCarlhuda2010-02-251-1/+1
|
* WIP: Remove the global routerCarlhuda2010-02-258-35/+48
|
* Cleanup render callstack and make render(:json => {}, :status => 401) work ↵José Valim2010-02-241-0/+10
| | | | again.
* Remove ActionController::Base.resources_path_namesCarl Lerche2010-02-241-9/+10
|
* Fix render :file => "#{Rails.root}/public/404.html", :status => :not_found. ↵Yehuda Katz2010-02-231-0/+9
| | | | Closes #8994
* Revert "Fix test load paths for those not using bundler"Carlhuda2010-02-231-3/+0
| | | | | | This reverts commit eec2d301d4ce9df9c71c1a5aa63053eb970b6818. This commit broke tests. You cannot have a file called "bundler" on the load path.
* Makes send_file work again by deferring to Rack::Sendfile. Carlhuda2010-02-232-25/+2
| | | | | | | | | | * Add the Rack::Sendfile middleware * Make the header to use configurable via config.action_dispatch.x_sendfile_header (default to "X-Sendfile"). * Add Railties tests to confirm that these work * Remove the :stream, :buffer_size, and :x_senfile default options to send_file * Change the log subscriber to always say "Sent file" * Add deprecation warnings for options that are now no-ops Note that servers can configure this by setting X-Sendfile-Type. Hosting companies and those creating packages of servers specially designed for Rails applications are encouraged to specify this header so that this can work transparently.
* Fix streaming by having it create a File object, which can be handled by ↵Carlhuda2010-02-231-3/+11
| | | | Rack servers as appropriate
* Use ActionDispatch::Routing everywhereMartin Schürrer2010-02-214-9/+9
|
* Require persisted? in ActiveModel::Lint and remove new_record? and ↵José Valim2010-02-212-11/+11
| | | | destroyed? methods. ActionPack does not care if the resource is new or if it was destroyed, it cares only if it's persisted somewhere or not.
* AMo #key is now #to_key and CI is probably happysnusnu2010-02-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Obviously #key is a too common name to be included in the AMo interface, #to_key fits better and also relates nicely to #to_param. Thx wycats, koz and josevalim for the suggestion. AR's #to_key implementation now takes customized primary keys into account and there's a testcase for that too. The #to_param AMo lint makes no assumptions on how the method behaves in the presence of composite primary keys. It leaves the decision wether to provide a default, or to raise and thus signal to the user that implementing this method will need his special attention, up to the implementers. All AMo cares about is that #to_param is implemented and returns nil in case of a new_record?. The default CompliantObject used in lint_test provides a naive default implementation that just joins all key attributes with '-'. The #to_key default implementation in lint_test's CompliantObject now returns [id] instead of [1]. This was previously causing the (wrong) tests I added for AR's #to_key implementation to pass. The #to_key tests added with this patch should be better. The CI failure was caused by my lack of knowledge about the test:isolated task. The tests for the record_identifier code in action_controller are using fake non AR models and I forgot to stub the #to_key method over there. This issue didn't come up when running the test task, only test:isolated revealed it. This patch fixes that. All tests pass isolated or not, well, apart from one previously unpended test in action_controller that is unrelated to my patch.
* Fix a bunch of pending tests by providing an introspection mode for the ↵Carlhuda2010-02-191-2/+1
| | | | Response object that does up-front parsing of the headers to populate things like @etag
* Reinstate pending tests that were supposed to be fixed before theJoshua Peek2010-02-191-13/+11
| | | | | | beta. Shout louder this time so they actually get fixed.
* Merge master.José Valim2010-02-171-0/+3
|\
| * Fix test load paths for those not using bundlerJoshua Peek2010-02-151-0/+3
| |
* | Make Railties tests green again.José Valim2010-02-171-1/+1
| |
* | Ensure render :text => resource first tries to invoke :to_text on itJosé Valim2010-02-161-0/+9
| |
* | Rename Rails::Subscriber to Rails::LogSubscriberPrem Sichanugrist2010-02-161-9/+9
|/
* Updates subscriber test for new outputYehuda Katz2010-02-051-1/+1
|
* Test that csrf meta content is html-escaped, tooJeremy Kemper2010-02-041-1/+2
|
* Revert dumb testJeremy Kemper2010-02-041-2/+2
|
* HTML-escape csrf meta contentsJeremy Kemper2010-02-041-2/+2
|
* Expose CSRF param name alsoJeremy Kemper2010-02-041-1/+1
|