leap_web_users 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +38 -0
  4. data/app/controllers/sessions_controller.rb +27 -0
  5. data/app/controllers/users_controller.rb +17 -0
  6. data/app/helpers/sessions_helper.rb +2 -0
  7. data/app/helpers/users_helper.rb +2 -0
  8. data/app/models/unauthenticated_user.rb +4 -0
  9. data/app/models/user.rb +49 -0
  10. data/app/views/sessions/new.html.haml +7 -0
  11. data/app/views/users/new.html.haml +10 -0
  12. data/config/initializers/error_constants.rb +1 -0
  13. data/config/routes.rb +10 -0
  14. data/lib/leap_web_users.rb +4 -0
  15. data/lib/leap_web_users/engine.rb +11 -0
  16. data/lib/leap_web_users/version.rb +3 -0
  17. data/lib/tasks/leap_web_users_tasks.rake +4 -0
  18. data/test/dummy/README.rdoc +261 -0
  19. data/test/dummy/Rakefile +7 -0
  20. data/test/dummy/app/assets/javascripts/application.js +15 -0
  21. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  22. data/test/dummy/app/controllers/application_controller.rb +3 -0
  23. data/test/dummy/app/helpers/application_helper.rb +2 -0
  24. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/test/dummy/config.ru +4 -0
  26. data/test/dummy/config/application.rb +65 -0
  27. data/test/dummy/config/boot.rb +10 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +31 -0
  30. data/test/dummy/config/environments/production.rb +64 -0
  31. data/test/dummy/config/environments/test.rb +35 -0
  32. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test/dummy/config/initializers/inflections.rb +15 -0
  34. data/test/dummy/config/initializers/mime_types.rb +5 -0
  35. data/test/dummy/config/initializers/secret_token.rb +7 -0
  36. data/test/dummy/config/initializers/session_store.rb +8 -0
  37. data/test/dummy/config/initializers/wrap_parameters.rb +10 -0
  38. data/test/dummy/config/locales/en.yml +5 -0
  39. data/test/dummy/config/routes.rb +58 -0
  40. data/test/dummy/log/development.log +0 -0
  41. data/test/dummy/log/test.log +1145 -0
  42. data/test/dummy/public/404.html +26 -0
  43. data/test/dummy/public/422.html +26 -0
  44. data/test/dummy/public/500.html +25 -0
  45. data/test/dummy/public/favicon.ico +0 -0
  46. data/test/dummy/script/rails +6 -0
  47. data/test/functional/sessions_controller_test.rb +73 -0
  48. data/test/functional/users_controller_test.rb +33 -0
  49. data/test/integration/api/Readme.md +23 -0
  50. data/test/integration/api/account_flow_test.rb +69 -0
  51. data/test/integration/api/python/login_wrong_username.py +19 -0
  52. data/test/integration/api/python/signup.py +20 -0
  53. data/test/integration/api/python/signup_and_login.py +48 -0
  54. data/test/integration/api/python/signup_and_login_wrong_password.py +43 -0
  55. data/test/integration/navigation_test.rb +9 -0
  56. data/test/leap_web_users_test.rb +7 -0
  57. data/test/test_helper.rb +10 -0
  58. data/test/unit/helpers/session_helper_test.rb +4 -0
  59. data/test/unit/helpers/users_helper_test.rb +4 -0
  60. data/test/unit/unauthorized_user_test.rb +7 -0
  61. data/test/unit/user_test.rb +40 -0
  62. metadata +352 -0
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", :media => "all" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,65 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ # Pick the frameworks you want:
4
+ # require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_mailer/railtie"
7
+ require "active_resource/railtie"
8
+ require "sprockets/railtie"
9
+ require "rails/test_unit/railtie"
10
+
11
+ Bundler.require
12
+ require "leap_web_users"
13
+
14
+ module Dummy
15
+ class Application < Rails::Application
16
+ # Settings in config/environments/* take precedence over those specified here.
17
+ # Application configuration should go into files in config/initializers
18
+ # -- all .rb files in that directory are automatically loaded.
19
+
20
+ # Custom directories with classes and modules you want to be autoloadable.
21
+ # config.autoload_paths += %W(#{config.root}/extras)
22
+
23
+ # Only load the plugins named here, in the order given (default is alphabetical).
24
+ # :all can be used as a placeholder for all plugins not explicitly named.
25
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
26
+
27
+ # Activate observers that should always be running.
28
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
29
+
30
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
31
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
32
+ # config.time_zone = 'Central Time (US & Canada)'
33
+
34
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
35
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
36
+ # config.i18n.default_locale = :de
37
+
38
+ # Configure the default encoding used in templates for Ruby 1.9.
39
+ config.encoding = "utf-8"
40
+
41
+ # Configure sensitive parameters which will be filtered from the log file.
42
+ config.filter_parameters += [:password]
43
+
44
+ # Enable escaping HTML in JSON.
45
+ config.active_support.escape_html_entities_in_json = true
46
+
47
+ # Use SQL instead of Active Record's schema dumper when creating the database.
48
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
49
+ # like if you have constraints or database-specific column types
50
+ # config.active_record.schema_format = :sql
51
+
52
+ # Enforce whitelist mode for mass assignment.
53
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
54
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
55
+ # parameters by using an attr_accessible or attr_protected declaration.
56
+ # config.active_record.whitelist_attributes = true
57
+
58
+ # Enable the asset pipeline
59
+ config.assets.enabled = true
60
+
61
+ # Version of your assets, change this if you want to expire all your assets
62
+ config.assets.version = '1.0'
63
+ end
64
+ end
65
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,31 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+
26
+ # Do not compress assets
27
+ config.assets.compress = false
28
+
29
+ # Expands the lines which load the assets
30
+ config.assets.debug = true
31
+ end
@@ -0,0 +1,64 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ end
@@ -0,0 +1,35 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+
33
+ # Print deprecation notices to the stderr
34
+ config.active_support.deprecation = :stderr
35
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '14fd4f5970abedec753a7266fe5469c6aff8322113e31dcc8bdd608633e9fd35ebabb3596d6494dbced08eb95b20ac819c2f94f0d8f1abd11a71d149c38eb329'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters :format => [:json]
9
+ end
10
+
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id))(.:format)'
58
+ end
File without changes
@@ -0,0 +1,1145 @@
1
+
2
+
3
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 21:42:54 +0200 2012
4
+ Processing by UsersController#create as JSON
5
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
6
+
7
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
8
+
9
+ Completed 500 Internal Server Error in 62ms
10
+
11
+
12
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 21:42:55 +0200 2012
13
+ Processing by UsersController#create as JSON
14
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
15
+
16
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
17
+
18
+ Completed 500 Internal Server Error in 13ms
19
+
20
+
21
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 21:42:55 +0200 2012
22
+ Processing by UsersController#create as JSON
23
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
24
+
25
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
26
+
27
+ Completed 500 Internal Server Error in 15ms
28
+ Processing by SessionsController#destroy as HTML
29
+ Completed 500 Internal Server Error in 1ms
30
+ Processing by SessionsController#update as HTML
31
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
32
+ Completed 200 OK in 1ms (Views: 0.2ms)
33
+ Processing by SessionsController#new as HTML
34
+ Completed 500 Internal Server Error in 190ms
35
+ Processing by SessionsController#create as HTML
36
+ Parameters: {"A"=>"a123", "login"=>"me"}
37
+ Completed 200 OK in 1ms (Views: 0.2ms)
38
+ Processing by UsersController#create as HTML
39
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"me"}}
40
+
41
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
42
+
43
+ Completed 500 Internal Server Error in 1ms
44
+ Processing by UsersController#new as HTML
45
+ Completed 500 Internal Server Error in 30ms
46
+
47
+
48
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 22:56:01 +0200 2012
49
+ Processing by UsersController#create as JSON
50
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
51
+
52
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
53
+
54
+ Completed 500 Internal Server Error in 1094ms
55
+
56
+
57
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 22:56:03 +0200 2012
58
+ Processing by UsersController#create as JSON
59
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
60
+
61
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
62
+
63
+ Completed 500 Internal Server Error in 15ms
64
+
65
+
66
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 22:56:03 +0200 2012
67
+ Processing by UsersController#create as JSON
68
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
69
+
70
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
71
+
72
+ Completed 500 Internal Server Error in 64ms
73
+ Processing by SessionsController#destroy as HTML
74
+ Completed 500 Internal Server Error in 1ms
75
+ Processing by SessionsController#update as HTML
76
+ Parameters: {"id"=>"me", "client_auth"=>"a123"}
77
+ Completed 200 OK in 1ms (Views: 0.2ms)
78
+ Processing by SessionsController#new as HTML
79
+ Completed 500 Internal Server Error in 1010ms
80
+ Processing by SessionsController#create as HTML
81
+ Parameters: {"A"=>"a123", "login"=>"me"}
82
+ Completed 200 OK in 1ms (Views: 0.2ms)
83
+ Processing by UsersController#create as HTML
84
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"me"}}
85
+
86
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
87
+
88
+ Completed 500 Internal Server Error in 1ms
89
+ Processing by UsersController#new as HTML
90
+ Completed 500 Internal Server Error in 68ms
91
+
92
+
93
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 23:49:45 +0200 2012
94
+ Processing by UsersController#create as JSON
95
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
96
+
97
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
98
+
99
+ Completed 500 Internal Server Error in 42ms
100
+
101
+
102
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 23:49:45 +0200 2012
103
+ Processing by UsersController#create as JSON
104
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
105
+
106
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
107
+
108
+ Completed 500 Internal Server Error in 12ms
109
+
110
+
111
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 23:49:45 +0200 2012
112
+ Processing by UsersController#create as JSON
113
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
114
+
115
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
116
+
117
+ Completed 500 Internal Server Error in 13ms
118
+ Processing by SessionsController#destroy as HTML
119
+ Completed 500 Internal Server Error in 1ms
120
+ Processing by SessionsController#update as HTML
121
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
122
+ Completed 200 OK in 1ms (Views: 0.2ms)
123
+ Processing by SessionsController#new as HTML
124
+ Completed 500 Internal Server Error in 99ms
125
+ Processing by SessionsController#create as HTML
126
+ Parameters: {"A"=>"a123", "login"=>"me"}
127
+ Completed 200 OK in 1ms (Views: 0.2ms)
128
+ Processing by UsersController#create as HTML
129
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"me"}}
130
+
131
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
132
+
133
+ Completed 500 Internal Server Error in 1ms
134
+ Processing by UsersController#new as HTML
135
+ Completed 500 Internal Server Error in 29ms
136
+
137
+
138
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 23:55:38 +0200 2012
139
+ Processing by UsersController#create as JSON
140
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"integration_test_user", "password_salt"=>"[FILTERED]"}}
141
+
142
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
143
+
144
+ Completed 500 Internal Server Error in 43ms
145
+
146
+
147
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 23:55:38 +0200 2012
148
+ Processing by UsersController#create as JSON
149
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"integration_test_user", "password_salt"=>"[FILTERED]"}}
150
+
151
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
152
+
153
+ Completed 500 Internal Server Error in 15ms
154
+
155
+
156
+ Started POST "/users.json" for 127.0.0.1 at Thu Aug 23 23:55:38 +0200 2012
157
+ Processing by UsersController#create as JSON
158
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"integration_test_user", "password_salt"=>"[FILTERED]"}}
159
+
160
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
161
+
162
+ Completed 500 Internal Server Error in 21ms
163
+ Processing by SessionsController#destroy as HTML
164
+ Completed 500 Internal Server Error in 2ms
165
+ Processing by SessionsController#update as HTML
166
+ Parameters: {"id"=>"me", "client_auth"=>"a123"}
167
+ Completed 200 OK in 1ms (Views: 0.2ms)
168
+ Processing by SessionsController#new as HTML
169
+ Completed 500 Internal Server Error in 99ms
170
+ Processing by SessionsController#create as HTML
171
+ Parameters: {"login"=>"me", "A"=>"a123"}
172
+ Completed 200 OK in 1ms (Views: 0.2ms)
173
+ Processing by UsersController#create as HTML
174
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"me", "password_salt"=>"[FILTERED]"}}
175
+
176
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
177
+
178
+ Completed 500 Internal Server Error in 1ms
179
+ Processing by UsersController#new as HTML
180
+ Completed 500 Internal Server Error in 29ms
181
+
182
+
183
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 00:03:59 +0200 2012
184
+ Processing by UsersController#create as JSON
185
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
186
+
187
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
188
+
189
+ Completed 500 Internal Server Error in 45ms
190
+
191
+
192
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 00:03:59 +0200 2012
193
+ Processing by UsersController#create as JSON
194
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
195
+
196
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
197
+
198
+ Completed 500 Internal Server Error in 15ms
199
+
200
+
201
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 00:03:59 +0200 2012
202
+ Processing by UsersController#create as JSON
203
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
204
+
205
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
206
+
207
+ Completed 500 Internal Server Error in 17ms
208
+ Processing by SessionsController#destroy as HTML
209
+ Completed 500 Internal Server Error in 1ms
210
+ Processing by SessionsController#update as HTML
211
+ Parameters: {"id"=>"me", "client_auth"=>"a123"}
212
+ Completed 200 OK in 1ms (Views: 0.2ms)
213
+ Processing by SessionsController#new as HTML
214
+ Completed 500 Internal Server Error in 98ms
215
+ Processing by SessionsController#create as HTML
216
+ Parameters: {"login"=>"me", "A"=>"a123"}
217
+ Completed 200 OK in 1ms (Views: 0.2ms)
218
+ Processing by SessionsController#create as HTML
219
+ Parameters: {"login"=>"login_that_does_not_exist"}
220
+ Completed 200 OK in 1ms (Views: 0.3ms)
221
+ Processing by UsersController#create as HTML
222
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"me"}}
223
+
224
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
225
+
226
+ Completed 500 Internal Server Error in 1ms
227
+ Processing by UsersController#new as HTML
228
+ Completed 500 Internal Server Error in 34ms
229
+ Processing by UsersController#create as HTML
230
+ Parameters: {"user"=>{"login"=>"me"}}
231
+
232
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
233
+
234
+ Redirected to http://test.host/users/new
235
+ Completed 302 Found in 2ms
236
+
237
+
238
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 00:08:20 +0200 2012
239
+ Processing by UsersController#create as JSON
240
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
241
+
242
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
243
+
244
+ Completed 201 Created in 49ms (Views: 0.3ms)
245
+
246
+
247
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 00:08:21 +0200 2012
248
+ Processing by UsersController#create as JSON
249
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
250
+
251
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
252
+
253
+ Completed 201 Created in 13ms (Views: 0.2ms)
254
+
255
+
256
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 00:08:21 +0200 2012
257
+ Processing by UsersController#create as JSON
258
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
259
+
260
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
261
+
262
+ Completed 201 Created in 13ms (Views: 0.3ms)
263
+ Processing by SessionsController#destroy as HTML
264
+ Redirected to http://test.host/
265
+ Completed 302 Found in 1ms
266
+ Processing by SessionsController#update as HTML
267
+ Parameters: {"id"=>"me", "client_auth"=>"a123"}
268
+ Completed 200 OK in 1ms (Views: 0.2ms)
269
+ Processing by SessionsController#new as HTML
270
+ Completed 200 OK in 90ms (Views: 89.4ms)
271
+ Processing by SessionsController#create as HTML
272
+ Parameters: {"A"=>"a123", "login"=>"me"}
273
+ Completed 200 OK in 1ms (Views: 0.2ms)
274
+ Processing by SessionsController#create as HTML
275
+ Parameters: {"login"=>"login_that_does_not_exist"}
276
+ Completed 200 OK in 1ms (Views: 0.3ms)
277
+ Processing by UsersController#create as HTML
278
+ Parameters: {"user"=>{"login"=>"me", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
279
+
280
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
281
+
282
+ Redirected to http://test.host/
283
+ Completed 302 Found in 3ms
284
+ Processing by UsersController#new as HTML
285
+ Completed 200 OK in 19ms (Views: 18.2ms)
286
+ Processing by UsersController#create as HTML
287
+ Parameters: {"user"=>{"login"=>"me"}}
288
+
289
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
290
+
291
+ Redirected to http://test.host/users/new
292
+ Completed 302 Found in 2ms
293
+
294
+
295
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:34:21 +0200 2012
296
+ Processing by UsersController#create as JSON
297
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"integration_test_user", "password_salt"=>"[FILTERED]"}}
298
+
299
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
300
+
301
+ Completed 201 Created in 96ms (Views: 0.3ms)
302
+
303
+
304
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:34:21 +0200 2012
305
+ Processing by UsersController#create as JSON
306
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"integration_test_user", "password_salt"=>"[FILTERED]"}}
307
+
308
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
309
+
310
+ Completed 201 Created in 12ms (Views: 0.3ms)
311
+
312
+
313
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:34:21 +0200 2012
314
+ Processing by UsersController#create as JSON
315
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"integration_test_user", "password_salt"=>"[FILTERED]"}}
316
+
317
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
318
+
319
+ Completed 201 Created in 13ms (Views: 0.2ms)
320
+ Processing by SessionsController#destroy as HTML
321
+ Redirected to http://test.host/
322
+ Completed 302 Found in 1ms
323
+ Processing by SessionsController#update as HTML
324
+ Parameters: {"id"=>"me", "client_auth"=>"a123"}
325
+ Completed 200 OK in 1ms (Views: 0.3ms)
326
+ Processing by SessionsController#new as HTML
327
+ Completed 200 OK in 212ms (Views: 211.6ms)
328
+ Processing by SessionsController#create as HTML
329
+ Parameters: {"login"=>"me", "A"=>"a123"}
330
+ Completed 200 OK in 1ms (Views: 0.2ms)
331
+ Processing by SessionsController#create as HTML
332
+ Parameters: {"login"=>"login_that_does_not_exist"}
333
+ Completed 200 OK in 1ms (Views: 0.3ms)
334
+ Processing by UsersController#create as HTML
335
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"me", "password_salt"=>"[FILTERED]"}}
336
+
337
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
338
+
339
+ Redirected to http://test.host/
340
+ Completed 302 Found in 3ms
341
+ Processing by UsersController#new as HTML
342
+ Completed 200 OK in 35ms (Views: 34.5ms)
343
+ Processing by UsersController#create as HTML
344
+ Parameters: {"user"=>{"login"=>"me"}}
345
+
346
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
347
+
348
+ Redirected to http://test.host/users/new
349
+ Completed 302 Found in 1ms
350
+
351
+
352
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:35:32 +0200 2012
353
+ Processing by UsersController#create as JSON
354
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
355
+
356
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
357
+
358
+ Completed 201 Created in 50ms (Views: 0.3ms)
359
+
360
+
361
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:35:32 +0200 2012
362
+ Processing by UsersController#create as JSON
363
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
364
+
365
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
366
+
367
+ Completed 201 Created in 18ms (Views: 0.3ms)
368
+
369
+
370
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:35:32 +0200 2012
371
+ Processing by UsersController#create as JSON
372
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
373
+
374
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
375
+
376
+ Completed 201 Created in 13ms (Views: 0.3ms)
377
+ Processing by SessionsController#destroy as HTML
378
+ Redirected to http://test.host/
379
+ Completed 302 Found in 1ms
380
+ Processing by SessionsController#update as HTML
381
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
382
+ Completed 200 OK in 1ms (Views: 0.2ms)
383
+ Processing by SessionsController#new as HTML
384
+ Completed 200 OK in 91ms (Views: 91.1ms)
385
+ Processing by SessionsController#create as HTML
386
+ Parameters: {"A"=>"a123", "login"=>"me"}
387
+ Completed 200 OK in 1ms (Views: 0.2ms)
388
+ Processing by SessionsController#create as HTML
389
+ Parameters: {"login"=>"login_that_does_not_exist"}
390
+ Completed 200 OK in 1ms (Views: 0.3ms)
391
+ Processing by SessionsController#update as HTML
392
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
393
+ Completed 200 OK in 1ms (Views: 0.3ms)
394
+ Processing by UsersController#create as HTML
395
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"me"}}
396
+
397
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
398
+
399
+ Redirected to http://test.host/
400
+ Completed 302 Found in 2ms
401
+ Processing by UsersController#new as HTML
402
+ Completed 200 OK in 18ms (Views: 17.6ms)
403
+ Processing by UsersController#create as HTML
404
+ Parameters: {"user"=>{"login"=>"me"}}
405
+
406
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
407
+
408
+ Redirected to http://test.host/users/new
409
+ Completed 302 Found in 1ms
410
+
411
+
412
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:47:02 +0200 2012
413
+ Processing by UsersController#create as JSON
414
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
415
+
416
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
417
+
418
+ Completed 201 Created in 52ms (Views: 0.3ms)
419
+
420
+
421
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:47:02 +0200 2012
422
+ Processing by UsersController#create as JSON
423
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
424
+
425
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
426
+
427
+ Completed 201 Created in 16ms (Views: 0.2ms)
428
+
429
+
430
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:47:02 +0200 2012
431
+ Processing by UsersController#create as JSON
432
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
433
+
434
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
435
+
436
+ Completed 201 Created in 12ms (Views: 0.2ms)
437
+ Processing by SessionsController#destroy as HTML
438
+ Redirected to http://test.host/
439
+ Completed 302 Found in 1ms
440
+ Processing by SessionsController#update as HTML
441
+ Parameters: {"id"=>"me", "client_auth"=>"a123"}
442
+ Completed 200 OK in 1ms (Views: 0.2ms)
443
+ Processing by SessionsController#new as HTML
444
+ Completed 200 OK in 38ms (Views: 38.2ms)
445
+ Processing by SessionsController#create as HTML
446
+ Parameters: {"login"=>"me", "A"=>"a123"}
447
+ Completed 200 OK in 1ms (Views: 0.2ms)
448
+ Processing by SessionsController#create as HTML
449
+ Parameters: {"login"=>"login_that_does_not_exist"}
450
+ Completed 200 OK in 0ms (Views: 0.3ms)
451
+ Processing by SessionsController#update as HTML
452
+ Parameters: {"id"=>"me", "client_auth"=>"a123"}
453
+ Completed 200 OK in 0ms (Views: 0.3ms)
454
+ Processing by UsersController#create as HTML
455
+ Parameters: {"user"=>{"login"=>"me", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
456
+
457
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
458
+
459
+ Redirected to http://test.host/
460
+ Completed 302 Found in 2ms
461
+ Processing by UsersController#new as HTML
462
+ Completed 200 OK in 18ms (Views: 17.2ms)
463
+ Processing by UsersController#create as HTML
464
+ Parameters: {"user"=>{"login"=>"me"}}
465
+
466
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
467
+
468
+ Redirected to http://test.host/users/new
469
+ Completed 302 Found in 2ms
470
+
471
+
472
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:47:14 +0200 2012
473
+ Processing by UsersController#create as JSON
474
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"integration_test_user", "password_salt"=>"[FILTERED]"}}
475
+
476
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
477
+
478
+ Completed 201 Created in 50ms (Views: 0.3ms)
479
+
480
+
481
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:47:14 +0200 2012
482
+ Processing by UsersController#create as JSON
483
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"integration_test_user", "password_salt"=>"[FILTERED]"}}
484
+
485
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
486
+
487
+ Completed 201 Created in 14ms (Views: 0.2ms)
488
+
489
+
490
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:47:15 +0200 2012
491
+ Processing by UsersController#create as JSON
492
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"integration_test_user", "password_salt"=>"[FILTERED]"}}
493
+
494
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
495
+
496
+ Completed 201 Created in 13ms (Views: 0.2ms)
497
+ Processing by SessionsController#destroy as HTML
498
+ Redirected to http://test.host/
499
+ Completed 302 Found in 1ms
500
+ Processing by SessionsController#update as HTML
501
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
502
+ Completed 200 OK in 1ms (Views: 0.2ms)
503
+ Processing by SessionsController#new as HTML
504
+ Completed 200 OK in 38ms (Views: 37.6ms)
505
+ Processing by SessionsController#create as HTML
506
+ Parameters: {"A"=>"a123", "login"=>"me"}
507
+ Completed 200 OK in 1ms (Views: 0.2ms)
508
+ Processing by SessionsController#create as HTML
509
+ Parameters: {"login"=>"login_that_does_not_exist"}
510
+ Completed 200 OK in 0ms (Views: 0.3ms)
511
+ Processing by SessionsController#update as HTML
512
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
513
+ Completed 200 OK in 0ms (Views: 0.2ms)
514
+ Processing by UsersController#create as HTML
515
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "login"=>"me", "password_salt"=>"[FILTERED]"}}
516
+
517
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
518
+
519
+ Redirected to http://test.host/
520
+ Completed 302 Found in 3ms
521
+ Processing by UsersController#new as HTML
522
+ Completed 200 OK in 17ms (Views: 17.0ms)
523
+ Processing by UsersController#create as HTML
524
+ Parameters: {"user"=>{"login"=>"me"}}
525
+
526
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
527
+
528
+ Redirected to http://test.host/users/new
529
+ Completed 302 Found in 1ms
530
+
531
+
532
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:53:07 +0200 2012
533
+ Processing by UsersController#create as JSON
534
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
535
+
536
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
537
+
538
+ Completed 201 Created in 56ms (Views: 0.3ms)
539
+
540
+
541
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 09:53:07 +0200 2012
542
+ Processing by SessionsController#create as HTML
543
+ Parameters: {"login"=>"integration_test_user", "A"=>"86b7b6251081d6cc54e23706ecb92019f7eb770dbe9161e97371a155aa3ba904"}
544
+ Completed 200 OK in 8ms (Views: 0.3ms)
545
+
546
+
547
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 09:53:07 +0200 2012
548
+ Processing by SessionsController#update as HTML
549
+ Parameters: {"id"=>"integration_test_user", "client_auth"=>"6fe632efa6c4bc707cbca53bdc327e3ac0e8dd3de06ec60cc70ae66bccffbec5"}
550
+ Completed 200 OK in 69ms (Views: 0.3ms)
551
+
552
+
553
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:53:07 +0200 2012
554
+ Processing by UsersController#create as JSON
555
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
556
+
557
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
558
+
559
+ Completed 201 Created in 16ms (Views: 0.3ms)
560
+
561
+
562
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 09:53:07 +0200 2012
563
+ Processing by SessionsController#create as HTML
564
+ Parameters: {"login"=>"integration_test_user", "A"=>"54dbd0535db592074d3993038676039e05e09704f53b893311d0a069a520ee5a"}
565
+ Completed 200 OK in 8ms (Views: 0.3ms)
566
+
567
+
568
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 09:53:07 +0200 2012
569
+ Processing by SessionsController#update as HTML
570
+ Parameters: {"id"=>"integration_test_user", "client_auth"=>"6c731717540ed41bd701ec7672d8e1d9b11c7bd7e66d866d564241aa012d3eba"}
571
+ Completed 200 OK in 9ms (Views: 0.4ms)
572
+
573
+
574
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:53:07 +0200 2012
575
+ Processing by UsersController#create as JSON
576
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
577
+
578
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
579
+
580
+ Completed 201 Created in 15ms (Views: 0.3ms)
581
+
582
+
583
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 09:53:07 +0200 2012
584
+ Processing by SessionsController#create as HTML
585
+ Parameters: {"login"=>"wronglogin", "A"=>"736077507e34ed76a8510cb691647084d98fdd386d460c84228e2085eea6cf60"}
586
+ Completed 200 OK in 64ms (Views: 0.4ms)
587
+ Processing by SessionsController#destroy as HTML
588
+ Redirected to http://test.host/
589
+ Completed 302 Found in 1ms
590
+ Processing by SessionsController#update as HTML
591
+ Parameters: {"id"=>"me", "client_auth"=>"a123"}
592
+ Completed 200 OK in 0ms (Views: 0.2ms)
593
+ Processing by SessionsController#new as HTML
594
+ Completed 200 OK in 40ms (Views: 40.0ms)
595
+ Processing by SessionsController#create as HTML
596
+ Parameters: {"login"=>"me", "A"=>"a123"}
597
+ Completed 200 OK in 1ms (Views: 0.2ms)
598
+ Processing by SessionsController#create as HTML
599
+ Parameters: {"login"=>"login_that_does_not_exist"}
600
+ Completed 200 OK in 1ms (Views: 0.3ms)
601
+ Processing by SessionsController#update as HTML
602
+ Parameters: {"id"=>"me", "client_auth"=>"a123"}
603
+ Completed 200 OK in 1ms (Views: 0.3ms)
604
+ Processing by UsersController#create as HTML
605
+ Parameters: {"user"=>{"login"=>"me", "password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]"}}
606
+
607
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
608
+
609
+ Redirected to http://test.host/
610
+ Completed 302 Found in 5ms
611
+ Processing by UsersController#new as HTML
612
+ Completed 200 OK in 24ms (Views: 23.4ms)
613
+ Processing by UsersController#create as HTML
614
+ Parameters: {"user"=>{"login"=>"me"}}
615
+
616
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
617
+
618
+ Redirected to http://test.host/users/new
619
+ Completed 302 Found in 1ms
620
+ Processing by SessionsController#destroy as HTML
621
+ Redirected to http://test.host/
622
+ Completed 302 Found in 1ms
623
+ Processing by SessionsController#update as HTML
624
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
625
+ Completed 200 OK in 1ms (Views: 0.2ms)
626
+ Processing by SessionsController#new as HTML
627
+ Completed 200 OK in 100ms (Views: 100.1ms)
628
+ Processing by SessionsController#create as HTML
629
+ Parameters: {"login"=>"me", "A"=>"a123"}
630
+ Completed 200 OK in 1ms (Views: 0.2ms)
631
+ Processing by SessionsController#create as HTML
632
+ Parameters: {"login"=>"login_that_does_not_exist"}
633
+ Completed 200 OK in 0ms (Views: 0.2ms)
634
+ Processing by SessionsController#update as HTML
635
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
636
+ Completed 200 OK in 1ms (Views: 0.3ms)
637
+ Processing by UsersController#create as HTML
638
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"me"}}
639
+
640
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
641
+
642
+ Redirected to http://test.host/
643
+ Completed 302 Found in 8ms
644
+ Processing by UsersController#new as HTML
645
+ Completed 200 OK in 100ms (Views: 99.0ms)
646
+ Processing by UsersController#create as HTML
647
+ Parameters: {"user"=>{"login"=>"me"}}
648
+
649
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
650
+
651
+ Redirected to http://test.host/users/new
652
+ Completed 302 Found in 1ms
653
+
654
+
655
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:56:16 +0200 2012
656
+ Processing by UsersController#create as JSON
657
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]"}}
658
+
659
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
660
+
661
+ Completed 201 Created in 52ms (Views: 0.3ms)
662
+
663
+
664
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 09:56:16 +0200 2012
665
+ Processing by SessionsController#create as HTML
666
+ Parameters: {"login"=>"integration_test_user", "A"=>"18d5f90618da300e42ddfca4ae0892d70188fc1bd15806a62e9727694d048d41"}
667
+ Completed 200 OK in 7ms (Views: 0.2ms)
668
+
669
+
670
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 09:56:16 +0200 2012
671
+ Processing by SessionsController#update as HTML
672
+ Parameters: {"id"=>"integration_test_user", "client_auth"=>"c9669e6d2e637a2dd4c88f1e14dac9411feff213a594d5375392fd9507be7554"}
673
+ Completed 200 OK in 12ms (Views: 0.3ms)
674
+
675
+
676
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:56:16 +0200 2012
677
+ Processing by UsersController#create as JSON
678
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]"}}
679
+
680
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
681
+
682
+ Completed 201 Created in 11ms (Views: 0.2ms)
683
+
684
+
685
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 09:56:16 +0200 2012
686
+ Processing by SessionsController#create as HTML
687
+ Parameters: {"login"=>"integration_test_user", "A"=>"5c888674fc202f583edb74ddd76d51d1d91f29ef13f275e0e6590f489697b984"}
688
+ Completed 200 OK in 7ms (Views: 0.2ms)
689
+
690
+
691
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 09:56:16 +0200 2012
692
+ Processing by SessionsController#update as HTML
693
+ Parameters: {"id"=>"integration_test_user", "client_auth"=>"a69f83478fb2794670d4a01f1d8fafc3aab9552dff2e40608fc0c1465d503000"}
694
+ Completed 200 OK in 9ms (Views: 0.3ms)
695
+
696
+
697
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:56:16 +0200 2012
698
+ Processing by UsersController#create as JSON
699
+ Parameters: {"user"=>{"login"=>"integration_test_user", "password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]"}}
700
+
701
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
702
+
703
+ Completed 201 Created in 14ms (Views: 0.2ms)
704
+
705
+
706
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 09:56:16 +0200 2012
707
+ Processing by SessionsController#create as HTML
708
+ Parameters: {"login"=>"wronglogin", "A"=>"1d4dd9d87394fb996cf5c9cd26ceae999ee91d6e918ae4898487d29299f97def"}
709
+ Completed 200 OK in 4ms (Views: 0.4ms)
710
+
711
+
712
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:58:23 +0200 2012
713
+ Processing by UsersController#create as JSON
714
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
715
+
716
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
717
+
718
+ Completed 201 Created in 53ms (Views: 0.7ms)
719
+
720
+
721
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 09:58:23 +0200 2012
722
+ Processing by SessionsController#create as HTML
723
+ Parameters: {"A"=>"f13b416ca8f8f26d00e005fadd4c94744ff866110f9d090ae23ac249a7da6079", "login"=>"integration_test_user"}
724
+ Completed 200 OK in 6ms (Views: 0.2ms)
725
+
726
+
727
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 09:58:23 +0200 2012
728
+ Processing by SessionsController#update as HTML
729
+ Parameters: {"client_auth"=>"608400e10ba35bb964b1e2d69d141484f7ed1307a77f1f991e33bb713906b00c", "id"=>"integration_test_user"}
730
+ Completed 200 OK in 61ms (Views: 0.3ms)
731
+
732
+
733
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:58:23 +0200 2012
734
+ Processing by UsersController#create as JSON
735
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
736
+
737
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
738
+
739
+ Completed 201 Created in 13ms (Views: 0.3ms)
740
+
741
+
742
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 09:58:23 +0200 2012
743
+ Processing by SessionsController#create as HTML
744
+ Parameters: {"A"=>"73f9bc1a40ae806817f6cab3a355f9c575d7574402b426b89c2c66d1c39ab82a", "login"=>"integration_test_user"}
745
+ Completed 200 OK in 9ms (Views: 0.3ms)
746
+
747
+
748
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 09:58:23 +0200 2012
749
+ Processing by SessionsController#update as HTML
750
+ Parameters: {"client_auth"=>"79473702fd2354792f4403f7116bd664b5f799cb40f328422c02a07cf0a1623e", "id"=>"integration_test_user"}
751
+ Completed 200 OK in 9ms (Views: 0.4ms)
752
+
753
+
754
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 09:58:23 +0200 2012
755
+ Processing by UsersController#create as JSON
756
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
757
+
758
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
759
+
760
+ Completed 201 Created in 12ms (Views: 0.3ms)
761
+
762
+
763
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 09:58:23 +0200 2012
764
+ Processing by SessionsController#create as HTML
765
+ Parameters: {"A"=>"a84357df5892d8cdf74d55947f7ac8edbcea92c8a19af7403ec3db027dd8ebc8", "login"=>"wronglogin"}
766
+ Completed 200 OK in 5ms (Views: 0.3ms)
767
+ Processing by SessionsController#destroy as HTML
768
+ Redirected to http://test.host/
769
+ Completed 302 Found in 1ms
770
+ Processing by SessionsController#update as HTML
771
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
772
+ Completed 200 OK in 0ms (Views: 0.2ms)
773
+ Processing by SessionsController#new as HTML
774
+ Completed 200 OK in 94ms (Views: 93.5ms)
775
+ Processing by SessionsController#create as HTML
776
+ Parameters: {"A"=>"a123", "login"=>"me"}
777
+ Completed 200 OK in 0ms (Views: 0.2ms)
778
+ Processing by SessionsController#create as HTML
779
+ Parameters: {"login"=>"login_that_does_not_exist"}
780
+ Completed 200 OK in 1ms (Views: 0.3ms)
781
+ Processing by SessionsController#update as HTML
782
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
783
+ Completed 200 OK in 1ms (Views: 0.3ms)
784
+ Processing by UsersController#create as HTML
785
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"me"}}
786
+
787
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
788
+
789
+ Redirected to http://test.host/
790
+ Completed 302 Found in 3ms
791
+ Processing by UsersController#new as HTML
792
+ Completed 200 OK in 20ms (Views: 19.0ms)
793
+ Processing by UsersController#create as HTML
794
+ Parameters: {"user"=>{"login"=>"me"}}
795
+
796
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
797
+
798
+ Redirected to http://test.host/users/new
799
+ Completed 302 Found in 1ms
800
+
801
+
802
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 10:36:38 +0200 2012
803
+ Processing by UsersController#create as JSON
804
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "login"=>"integration_test_user", "password_verifier"=>"[FILTERED]"}}
805
+
806
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
807
+
808
+ Completed 201 Created in 49ms (Views: 0.3ms)
809
+
810
+
811
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 10:36:38 +0200 2012
812
+ Processing by SessionsController#create as HTML
813
+ Parameters: {"login"=>"integration_test_user", "A"=>"2f856f5d037678c93fe314de8368100990c6ff2262f05b6a839e85dfa24677b"}
814
+ Completed 200 OK in 8ms (Views: 0.2ms)
815
+
816
+
817
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 10:36:38 +0200 2012
818
+ Processing by SessionsController#update as HTML
819
+ Parameters: {"client_auth"=>"efaf709c62d216af9651ddba8025f54d22dcec60907bd74e78fc8cf48529a86e", "id"=>"integration_test_user"}
820
+ Completed 200 OK in 62ms (Views: 0.3ms)
821
+
822
+
823
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 10:36:38 +0200 2012
824
+ Processing by UsersController#create as JSON
825
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "login"=>"integration_test_user", "password_verifier"=>"[FILTERED]"}}
826
+
827
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
828
+
829
+ Completed 201 Created in 13ms (Views: 0.2ms)
830
+
831
+
832
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 10:36:38 +0200 2012
833
+ Processing by SessionsController#create as HTML
834
+ Parameters: {"login"=>"integration_test_user", "A"=>"2b61fe1e9c6dcf534267f898677aaff6dacb3ba59d7f7f73d20a3653aea5d5e3"}
835
+ Completed 200 OK in 9ms (Views: 0.3ms)
836
+
837
+
838
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 10:36:38 +0200 2012
839
+ Processing by SessionsController#update as HTML
840
+ Parameters: {"client_auth"=>"61fa2879b62eacf34216d4b9560a64dd30541fc71192984fdbd7113dbc25f00a", "id"=>"integration_test_user"}
841
+ Completed 200 OK in 9ms (Views: 0.4ms)
842
+
843
+
844
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 10:36:38 +0200 2012
845
+ Processing by UsersController#create as JSON
846
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "login"=>"integration_test_user", "password_verifier"=>"[FILTERED]"}}
847
+
848
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
849
+
850
+ Completed 201 Created in 15ms (Views: 0.3ms)
851
+
852
+
853
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 10:36:38 +0200 2012
854
+ Processing by SessionsController#create as HTML
855
+ Parameters: {"login"=>"wronglogin", "A"=>"f7fe517fb7aefc41633d1e2f0b4df845321479f37ffc713407daff0d9551e14e"}
856
+ Completed 200 OK in 5ms (Views: 0.5ms)
857
+ Processing by SessionsController#destroy as HTML
858
+ Redirected to http://test.host/
859
+ Completed 302 Found in 1ms
860
+ Processing by SessionsController#update as HTML
861
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
862
+ Completed 200 OK in 1ms (Views: 0.3ms)
863
+ Processing by SessionsController#new as HTML
864
+ Completed 200 OK in 89ms (Views: 89.2ms)
865
+ Processing by SessionsController#create as HTML
866
+ Parameters: {"login"=>"me", "A"=>"a123"}
867
+ Completed 200 OK in 0ms (Views: 0.2ms)
868
+ Processing by SessionsController#create as HTML
869
+ Parameters: {"login"=>"login_that_does_not_exist"}
870
+ Completed 200 OK in 1ms (Views: 0.3ms)
871
+ Processing by SessionsController#update as HTML
872
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
873
+ Completed 200 OK in 1ms (Views: 0.3ms)
874
+ Processing by UsersController#new as HTML
875
+ Completed 200 OK in 29ms (Views: 28.0ms)
876
+
877
+
878
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 10:37:34 +0200 2012
879
+ Processing by UsersController#create as JSON
880
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
881
+
882
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
883
+
884
+ Completed 201 Created in 49ms (Views: 0.3ms)
885
+
886
+
887
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 10:37:34 +0200 2012
888
+ Processing by SessionsController#create as HTML
889
+ Parameters: {"A"=>"799c9b3dd2e5e8819b602709392116adda74a2bf9b9099067c9053b5ac451e8d", "login"=>"integration_test_user"}
890
+ Completed 200 OK in 6ms (Views: 0.2ms)
891
+
892
+
893
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 10:37:34 +0200 2012
894
+ Processing by SessionsController#update as HTML
895
+ Parameters: {"client_auth"=>"95bb7fbdbe81bb4a23979b454fe411f30cbe84c38addc36c681a70fe3e9d1954", "id"=>"integration_test_user"}
896
+ Completed 200 OK in 61ms (Views: 0.3ms)
897
+
898
+
899
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 10:37:34 +0200 2012
900
+ Processing by UsersController#create as JSON
901
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
902
+
903
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
904
+
905
+ Completed 201 Created in 12ms (Views: 0.2ms)
906
+
907
+
908
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 10:37:34 +0200 2012
909
+ Processing by SessionsController#create as HTML
910
+ Parameters: {"A"=>"dd43208fd903fa0566b28762747ba5c5c9d14d2483254078247c8066068e8843", "login"=>"integration_test_user"}
911
+ Completed 200 OK in 7ms (Views: 0.3ms)
912
+
913
+
914
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 10:37:34 +0200 2012
915
+ Processing by SessionsController#update as HTML
916
+ Parameters: {"client_auth"=>"c22060242c28c76491026a98b812d16a94bac821d3c32443810ce1ed12ed3b9b", "id"=>"integration_test_user"}
917
+ Completed 200 OK in 8ms (Views: 0.3ms)
918
+
919
+
920
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 10:37:34 +0200 2012
921
+ Processing by UsersController#create as JSON
922
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
923
+
924
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
925
+
926
+ Completed 201 Created in 12ms (Views: 0.3ms)
927
+
928
+
929
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 10:37:34 +0200 2012
930
+ Processing by SessionsController#create as HTML
931
+ Parameters: {"A"=>"70310508bd80485f27e7b073ca4df34b6f2385eab38982e4d9470af4044d934a", "login"=>"wronglogin"}
932
+ Completed 200 OK in 4ms (Views: 0.3ms)
933
+ Processing by SessionsController#destroy as HTML
934
+ Redirected to http://test.host/
935
+ Completed 302 Found in 1ms
936
+ Processing by SessionsController#update as HTML
937
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
938
+ Completed 200 OK in 1ms (Views: 0.2ms)
939
+ Processing by SessionsController#new as HTML
940
+ Completed 200 OK in 90ms (Views: 89.3ms)
941
+ Processing by SessionsController#create as HTML
942
+ Parameters: {"A"=>"a123", "login"=>"me"}
943
+ Completed 200 OK in 1ms (Views: 0.2ms)
944
+ Processing by SessionsController#create as HTML
945
+ Parameters: {"login"=>"login_that_does_not_exist"}
946
+ Completed 200 OK in 1ms (Views: 0.3ms)
947
+ Processing by SessionsController#update as HTML
948
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
949
+ Completed 200 OK in 1ms (Views: 0.3ms)
950
+ Processing by UsersController#create as HTML
951
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"me"}}
952
+
953
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
954
+
955
+ Redirected to http://test.host/
956
+ Completed 302 Found in 3ms
957
+ Processing by UsersController#new as HTML
958
+ Completed 200 OK in 18ms (Views: 17.6ms)
959
+ Processing by UsersController#create as HTML
960
+ Parameters: {"user"=>{"login"=>"me"}}
961
+
962
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
963
+
964
+ Redirected to http://test.host/users/new
965
+ Completed 302 Found in 1ms
966
+
967
+
968
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 11:39:07 +0200 2012
969
+ Processing by UsersController#create as JSON
970
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
971
+
972
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
973
+
974
+ Completed 201 Created in 104ms (Views: 0.3ms)
975
+
976
+
977
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 11:39:07 +0200 2012
978
+ Processing by SessionsController#create as HTML
979
+ Parameters: {"login"=>"integration_test_user", "A"=>"42dc9d94507a80b9bb57bc77594e4c5938487bf36c72db98765522535bf54f5f"}
980
+ Completed 200 OK in 7ms (Views: 0.3ms)
981
+
982
+
983
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 11:39:07 +0200 2012
984
+ Processing by SessionsController#update as HTML
985
+ Parameters: {"client_auth"=>"52a9145dcde0842b075d41a82651a2de18bf4b283bca8e386e7f75410f3d6463", "id"=>"integration_test_user"}
986
+ Completed 200 OK in 11ms (Views: 0.3ms)
987
+
988
+
989
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 11:39:07 +0200 2012
990
+ Processing by UsersController#create as JSON
991
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
992
+
993
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
994
+
995
+ Completed 201 Created in 12ms (Views: 0.2ms)
996
+
997
+
998
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 11:39:07 +0200 2012
999
+ Processing by SessionsController#create as HTML
1000
+ Parameters: {"login"=>"integration_test_user", "A"=>"df80bc7b52846fdb35c3a396432efe5963dc0f766ff4fe1b825462bf69ea8bf4"}
1001
+ Completed 200 OK in 9ms (Views: 0.3ms)
1002
+
1003
+
1004
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 11:39:07 +0200 2012
1005
+ Processing by SessionsController#update as HTML
1006
+ Parameters: {"client_auth"=>"5c4be413569756b55d6e3e8e8d7b76078a1fe080da39a410abb9085db2eb04fd", "id"=>"integration_test_user"}
1007
+ Completed 200 OK in 8ms (Views: 0.3ms)
1008
+
1009
+
1010
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 11:39:07 +0200 2012
1011
+ Processing by UsersController#create as JSON
1012
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"integration_test_user"}}
1013
+
1014
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
1015
+
1016
+ Completed 201 Created in 11ms (Views: 0.2ms)
1017
+
1018
+
1019
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 11:39:07 +0200 2012
1020
+ Processing by SessionsController#create as HTML
1021
+ Parameters: {"login"=>"wronglogin", "A"=>"2a73003b8c8ca88e6b051cbf344df5937530413998f13f85045ae31a5be8fb9"}
1022
+ Completed 200 OK in 54ms (Views: 0.4ms)
1023
+ Processing by SessionsController#destroy as HTML
1024
+ Redirected to http://test.host/
1025
+ Completed 302 Found in 1ms
1026
+ Processing by SessionsController#update as HTML
1027
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
1028
+ Completed 200 OK in 0ms (Views: 0.2ms)
1029
+ Processing by SessionsController#new as HTML
1030
+ Completed 200 OK in 39ms (Views: 38.4ms)
1031
+ Processing by SessionsController#create as HTML
1032
+ Parameters: {"login"=>"me", "A"=>"a123"}
1033
+ Completed 200 OK in 0ms (Views: 0.2ms)
1034
+ Processing by SessionsController#create as HTML
1035
+ Parameters: {"login"=>"login_that_does_not_exist"}
1036
+ Completed 200 OK in 0ms (Views: 0.3ms)
1037
+ Processing by SessionsController#update as HTML
1038
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
1039
+ Completed 200 OK in 1ms (Views: 0.3ms)
1040
+ Processing by UsersController#create as HTML
1041
+ Parameters: {"user"=>{"password_verifier"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "login"=>"me"}}
1042
+
1043
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
1044
+
1045
+ Redirected to http://test.host/
1046
+ Completed 302 Found in 3ms
1047
+ Processing by UsersController#new as HTML
1048
+ Completed 200 OK in 18ms (Views: 17.3ms)
1049
+ Processing by UsersController#create as HTML
1050
+ Parameters: {"user"=>{"login"=>"me"}}
1051
+
1052
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
1053
+
1054
+ Redirected to http://test.host/users/new
1055
+ Completed 302 Found in 1ms
1056
+
1057
+
1058
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 11:44:47 +0200 2012
1059
+ Processing by UsersController#create as JSON
1060
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
1061
+
1062
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
1063
+
1064
+ Completed 201 Created in 101ms (Views: 0.3ms)
1065
+
1066
+
1067
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 11:44:47 +0200 2012
1068
+ Processing by SessionsController#create as HTML
1069
+ Parameters: {"login"=>"integration_test_user", "A"=>"bf69e20fa47d287c51d632336596b41526f6c0cd3e2449bd960509a29bfa2961"}
1070
+ Completed 200 OK in 7ms (Views: 0.3ms)
1071
+
1072
+
1073
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 11:44:47 +0200 2012
1074
+ Processing by SessionsController#update as HTML
1075
+ Parameters: {"client_auth"=>"fed972599dd4e5b70f6bd0bd8a57be1b5e98ee096933b03c1ddd873f4a2657c1", "id"=>"integration_test_user"}
1076
+ Completed 200 OK in 11ms (Views: 0.3ms)
1077
+
1078
+
1079
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 11:44:47 +0200 2012
1080
+ Processing by UsersController#create as JSON
1081
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
1082
+
1083
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
1084
+
1085
+ Completed 201 Created in 12ms (Views: 0.2ms)
1086
+
1087
+
1088
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 11:44:47 +0200 2012
1089
+ Processing by SessionsController#create as HTML
1090
+ Parameters: {"login"=>"integration_test_user", "A"=>"d3e93135f8ad2360e2d589afc1882b1cea00cf4755cfc9b6afee5aafb0504f30"}
1091
+ Completed 200 OK in 7ms (Views: 0.3ms)
1092
+
1093
+
1094
+ Started PUT "/sessions/integration_test_user" for 127.0.0.1 at Fri Aug 24 11:44:47 +0200 2012
1095
+ Processing by SessionsController#update as HTML
1096
+ Parameters: {"client_auth"=>"157dbd5ac6385e60f0f5bab7150cce8ee92441e4596194ab177683be963eca7f", "id"=>"integration_test_user"}
1097
+ Completed 200 OK in 8ms (Views: 0.3ms)
1098
+
1099
+
1100
+ Started POST "/users.json" for 127.0.0.1 at Fri Aug 24 11:44:47 +0200 2012
1101
+ Processing by UsersController#create as JSON
1102
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"integration_test_user"}}
1103
+
1104
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
1105
+
1106
+ Completed 201 Created in 11ms (Views: 0.2ms)
1107
+
1108
+
1109
+ Started POST "/sessions" for 127.0.0.1 at Fri Aug 24 11:44:47 +0200 2012
1110
+ Processing by SessionsController#create as HTML
1111
+ Parameters: {"login"=>"wronglogin", "A"=>"c285e722bc1d826a009e3d4fb5e92fd4ade4f00ba2d7b7d4946e3e1a404928b"}
1112
+ Completed 200 OK in 4ms (Views: 0.3ms)
1113
+ Processing by SessionsController#destroy as HTML
1114
+ Redirected to http://test.host/
1115
+ Completed 302 Found in 1ms
1116
+ Processing by SessionsController#update as HTML
1117
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
1118
+ Completed 200 OK in 0ms (Views: 0.2ms)
1119
+ Processing by SessionsController#new as HTML
1120
+ Completed 200 OK in 41ms (Views: 40.3ms)
1121
+ Processing by SessionsController#create as HTML
1122
+ Parameters: {"login"=>"me", "A"=>"a123"}
1123
+ Completed 200 OK in 0ms (Views: 0.2ms)
1124
+ Processing by SessionsController#create as HTML
1125
+ Parameters: {"login"=>"login_that_does_not_exist"}
1126
+ Completed 200 OK in 1ms (Views: 0.3ms)
1127
+ Processing by SessionsController#update as HTML
1128
+ Parameters: {"client_auth"=>"a123", "id"=>"me"}
1129
+ Completed 200 OK in 1ms (Views: 0.3ms)
1130
+ Processing by UsersController#create as HTML
1131
+ Parameters: {"user"=>{"password_salt"=>"[FILTERED]", "password_verifier"=>"[FILTERED]", "login"=>"me"}}
1132
+
1133
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
1134
+
1135
+ Redirected to http://test.host/
1136
+ Completed 302 Found in 3ms
1137
+ Processing by UsersController#new as HTML
1138
+ Completed 200 OK in 18ms (Views: 17.8ms)
1139
+ Processing by UsersController#create as HTML
1140
+ Parameters: {"user"=>{"login"=>"me"}}
1141
+
1142
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
1143
+
1144
+ Redirected to http://test.host/users/new
1145
+ Completed 302 Found in 1ms