maestrano-rails 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/maestrano/rails/models/maestrano_auth_resource.rb +7 -1
- data/lib/maestrano/rails/version.rb +1 -1
- data/test/{dummy → dummy_activerecord}/README.rdoc +0 -0
- data/test/{dummy → dummy_activerecord}/Rakefile +0 -0
- data/test/{dummy → dummy_activerecord}/app/assets/javascripts/application.js +0 -0
- data/test/{dummy → dummy_activerecord}/app/assets/javascripts/pages.js +0 -0
- data/test/{dummy → dummy_activerecord}/app/assets/stylesheets/application.css +0 -0
- data/test/{dummy → dummy_activerecord}/app/assets/stylesheets/pages.css +0 -0
- data/test/{dummy → dummy_activerecord}/app/controllers/application_controller.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/controllers/maestrano/account/group_users_controller.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/controllers/maestrano/account/groups_controller.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/controllers/maestrano/auth/saml_controller.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/controllers/pages_controller.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/helpers/application_helper.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/helpers/pages_helper.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/models/admin.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/models/admin/monster.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/models/mno_crew.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/models/mno_monster.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/models/monster.rb +0 -0
- data/test/{dummy → dummy_activerecord}/app/views/layouts/application.html.erb +0 -0
- data/test/{dummy → dummy_activerecord}/app/views/pages/home.html.erb +0 -0
- data/test/{dummy → dummy_activerecord}/config.ru +0 -0
- data/test/{dummy → dummy_activerecord}/config/application.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/boot.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/database.yml +0 -0
- data/test/{dummy → dummy_activerecord}/config/environment.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/environments/development.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/environments/production.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/environments/test.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/initializers/backtrace_silencers.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/initializers/inflections.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/initializers/maestrano.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/initializers/mime_types.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/initializers/secret_token.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/initializers/session_store.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/initializers/wrap_parameters.rb +0 -0
- data/test/{dummy → dummy_activerecord}/config/locales/en.yml +0 -0
- data/test/{dummy → dummy_activerecord}/config/routes.rb +0 -0
- data/test/{dummy → dummy_activerecord}/db/development.sqlite3 +0 -0
- data/test/{dummy → dummy_activerecord}/db/migrate/20140526125222_create_monsters.rb +0 -0
- data/test/{dummy → dummy_activerecord}/db/migrate/20140526125242_create_admin_monsters.rb +0 -0
- data/test/{dummy → dummy_activerecord}/db/migrate/20140526144828_create_mno_monsters.rb +0 -0
- data/test/{dummy → dummy_activerecord}/db/migrate/20140526151139_create_mno_crews.rb +0 -0
- data/test/{dummy → dummy_activerecord}/db/schema.rb +0 -0
- data/test/{dummy → dummy_activerecord}/db/test.sqlite3 +0 -0
- data/test/dummy_activerecord/log/development.log +76 -0
- data/test/dummy_activerecord/log/test.log +1761 -0
- data/test/{dummy → dummy_activerecord}/public/404.html +0 -0
- data/test/{dummy → dummy_activerecord}/public/422.html +0 -0
- data/test/{dummy → dummy_activerecord}/public/500.html +0 -0
- data/test/{dummy → dummy_activerecord}/public/favicon.ico +0 -0
- data/test/{dummy → dummy_activerecord}/script/rails +0 -0
- data/test/dummy_mongoid/README.rdoc +261 -0
- data/test/dummy_mongoid/Rakefile +7 -0
- data/test/dummy_mongoid/app/assets/javascripts/application.js +15 -0
- data/test/dummy_mongoid/app/assets/javascripts/pages.js +2 -0
- data/test/dummy_mongoid/app/assets/stylesheets/application.css +13 -0
- data/test/dummy_mongoid/app/assets/stylesheets/pages.css +4 -0
- data/test/dummy_mongoid/app/controllers/application_controller.rb +3 -0
- data/test/dummy_mongoid/app/controllers/maestrano/account/group_users_controller.rb +27 -0
- data/test/dummy_mongoid/app/controllers/maestrano/account/groups_controller.rb +37 -0
- data/test/dummy_mongoid/app/controllers/maestrano/auth/saml_controller.rb +14 -0
- data/test/dummy_mongoid/app/controllers/pages_controller.rb +4 -0
- data/test/dummy_mongoid/app/helpers/application_helper.rb +2 -0
- data/test/dummy_mongoid/app/helpers/pages_helper.rb +2 -0
- data/test/dummy_mongoid/app/models/mno_crew.rb +11 -0
- data/test/dummy_mongoid/app/models/mno_monster.rb +14 -0
- data/test/dummy_mongoid/app/models/monster.rb +3 -0
- data/test/dummy_mongoid/app/views/layouts/application.html.erb +14 -0
- data/test/dummy_mongoid/app/views/pages/home.html.erb +2 -0
- data/test/dummy_mongoid/config.ru +4 -0
- data/test/dummy_mongoid/config/application.rb +59 -0
- data/test/dummy_mongoid/config/boot.rb +10 -0
- data/test/dummy_mongoid/config/environment.rb +5 -0
- data/test/dummy_mongoid/config/environments/development.rb +37 -0
- data/test/dummy_mongoid/config/environments/production.rb +67 -0
- data/test/dummy_mongoid/config/environments/test.rb +37 -0
- data/test/dummy_mongoid/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy_mongoid/config/initializers/inflections.rb +15 -0
- data/test/dummy_mongoid/config/initializers/maestrano.rb +85 -0
- data/test/dummy_mongoid/config/initializers/mime_types.rb +5 -0
- data/test/dummy_mongoid/config/initializers/secret_token.rb +7 -0
- data/test/dummy_mongoid/config/initializers/session_store.rb +8 -0
- data/test/dummy_mongoid/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy_mongoid/config/locales/en.yml +5 -0
- data/test/dummy_mongoid/config/mongoid.yml +80 -0
- data/test/dummy_mongoid/config/routes.rb +63 -0
- data/test/dummy_mongoid/db/migrate/20140526125222_create_monsters.rb +8 -0
- data/test/dummy_mongoid/db/migrate/20140526125242_create_admin_monsters.rb +8 -0
- data/test/dummy_mongoid/db/migrate/20140526144828_create_mno_monsters.rb +13 -0
- data/test/dummy_mongoid/db/migrate/20140526151139_create_mno_crews.rb +11 -0
- data/test/dummy_mongoid/db/schema.rb +44 -0
- data/test/dummy_mongoid/log/test.log +244 -0
- data/test/dummy_mongoid/public/404.html +26 -0
- data/test/dummy_mongoid/public/422.html +26 -0
- data/test/dummy_mongoid/public/500.html +25 -0
- data/test/dummy_mongoid/public/favicon.ico +0 -0
- data/test/dummy_mongoid/script/rails +6 -0
- data/test/generators/group/active_record_generator_test.rb +1 -1
- data/test/generators/group/mongoid_generator_test.rb +1 -1
- data/test/generators/group_generator_test.rb +1 -1
- data/test/generators/user/active_record_generator_test.rb +1 -1
- data/test/generators/user/mongoid_generator_test.rb +1 -1
- data/test/generators/user_generator_test.rb +1 -1
- data/test/test_helper.rb +20 -2
- metadata +312 -217
- checksums.yaml +0 -7
- data/test/dummy/log/development.log +0 -44
- data/test/dummy/log/test.log +0 -6179
- data/test/dummy/test/fixtures/admin/monsters.yml +0 -11
- data/test/dummy/test/fixtures/mno_crews.yml +0 -11
- data/test/dummy/test/fixtures/mno_monsters.yml +0 -15
- data/test/dummy/test/fixtures/monsters.yml +0 -11
- data/test/dummy/test/functional/pages_controller_test.rb +0 -9
- data/test/dummy/test/unit/admin/monster_test.rb +0 -7
- data/test/dummy/test/unit/helpers/pages_helper_test.rb +0 -4
- data/test/dummy/test/unit/mno_crew_test.rb +0 -7
- data/test/dummy/test/unit/mno_monster_test.rb +0 -7
- data/test/dummy/test/unit/monster_test.rb +0 -7
@@ -0,0 +1,63 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
get "pages/home"
|
3
|
+
|
4
|
+
maestrano_routes
|
5
|
+
|
6
|
+
root to: 'pages#home'
|
7
|
+
# The priority is based upon order of creation:
|
8
|
+
# first created -> highest priority.
|
9
|
+
|
10
|
+
# Sample of regular route:
|
11
|
+
# match 'products/:id' => 'catalog#view'
|
12
|
+
# Keep in mind you can assign values other than :controller and :action
|
13
|
+
|
14
|
+
# Sample of named route:
|
15
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
16
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
17
|
+
|
18
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
19
|
+
# resources :products
|
20
|
+
|
21
|
+
# Sample resource route with options:
|
22
|
+
# resources :products do
|
23
|
+
# member do
|
24
|
+
# get 'short'
|
25
|
+
# post 'toggle'
|
26
|
+
# end
|
27
|
+
#
|
28
|
+
# collection do
|
29
|
+
# get 'sold'
|
30
|
+
# end
|
31
|
+
# end
|
32
|
+
|
33
|
+
# Sample resource route with sub-resources:
|
34
|
+
# resources :products do
|
35
|
+
# resources :comments, :sales
|
36
|
+
# resource :seller
|
37
|
+
# end
|
38
|
+
|
39
|
+
# Sample resource route with more complex sub-resources
|
40
|
+
# resources :products do
|
41
|
+
# resources :comments
|
42
|
+
# resources :sales do
|
43
|
+
# get 'recent', :on => :collection
|
44
|
+
# end
|
45
|
+
# end
|
46
|
+
|
47
|
+
# Sample resource route within a namespace:
|
48
|
+
# namespace :admin do
|
49
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
50
|
+
# # (app/controllers/admin/products_controller.rb)
|
51
|
+
# resources :products
|
52
|
+
# end
|
53
|
+
|
54
|
+
# You can have the root of your site routed with "root"
|
55
|
+
# just remember to delete public/index.html.
|
56
|
+
# root :to => 'welcome#index'
|
57
|
+
|
58
|
+
# See how all your routes lay out with "rake routes"
|
59
|
+
|
60
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
61
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
62
|
+
# match ':controller(/:action(/:id))(.:format)'
|
63
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 20140526151139) do
|
15
|
+
|
16
|
+
create_table "admin_monsters", :force => true do |t|
|
17
|
+
t.datetime "created_at", :null => false
|
18
|
+
t.datetime "updated_at", :null => false
|
19
|
+
end
|
20
|
+
|
21
|
+
create_table "mno_crews", :force => true do |t|
|
22
|
+
t.string "name"
|
23
|
+
t.string "provider"
|
24
|
+
t.string "uid"
|
25
|
+
t.datetime "created_at", :null => false
|
26
|
+
t.datetime "updated_at", :null => false
|
27
|
+
end
|
28
|
+
|
29
|
+
create_table "mno_monsters", :force => true do |t|
|
30
|
+
t.string "first_name"
|
31
|
+
t.string "last_name"
|
32
|
+
t.string "email"
|
33
|
+
t.string "provider"
|
34
|
+
t.string "uid"
|
35
|
+
t.datetime "created_at", :null => false
|
36
|
+
t.datetime "updated_at", :null => false
|
37
|
+
end
|
38
|
+
|
39
|
+
create_table "monsters", :force => true do |t|
|
40
|
+
t.datetime "created_at", :null => false
|
41
|
+
t.datetime "updated_at", :null => false
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
@@ -0,0 +1,244 @@
|
|
1
|
+
MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
|
2
|
+
MONGODB (0.8ms) admin['$cmd'].find({:isMaster=>1}).limit(-1)
|
3
|
+
MONGODB (1.3ms) test['$cmd'].find({:create=>"mno_crews"}).limit(-1)
|
4
|
+
MONGODB (0.6ms) test['mno_crews'].find({:provider=>"maestrano", :uid=>"usr-2"}).limit(-1).sort([[:_id, :asc]])
|
5
|
+
MONGODB (0.2ms) test['mno_crews'].insert({"name"=>"Monster Co", "provider"=>"maestrano", "uid"=>"usr-2", "_id"=>BSON::ObjectId('539707e3572b6c18db000001')})
|
6
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
7
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
8
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
9
|
+
MONGODB (0.2ms) test['mno_crews'].insert({"name"=>"SomeOtherCrew", "provider"=>"someoneelse", "uid"=>"usr-1", "_id"=>BSON::ObjectId('539707e3572b6c18db000002')})
|
10
|
+
MONGODB (0.6ms) test['mno_crews'].find({:provider=>"maestrano", :uid=>"cld-1"}).limit(-1).sort([[:_id, :asc]])
|
11
|
+
MONGODB (0.1ms) test['mno_crews'].insert({"name"=>"Your Group", "provider"=>"maestrano", "uid"=>"cld-1", "_id"=>BSON::ObjectId('539707e3572b6c18db000003')})
|
12
|
+
MONGODB (0.6ms) test['system.namespaces'].find({})
|
13
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
14
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
15
|
+
MONGODB (0.2ms) test['mno_crews'].insert({"name"=>"SomeCrew", "provider"=>"maestrano", "uid"=>"cld-1", "_id"=>BSON::ObjectId('539707e3572b6c18db000004')})
|
16
|
+
MONGODB (0.7ms) test['mno_crews'].find({:provider=>"maestrano", :uid=>"cld-1"}).limit(-1).sort([[:_id, :asc]])
|
17
|
+
MONGODB (0.6ms) test['system.namespaces'].find({})
|
18
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
19
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
20
|
+
MONGODB (0.6ms) test['system.namespaces'].find({})
|
21
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
22
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
23
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
24
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
25
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
26
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
27
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
28
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
29
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
30
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
31
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
32
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
33
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
34
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
35
|
+
MONGODB (0.5ms) test['$cmd'].find({:create=>"mno_monsters"}).limit(-1)
|
36
|
+
MONGODB (0.8ms) test['mno_monsters'].find({:provider=>"maestrano", :uid=>"usr-2"}).limit(-1).sort([[:_id, :asc]])
|
37
|
+
MONGODB (0.5ms) test['mno_monsters'].insert({"email"=>"monster@monst.com", "first_name"=>"Mon", "last_name"=>"Ster", "provider"=>"maestrano", "uid"=>"usr-2", "_id"=>BSON::ObjectId('539707e3572b6c18db000008')})
|
38
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
39
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
40
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
41
|
+
MONGODB (0.2ms) test['mno_monsters'].insert({"email"=>"monster@co.com", "first_name"=>"John", "last_name"=>"Jack", "provider"=>"someoneelse", "uid"=>"usr-1", "_id"=>BSON::ObjectId('539707e3572b6c18db000009')})
|
42
|
+
MONGODB (0.6ms) test['mno_monsters'].find({:provider=>"maestrano", :uid=>"usr-1"}).limit(-1).sort([[:_id, :asc]])
|
43
|
+
MONGODB (0.1ms) test['mno_monsters'].insert({"email"=>nil, "first_name"=>nil, "last_name"=>nil, "provider"=>"maestrano", "uid"=>"usr-1", "_id"=>BSON::ObjectId('539707e3572b6c18db00000a')})
|
44
|
+
MONGODB (0.6ms) test['system.namespaces'].find({})
|
45
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
46
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
47
|
+
MONGODB (0.2ms) test['mno_monsters'].insert({"email"=>"monster@co.com", "first_name"=>"John", "last_name"=>"Jack", "provider"=>"maestrano", "uid"=>"usr-1", "_id"=>BSON::ObjectId('539707e3572b6c18db00000b')})
|
48
|
+
MONGODB (0.7ms) test['mno_monsters'].find({:provider=>"maestrano", :uid=>"usr-1"}).limit(-1).sort([[:_id, :asc]])
|
49
|
+
MONGODB (0.6ms) test['system.namespaces'].find({})
|
50
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
51
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
52
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
53
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
54
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
55
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
56
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
57
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
58
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
59
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
60
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
61
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
62
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
63
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
64
|
+
Processing by PagesController#home as HTML
|
65
|
+
Rendered pages/home.html.erb within layouts/application (20.7ms)
|
66
|
+
Completed 200 OK in 87.3ms (Views: 86.4ms)
|
67
|
+
MONGODB (1.1ms) test['system.namespaces'].find({})
|
68
|
+
MONGODB (0.8ms) test['mno_crews'].delete({})
|
69
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
70
|
+
Processing by PagesController#home as HTML
|
71
|
+
Redirected to http://localhost:3000/maestrano/auth/saml/init
|
72
|
+
Filter chain halted as :verify_maestrano_session rendered or redirected
|
73
|
+
Completed 302 Found in 0.5ms
|
74
|
+
MONGODB (0.8ms) test['system.namespaces'].find({})
|
75
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
76
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
77
|
+
Processing by PagesController#home as HTML
|
78
|
+
Completed 200 OK in 2.1ms (Views: 1.9ms)
|
79
|
+
MONGODB (0.8ms) test['system.namespaces'].find({})
|
80
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
81
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
82
|
+
Processing by PagesController#home as HTML
|
83
|
+
Completed 200 OK in 1.5ms (Views: 1.3ms)
|
84
|
+
MONGODB (0.6ms) test['system.namespaces'].find({})
|
85
|
+
MONGODB (0.3ms) test['mno_crews'].delete({})
|
86
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
87
|
+
Processing by Maestrano::Account::GroupUsersController#destroy as HTML
|
88
|
+
Parameters: {"group_id"=>"cld-1", "id"=>"usr-1"}
|
89
|
+
Completed 200 OK in 9.7ms (Views: 9.1ms)
|
90
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
91
|
+
MONGODB (0.3ms) test['mno_crews'].delete({})
|
92
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
93
|
+
Processing by Maestrano::Account::GroupUsersController#destroy as HTML
|
94
|
+
Parameters: {"group_id"=>"cld-1", "id"=>"usr-1"}
|
95
|
+
Filter chain halted as :authenticate_maestrano! rendered or redirected
|
96
|
+
Completed 401 Unauthorized in 0.3ms (Views: 0.2ms)
|
97
|
+
MONGODB (0.6ms) test['system.namespaces'].find({})
|
98
|
+
MONGODB (0.3ms) test['mno_crews'].delete({})
|
99
|
+
MONGODB (0.6ms) test['mno_monsters'].delete({})
|
100
|
+
Processing by Maestrano::Account::GroupsController#destroy as HTML
|
101
|
+
Parameters: {"id"=>"cld-1"}
|
102
|
+
Completed 200 OK in 1.3ms (Views: 0.7ms)
|
103
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
104
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
105
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
106
|
+
Processing by Maestrano::Account::GroupsController#destroy as HTML
|
107
|
+
Parameters: {"id"=>"cld-1"}
|
108
|
+
Filter chain halted as :authenticate_maestrano! rendered or redirected
|
109
|
+
Completed 401 Unauthorized in 0.5ms (Views: 0.3ms)
|
110
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
111
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
112
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
113
|
+
Processing by Maestrano::Rails::MetadataController#index as HTML
|
114
|
+
Completed 200 OK in 5.0ms (Views: 1.5ms)
|
115
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
116
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
117
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
118
|
+
Processing by Maestrano::Rails::MetadataController#index as HTML
|
119
|
+
Filter chain halted as :authenticate_maestrano! rendered or redirected
|
120
|
+
Completed 401 Unauthorized in 0.5ms (Views: 0.3ms)
|
121
|
+
MONGODB (1.0ms) test['system.namespaces'].find({})
|
122
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
123
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
124
|
+
Processing by Maestrano::Auth::SamlController#consume as HTML
|
125
|
+
Parameters: {"SAMLResponse"=>"g45ad5v40xc4b3fd478"}
|
126
|
+
Bla
|
127
|
+
Redirected to http://api-sandbox.maestrano.io/app_access_unauthorized?err=internal
|
128
|
+
Completed 302 Found in 1.2ms
|
129
|
+
MONGODB (1.2ms) test['system.namespaces'].find({})
|
130
|
+
MONGODB (0.6ms) test['mno_crews'].delete({})
|
131
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
132
|
+
Processing by Maestrano::Auth::SamlController#consume as HTML
|
133
|
+
Parameters: {"SAMLResponse"=>"g45ad5v40xc4b3fd478"}
|
134
|
+
Redirected to http://test.host/
|
135
|
+
Completed 302 Found in 1.6ms
|
136
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
137
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
138
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
139
|
+
Processing by Maestrano::Auth::SamlController#consume as HTML
|
140
|
+
Parameters: {"SAMLResponse"=>"g45ad5v40xc4b3fd478"}
|
141
|
+
Redirected to http://test.host/
|
142
|
+
Completed 302 Found in 1.3ms
|
143
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
144
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
145
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
146
|
+
Processing by Maestrano::Auth::SamlController#consume as HTML
|
147
|
+
Parameters: {"SAMLResponse"=>"g45ad5v40xc4b3fd478"}
|
148
|
+
Redirected to http://test.host/
|
149
|
+
Completed 302 Found in 0.9ms
|
150
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
151
|
+
MONGODB (0.3ms) test['mno_crews'].delete({})
|
152
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
153
|
+
Processing by Maestrano::Auth::SamlController#consume as HTML
|
154
|
+
Parameters: {"SAMLResponse"=>"g45ad5v40xc4b3fd478"}
|
155
|
+
Redirected to http://test.host/
|
156
|
+
Completed 302 Found in 0.8ms
|
157
|
+
MONGODB (0.8ms) test['system.namespaces'].find({})
|
158
|
+
MONGODB (1.0ms) test['mno_crews'].delete({})
|
159
|
+
MONGODB (0.5ms) test['mno_monsters'].delete({})
|
160
|
+
Processing by Maestrano::Auth::SamlController#consume as HTML
|
161
|
+
Parameters: {"SAMLResponse"=>"g45ad5v40xc4b3fd478"}
|
162
|
+
Redirected to http://test.host/
|
163
|
+
Completed 302 Found in 2.2ms
|
164
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
165
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
166
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
167
|
+
Processing by Maestrano::Auth::SamlController#consume as HTML
|
168
|
+
Parameters: {"SAMLResponse"=>"g45ad5v40xc4b3fd478"}
|
169
|
+
Redirected to http://test.host/
|
170
|
+
Completed 302 Found in 1.3ms
|
171
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
172
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
173
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
174
|
+
Processing by Maestrano::Auth::SamlController#init as HTML
|
175
|
+
Parameters: {"a_param"=>"value"}
|
176
|
+
Redirected to http://idpprovider.com?r=request
|
177
|
+
Completed 302 Found in 0.9ms
|
178
|
+
MONGODB (1.5ms) test['system.namespaces'].find({})
|
179
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
180
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
181
|
+
Processing by Maestrano::Auth::SamlController#init as HTML
|
182
|
+
Parameters: {"a_param"=>"value"}
|
183
|
+
Redirected to http://idpprovider.com?r=request
|
184
|
+
Completed 302 Found in 0.5ms
|
185
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
186
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
187
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
188
|
+
MONGODB (0.8ms) test['system.namespaces'].find({})
|
189
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
190
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
191
|
+
MONGODB (0.8ms) test['system.namespaces'].find({})
|
192
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
193
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
194
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
195
|
+
MONGODB (0.3ms) test['mno_crews'].delete({})
|
196
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
197
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
198
|
+
MONGODB (0.3ms) test['mno_crews'].delete({})
|
199
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
200
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
201
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
202
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
203
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
204
|
+
MONGODB (0.5ms) test['mno_crews'].delete({})
|
205
|
+
MONGODB (0.5ms) test['mno_monsters'].delete({})
|
206
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
207
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
208
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
209
|
+
MONGODB (0.8ms) test['system.namespaces'].find({})
|
210
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
211
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
212
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
213
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
214
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
215
|
+
MONGODB (1.0ms) test['system.namespaces'].find({})
|
216
|
+
MONGODB (0.6ms) test['mno_crews'].delete({})
|
217
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
218
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
219
|
+
MONGODB (0.3ms) test['mno_crews'].delete({})
|
220
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
221
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
222
|
+
MONGODB (0.3ms) test['mno_crews'].delete({})
|
223
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
224
|
+
MONGODB (0.8ms) test['system.namespaces'].find({})
|
225
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
226
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
227
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
228
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
229
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
230
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
231
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
232
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
233
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
234
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
235
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
236
|
+
MONGODB (0.6ms) test['system.namespaces'].find({})
|
237
|
+
MONGODB (0.3ms) test['mno_crews'].delete({})
|
238
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
239
|
+
MONGODB (0.7ms) test['system.namespaces'].find({})
|
240
|
+
MONGODB (0.4ms) test['mno_crews'].delete({})
|
241
|
+
MONGODB (0.4ms) test['mno_monsters'].delete({})
|
242
|
+
MONGODB (0.9ms) test['system.namespaces'].find({})
|
243
|
+
MONGODB (0.3ms) test['mno_crews'].delete({})
|
244
|
+
MONGODB (0.3ms) test['mno_monsters'].delete({})
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/404.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/422.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|