wobauth 3.4.4
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.
- checksums.yaml +7 -0
- data/README.md +165 -0
- data/Rakefile +30 -0
- data/app/assets/javascripts/wobauth/admin.js +13 -0
- data/app/assets/javascripts/wobauth/authorities.js.coffee +31 -0
- data/app/assets/javascripts/wobauth/groups.js +2 -0
- data/app/assets/javascripts/wobauth/memberships.js +2 -0
- data/app/assets/javascripts/wobauth/roles.js +2 -0
- data/app/assets/stylesheets/wobauth/application.css +15 -0
- data/app/assets/stylesheets/wobauth/authorities.css +4 -0
- data/app/assets/stylesheets/wobauth/groups.css +4 -0
- data/app/assets/stylesheets/wobauth/memberships.css +4 -0
- data/app/assets/stylesheets/wobauth/roles.css +4 -0
- data/app/controllers/wobauth/ad_users_controller.rb +24 -0
- data/app/controllers/wobauth/application_controller.rb +25 -0
- data/app/controllers/wobauth/authorities_controller.rb +88 -0
- data/app/controllers/wobauth/groups/authorities_controller.rb +11 -0
- data/app/controllers/wobauth/groups/memberships_controller.rb +11 -0
- data/app/controllers/wobauth/groups_controller.rb +60 -0
- data/app/controllers/wobauth/login_controller.rb +10 -0
- data/app/controllers/wobauth/memberships_controller.rb +79 -0
- data/app/controllers/wobauth/registrations_controller.rb +26 -0
- data/app/controllers/wobauth/roles_controller.rb +30 -0
- data/app/controllers/wobauth/users/authorities_controller.rb +11 -0
- data/app/controllers/wobauth/users/memberships_controller.rb +11 -0
- data/app/controllers/wobauth/users_controller.rb +76 -0
- data/app/helpers/wobauth/ad_users_helper.rb +60 -0
- data/app/helpers/wobauth/application_helper.rb +53 -0
- data/app/helpers/wobauth/authorities_helper.rb +9 -0
- data/app/models/wobauth/ad_user.rb +4 -0
- data/app/models/wobauth/admin_ability.rb +67 -0
- data/app/models/wobauth/authority.rb +17 -0
- data/app/models/wobauth/group.rb +18 -0
- data/app/models/wobauth/membership.rb +11 -0
- data/app/models/wobauth/role.rb +19 -0
- data/app/models/wobauth/user.rb +11 -0
- data/app/services/wobauth/search_ad_user_service.rb +53 -0
- data/app/views/devise/registrations/edit.html.erb +25 -0
- data/app/views/devise/sessions/new.html.erb +17 -0
- data/app/views/devise/shared/_links.html.erb +0 -0
- data/app/views/wobauth/ad_users/index.html.erb +69 -0
- data/app/views/wobauth/authorities/_form.html.erb +32 -0
- data/app/views/wobauth/authorities/edit.html.erb +1 -0
- data/app/views/wobauth/authorities/index.html.erb +41 -0
- data/app/views/wobauth/authorities/new.html.erb +1 -0
- data/app/views/wobauth/authorities/show.html.erb +45 -0
- data/app/views/wobauth/groups/_form.html.erb +20 -0
- data/app/views/wobauth/groups/_group_memberships.html.erb +21 -0
- data/app/views/wobauth/groups/_group_roles.html.erb +23 -0
- data/app/views/wobauth/groups/edit.html.erb +1 -0
- data/app/views/wobauth/groups/index.html.erb +31 -0
- data/app/views/wobauth/groups/new.html.erb +1 -0
- data/app/views/wobauth/groups/show.html.erb +45 -0
- data/app/views/wobauth/memberships/_form.html.erb +20 -0
- data/app/views/wobauth/memberships/edit.html.erb +1 -0
- data/app/views/wobauth/memberships/index.html.erb +33 -0
- data/app/views/wobauth/memberships/new.html.erb +1 -0
- data/app/views/wobauth/memberships/show.html.erb +28 -0
- data/app/views/wobauth/roles/_role_authorities.html.erb +21 -0
- data/app/views/wobauth/roles/index.html.erb +26 -0
- data/app/views/wobauth/roles/show.html.erb +18 -0
- data/app/views/wobauth/shared/_accounting.html.erb +25 -0
- data/app/views/wobauth/shared/_admin.html.erb +13 -0
- data/app/views/wobauth/users/_form.html.erb +28 -0
- data/app/views/wobauth/users/_user_groups.html.erb +22 -0
- data/app/views/wobauth/users/_user_roles.html.erb +23 -0
- data/app/views/wobauth/users/edit.html.erb +1 -0
- data/app/views/wobauth/users/index.html.erb +52 -0
- data/app/views/wobauth/users/new.html.erb +1 -0
- data/app/views/wobauth/users/show.html.erb +130 -0
- data/config/initializers/assets.rb +1 -0
- data/config/initializers/devise.rb +260 -0
- data/config/initializers/devise_failure_app.rb +21 -0
- data/config/initializers/simple_form.rb +169 -0
- data/config/initializers/simple_form_bootstrap.rb +154 -0
- data/config/initializers/wobapphelpers.rb +18 -0
- data/config/locales/de.yml +80 -0
- data/config/locales/devise.de.yml +60 -0
- data/config/locales/devise.en.yml +59 -0
- data/config/locales/en.yml +27 -0
- data/config/locales/simple_form.en.yml +31 -0
- data/config/locales/wobapphelpers.de.yml +10 -0
- data/config/locales/wobapphelpers.en.yml +8 -0
- data/config/routes.rb +24 -0
- data/db/migrate/20140501113226_create_wobauth_roles.rb +9 -0
- data/db/migrate/20140501150743_create_wobauth_groups.rb +10 -0
- data/db/migrate/20140504124045_create_wobauth_memberships.rb +11 -0
- data/db/migrate/20140504143328_create_wobauth_authorities.rb +15 -0
- data/db/migrate/20140508120810_devise_create_wobauth_users.rb +55 -0
- data/db/migrate/20171231084355_additional_fields_to_wobauth_user.rb +8 -0
- data/lib/concerns/models/user.rb +44 -0
- data/lib/generators/templates/initializers/wobauth.rb +20 -0
- data/lib/generators/wobauth/install_generator.rb +20 -0
- data/lib/tasks/wobauth_tasks.rake +4 -0
- data/lib/templates/erb/scaffold/_form.html.erb +26 -0
- data/lib/templates/erb/scaffold/edit.html.erb +1 -0
- data/lib/templates/erb/scaffold/index.html.erb +32 -0
- data/lib/templates/erb/scaffold/new.html.erb +1 -0
- data/lib/templates/erb/scaffold/show.html.erb +15 -0
- data/lib/templates/rails/scaffold_controller/controller.rb +66 -0
- data/lib/wobauth/engine.rb +33 -0
- data/lib/wobauth/version.rb +4 -0
- data/lib/wobauth.rb +57 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/db/test1.sqlite3 +0 -0
- data/test/dummy/log/test.log +1954 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-6/-6x3utBDawbjV5d477TJ9PeEoQTk9Yh292Yg_8Ox16U.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-A/-A9u9WxFQ9YT2TSLvmYJYJf2Kg9JfDoIt6YZQRcwUHE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-C/-CJCPQLf_lB4gJr983MP5sZdH3uZuYPIe-xSw4QBln4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-K/-K6Cz6iJ4bgvnwN-rMFxBtyYEU6EGdLH9b4N38_GwIs.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-x/-xwsVQHMHEQFqvVNjKKkEiujw9_CUgnJ2Hmzampfy60.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/2J/2JNdqFTZ9i8DAT1rZCc-Xj70u9zcQtlJoqEK68sRPVM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/4N/4NSPDtUmuTVU5uLI-eBtnORjzrwVgeLgrgIJh4tjWeQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/4u/4uuqiFX5bLo0J5QqMPSZc642NRkdX4l-Vguvyq6Oe3U.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/5O/5Oqd8RObzOeHuHy3NTiGE5p_ZkpftjQQgJgS_3KKdH0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/6U/6UZEqCkIx3XO_NjOjjWyLET2-dS4Gs_RPAB9NtA99-A.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/76/767sF803BgrHtDgUPUUn-HN41e6fklZIQkVKyKD59P4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/77/77ZyE9pECDHt-19ik7nBaJXJQT-7V2UDr49kFOIO1DM.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/7n/7nJvPEaj-WV6RCKHc3hpHsAbWek8cidSKvDKLedQpH4.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/85/856_llbCcD4ntIG6h4uR2WQY9SrutzA-9K6xT53ZPTY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/9A/9A6WX6bvqMDoyDrYrGQy2l6nf_JtHoQZsa-pEJ0FgDU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/BA/BABtX6k2NZISYrxZSviAXC8UIxZfRhEDDbx7dMf_ShQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/D4/D4_Vl_wB6Vq8O0LvQ9iHt-YqG_c0fUR4af06OZlk10k.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/DX/DXGc2xprS_TuG5PzNCaBHKBMWTlyrZZYA9jlvlcBn3M.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ex/ExDgDLUsesHZC1FAxhQLmTyBpg6IW4gVCUB8U8Ov-X4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8M6mPdg93dPiXZzHGo3Y0I42et4yc5Hr-eCfuOUeac.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hk/Hkx4xbJvgHfFgfNDKyHxertTGvARWOgVuNuGU-OWPEU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Jo/Jom6Wnb-Sd-d3W24hNHS58BHtuw5Dsm7vvWVPtLB0PA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/K5/K5UnItDV1g9ixIoFloUxCNirxL5UFrOT0jz1vKy5shc.cache +31 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/K6/K6geC8zADOljHu2R2-DHUgVrgGyij9e4dnxgIdEypMU.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/KW/KWpcGMHEfc0mpysCx46leXLgyrzubUIXWouB91Ia5Ik.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/LD/LD1fywEt5YfgacZhvpug0VXFakWRb1jidort_y8Fl00.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/LT/LTqeGcgCnDytohL1bGvcUZdnrp6gImr9Gzgfj6sYtW4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/LX/LXirLCvjN2zWwKoda0ZdfOoFufIGRC9bZFKo95Kxs2w.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/MH/MH3Sbn3D_A-k2L9Qd_MSjC2d6zv52DnzX3REO1P8n-E.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nm/NmUDbY8fbYAMYUH3HOmHzTLkeJaf-49yXUpF5TXGnYM.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/O1/O1xVVUGePb-AZZi4nfbefQqZJEuQKvVAnHbbksdys0g.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Og/Og28UaPh4fHs8CazZFMRRClJKMdtcZ6TLkcrwXO9888.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Py/Py0iDud1Fnb6eLZHFV1BlJ1PKkeJS5bSVb8DL5Lyoyo.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qs/QscUYhnZ_Tw9H1UICqO4jqvLwSznyhEMlkTJRFR63Qk.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rx/RxBkonRxRoJzfP-2eiuZPIg4Wy1eaNd6MQ6N0QTzLbw.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/S_/S_VAM9XIEPYa1eIrH2MGCvwgC6UuKNU3IsOsXYCbRfE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/TK/TK13HHucosr5_ne6uScM6nK6naCAYu11S4GxXyvGEA4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/TP/TPYDffricRYUN-8EoF99EbRAm5m9QVJ4NsV4JQHUaTU.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/TQ/TQZclZQajgRAt0UPyDLa5SDHOXXd7nrs_Aw1guZ1EDE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/U-/U-j-KeDrdeyrmflpuJSSH3aH_tGth_0zwnjl9eaecCU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ui/Ui_ImrdWE848w92udaqCheUJypT-7QIicGTDDcF94ZY.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Vy/VyeoEaFiHk-BFfUz0QQyO1ywWUjhhvXaWjOhrueWuz4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/WC/WCZBAZL9AYx33c-WzmPLL8ZaSkyPBwQEpJSzDMruSTA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/XG/XG-1Cxql9XcU0QzVsKfaImD2F-_fbQakmCOO1PZeiO8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y-/Y-mfMOkq6o7o6NIVKY5m1HzoQPj6deRrSVoSnePwWDg.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Z5/Z56duv_o-wQlnyich8DqrY8VfI5mRampXLuyzcCQSes.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/_X/_XFCt_G6l_CeYOky6Ky04YbAJMGmZ1S55wnsXuzjbFQ.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/_c/_cAbQgu5_t6QaopeTV6bHpVH6nABdZSHUD3dtw3TFvI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/aU/aUB5QePK5Y_57d0ISu6VcHykCHzl47ej-nXJSzHo7mM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ao/ao7sMvRzih2MlCNwwQnYbm-FUNM2rl1wlruiVgH8VbE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/b8/b8sc4SHWqZyiR9LoszM7AwU7Z9RStRdUzs5Cm4b1xi4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/dG/dGu-1JGz62Geuns1TpCaYbAwvwLKjSjDp_VhKV3nWOw.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/dH/dHU4yPNGwU72V1rymqid8RLS4ole8B-9UGSJG-QyDsQ.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ei/eiJS8jxPa_CT4ECt01iVkhPzc9QQShE__hFgFUVMqhc.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hq/hqAVf5Mc94swL5QKxbwrtNQ1F6-4shrOpiZMk60yjMM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hz/hzzNh1KGk98zydo_p20ZW15iDYFoCsUZuYdK99A54Mo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ip/ip5FbXNQpdaOzVbU6_r90bYcY8R47qbE2_C79IUdlvQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/je/je9xQVOnasRNd1k49Q5KJdmxQscPKO-8qeVDMmmsVrI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/jt/jtOzRwEskymBEhztMwmAwvXzROImYepCy7Zb25fxexQ.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/m3/m3BDc8KCgIUXE0VeZ142byDvlbYuOEBpNW_2ucKyb3M.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/mf/mfkdFcsUrRviUKGZkElnxw6dCyhyArAFbAVNuqQKcsE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/mx/mxQkXyjT__7etUOHa4WpbGL4YguqInaF8rQXNK4c6JU.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/o4/o4yHfopv-ZxcXaMdi1_2O0CkBEWWQEd0wR0tEwKJ8s8.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/oF/oFjp7US8e9Cu4GOLqlO_vPIaX9jYwqrYbCFq6mgaYWE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/op/opKuUcXieH4Q4hch708zXOG2Rud2bhIilb38wKiOdjA.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/p4/p4U2tbFHGXaOchAVtbEfIHRvWKO2i-0nsq_4vtGNABU.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/s4/s4jckxw_fz9fwDYqkrZPCsD7cCATrXbD5R7ducBhtoU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/uP/uPXk7u0shmDjGGOhtU06VSo7E81DYc2t9OGhQUvxEA0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/vS/vSQW3iohJ14LLnwWgoHFeHB-I3yIzLi9tLoZkUaE81M.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/vu/vuRt78a_J3dg7DUMHX1Nx9DYLME15Z1NjQ-4V8BoNCU.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/w6/w6Gz48zxIouRBGOu5VmTHWsL9r0M4LKp124UOJ3mZN0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/wj/wjsRbpDa20LzSzj66UKcgy3Wif53rLBEoeuyKIKz4pk.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/wo/wo1g4ZKtmQmol-3MoVPFApwd5fnGEA23tCRCLuEw3D0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/xG/xGQ1RojQn3N9C51pkj4Flt274TjVuszRi1Puir0p6dE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/xN/xNqJDUb7i6VSD0HU-EV3dcNYRoz2d48cGwn1CBqLvVU.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/y1/y1pwuOg2qdJFc_DgDEw6OIyr6GbmGpwV-p7X2sS64sU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/zO/zOWzdA_n0s0vjbJ6IGB8gj1-mbqzbCywIQCMLr71qDE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/zV/zVdKofyDUgEZzwP0GQ8q4RxOoxo-qoGazLMre0zxw9c.cache +0 -0
- data/test/tmp/config/initializers/wobauth.rb +15 -0
- data/test/tmp/config/locales/wobauth.de.yml +42 -0
- data/test/tmp/config/locales/wobauth.en.yml +27 -0
- metadata +636 -0
@@ -0,0 +1,1954 @@
|
|
1
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "categories"[0m
|
2
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
3
|
+
[1m[35m (12.3ms)[0m [1m[35mCREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
4
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "posts"[0m
|
5
|
+
[1m[35m (16.7ms)[0m [1m[35mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar, "message" text, "category_id" integer, "created_at" datetime, "updated_at" datetime)[0m
|
6
|
+
[1m[35m (17.7ms)[0m [1m[35mCREATE INDEX "index_posts_on_category_id" ON "posts" ("category_id")[0m
|
7
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "wobauth_authorities"[0m
|
8
|
+
[1m[35m (17.3ms)[0m [1m[35mCREATE TABLE "wobauth_authorities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "authorizable_id" integer, "authorizable_type" varchar, "role_id" integer, "authorized_for_id" integer, "authorized_for_type" varchar, "valid_from" date, "valid_until" date, "created_at" datetime, "updated_at" datetime)[0m
|
9
|
+
[1m[35m (18.6ms)[0m [1m[35mCREATE INDEX "index_wobauth_authorities_on_authorizable_id" ON "wobauth_authorities" ("authorizable_id")[0m
|
10
|
+
[1m[35m (0.3ms)[0m [1m[34m SELECT sql
|
11
|
+
FROM sqlite_master
|
12
|
+
WHERE name='index_wobauth_authorities_on_authorizable_id' AND type='index'
|
13
|
+
UNION ALL
|
14
|
+
SELECT sql
|
15
|
+
FROM sqlite_temp_master
|
16
|
+
WHERE name='index_wobauth_authorities_on_authorizable_id' AND type='index'
|
17
|
+
[0m
|
18
|
+
[1m[35m (16.2ms)[0m [1m[35mCREATE INDEX "index_wobauth_authorities_on_authorized_for_id" ON "wobauth_authorities" ("authorized_for_id")[0m
|
19
|
+
[1m[35m (0.2ms)[0m [1m[34m SELECT sql
|
20
|
+
FROM sqlite_master
|
21
|
+
WHERE name='index_wobauth_authorities_on_authorized_for_id' AND type='index'
|
22
|
+
UNION ALL
|
23
|
+
SELECT sql
|
24
|
+
FROM sqlite_temp_master
|
25
|
+
WHERE name='index_wobauth_authorities_on_authorized_for_id' AND type='index'
|
26
|
+
[0m
|
27
|
+
[1m[35m (0.2ms)[0m [1m[34m SELECT sql
|
28
|
+
FROM sqlite_master
|
29
|
+
WHERE name='index_wobauth_authorities_on_authorizable_id' AND type='index'
|
30
|
+
UNION ALL
|
31
|
+
SELECT sql
|
32
|
+
FROM sqlite_temp_master
|
33
|
+
WHERE name='index_wobauth_authorities_on_authorizable_id' AND type='index'
|
34
|
+
[0m
|
35
|
+
[1m[35m (15.6ms)[0m [1m[35mCREATE INDEX "index_wobauth_authorities_on_role_id" ON "wobauth_authorities" ("role_id")[0m
|
36
|
+
[1m[35m (0.3ms)[0m [1m[35mDROP TABLE IF EXISTS "wobauth_groups"[0m
|
37
|
+
[1m[35m (17.0ms)[0m [1m[35mCREATE TABLE "wobauth_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
38
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "wobauth_memberships"[0m
|
39
|
+
[1m[35m (16.3ms)[0m [1m[35mCREATE TABLE "wobauth_memberships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "group_id" integer, "auto" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)[0m
|
40
|
+
[1m[35m (17.5ms)[0m [1m[35mCREATE INDEX "index_wobauth_memberships_on_group_id" ON "wobauth_memberships" ("group_id")[0m
|
41
|
+
[1m[35m (0.2ms)[0m [1m[34m SELECT sql
|
42
|
+
FROM sqlite_master
|
43
|
+
WHERE name='index_wobauth_memberships_on_group_id' AND type='index'
|
44
|
+
UNION ALL
|
45
|
+
SELECT sql
|
46
|
+
FROM sqlite_temp_master
|
47
|
+
WHERE name='index_wobauth_memberships_on_group_id' AND type='index'
|
48
|
+
[0m
|
49
|
+
[1m[35m (16.2ms)[0m [1m[35mCREATE INDEX "index_wobauth_memberships_on_user_id" ON "wobauth_memberships" ("user_id")[0m
|
50
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "wobauth_roles"[0m
|
51
|
+
[1m[35m (17.5ms)[0m [1m[35mCREATE TABLE "wobauth_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
52
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "wobauth_users"[0m
|
53
|
+
[1m[35m (14.2ms)[0m [1m[35mCREATE TABLE "wobauth_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar DEFAULT '' NOT NULL, "gruppen" text, "sn" varchar, "givenname" varchar, "displayname" varchar, "telephone" varchar, "active_directory_guid" varchar, "userprincipalname" varchar, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
54
|
+
[1m[35m (16.8ms)[0m [1m[35mCREATE UNIQUE INDEX "index_wobauth_users_on_reset_password_token" ON "wobauth_users" ("reset_password_token")[0m
|
55
|
+
[1m[35m (0.0ms)[0m [1m[34m SELECT sql
|
56
|
+
FROM sqlite_master
|
57
|
+
WHERE name='index_wobauth_users_on_reset_password_token' AND type='index'
|
58
|
+
UNION ALL
|
59
|
+
SELECT sql
|
60
|
+
FROM sqlite_temp_master
|
61
|
+
WHERE name='index_wobauth_users_on_reset_password_token' AND type='index'
|
62
|
+
[0m
|
63
|
+
[1m[35m (20.3ms)[0m [1m[35mCREATE UNIQUE INDEX "index_wobauth_users_on_username" ON "wobauth_users" ("username")[0m
|
64
|
+
[1m[35m (13.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
65
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
66
|
+
[1m[35m (10.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20140511101309)[0m
|
67
|
+
[1m[35m (9.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
|
68
|
+
(20140511101304);
|
69
|
+
|
70
|
+
[0m
|
71
|
+
[1m[35m (10.9ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
72
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
73
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
74
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-07-13 09:31:40.314266"], ["updated_at", "2018-07-13 09:31:40.314266"]]
|
75
|
+
[1m[35m (11.9ms)[0m [1m[36mcommit transaction[0m
|
76
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.0ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
77
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
78
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
79
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
80
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
81
|
+
Migrating to CreateWobauthRoles (20140501113226)
|
82
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
83
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
84
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "wobauth_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
85
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
86
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
87
|
+
[1m[35m (19.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
88
|
+
[1m[35m (16.2ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
89
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
90
|
+
Migrating to CreateWobauthRoles (20140501113226)
|
91
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
92
|
+
[1m[35m (0.5ms)[0m [1m[35mCREATE TABLE "wobauth_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
93
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140501113226"]]
|
94
|
+
[1m[35m (11.3ms)[0m [1m[36mcommit transaction[0m
|
95
|
+
Migrating to CreateWobauthGroups (20140501150743)
|
96
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
97
|
+
[1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "wobauth_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
98
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140501150743"]]
|
99
|
+
[1m[35m (15.2ms)[0m [1m[36mcommit transaction[0m
|
100
|
+
Migrating to CreateWobauthMemberships (20140504124045)
|
101
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
102
|
+
[1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "wobauth_memberships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "group_id" integer, "auto" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
103
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_wobauth_memberships_on_user_id" ON "wobauth_memberships" ("user_id")[0m
|
104
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
105
|
+
FROM sqlite_master
|
106
|
+
WHERE name='index_wobauth_memberships_on_user_id' AND type='index'
|
107
|
+
UNION ALL
|
108
|
+
SELECT sql
|
109
|
+
FROM sqlite_temp_master
|
110
|
+
WHERE name='index_wobauth_memberships_on_user_id' AND type='index'
|
111
|
+
[0m
|
112
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_wobauth_memberships_on_group_id" ON "wobauth_memberships" ("group_id")[0m
|
113
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140504124045"]]
|
114
|
+
[1m[35m (14.6ms)[0m [1m[36mcommit transaction[0m
|
115
|
+
Migrating to CreateWobauthAuthorities (20140504143328)
|
116
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
117
|
+
[1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "wobauth_authorities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "authorizable_id" integer, "authorizable_type" varchar, "role_id" integer, "authorized_for_id" integer, "authorized_for_type" varchar, "valid_from" date, "valid_until" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
118
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_wobauth_authorities_on_authorizable_id" ON "wobauth_authorities" ("authorizable_id")[0m
|
119
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
120
|
+
FROM sqlite_master
|
121
|
+
WHERE name='index_wobauth_authorities_on_authorizable_id' AND type='index'
|
122
|
+
UNION ALL
|
123
|
+
SELECT sql
|
124
|
+
FROM sqlite_temp_master
|
125
|
+
WHERE name='index_wobauth_authorities_on_authorizable_id' AND type='index'
|
126
|
+
[0m
|
127
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_wobauth_authorities_on_role_id" ON "wobauth_authorities" ("role_id")[0m
|
128
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
129
|
+
FROM sqlite_master
|
130
|
+
WHERE name='index_wobauth_authorities_on_role_id' AND type='index'
|
131
|
+
UNION ALL
|
132
|
+
SELECT sql
|
133
|
+
FROM sqlite_temp_master
|
134
|
+
WHERE name='index_wobauth_authorities_on_role_id' AND type='index'
|
135
|
+
[0m
|
136
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
137
|
+
FROM sqlite_master
|
138
|
+
WHERE name='index_wobauth_authorities_on_authorizable_id' AND type='index'
|
139
|
+
UNION ALL
|
140
|
+
SELECT sql
|
141
|
+
FROM sqlite_temp_master
|
142
|
+
WHERE name='index_wobauth_authorities_on_authorizable_id' AND type='index'
|
143
|
+
[0m
|
144
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_wobauth_authorities_on_authorized_for_id" ON "wobauth_authorities" ("authorized_for_id")[0m
|
145
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140504143328"]]
|
146
|
+
[1m[35m (11.5ms)[0m [1m[36mcommit transaction[0m
|
147
|
+
Migrating to DeviseCreateWobauthUsers (20140508120810)
|
148
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
149
|
+
[1m[35m (0.5ms)[0m [1m[35mCREATE TABLE "wobauth_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar DEFAULT '' NOT NULL, "gruppen" text, "sn" varchar, "givenname" varchar, "displayname" varchar, "telephone" varchar, "active_directory_guid" varchar, "userprincipalname" varchar, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
150
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE UNIQUE INDEX "index_wobauth_users_on_username" ON "wobauth_users" ("username")[0m
|
151
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
152
|
+
FROM sqlite_master
|
153
|
+
WHERE name='index_wobauth_users_on_username' AND type='index'
|
154
|
+
UNION ALL
|
155
|
+
SELECT sql
|
156
|
+
FROM sqlite_temp_master
|
157
|
+
WHERE name='index_wobauth_users_on_username' AND type='index'
|
158
|
+
[0m
|
159
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE UNIQUE INDEX "index_wobauth_users_on_reset_password_token" ON "wobauth_users" ("reset_password_token")[0m
|
160
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140508120810"]]
|
161
|
+
[1m[35m (16.3ms)[0m [1m[36mcommit transaction[0m
|
162
|
+
Migrating to CreatePosts (20140511101304)
|
163
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
164
|
+
Migrating to CreatePosts (20140511101304)
|
165
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
166
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
167
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar, "message" text, "category_id" integer, "created_at" datetime, "updated_at" datetime)[0m
|
168
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_posts_on_category_id" ON "posts" ("category_id")[0m
|
169
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140511101304"]]
|
170
|
+
[1m[35m (12.9ms)[0m [1m[36mcommit transaction[0m
|
171
|
+
Migrating to CreateCategories (20140511101309)
|
172
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
173
|
+
Migrating to CreateCategories (20140511101309)
|
174
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
175
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
176
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
177
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140511101309"]]
|
178
|
+
[1m[35m (12.7ms)[0m [1m[36mcommit transaction[0m
|
179
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
180
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
181
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-07-13 09:34:44.163558"], ["updated_at", "2018-07-13 09:34:44.163558"]]
|
182
|
+
[1m[35m (10.1ms)[0m [1m[36mcommit transaction[0m
|
183
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
184
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
185
|
+
FROM sqlite_master
|
186
|
+
WHERE name='index_posts_on_category_id' AND type='index'
|
187
|
+
UNION ALL
|
188
|
+
SELECT sql
|
189
|
+
FROM sqlite_temp_master
|
190
|
+
WHERE name='index_posts_on_category_id' AND type='index'
|
191
|
+
[0m
|
192
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
193
|
+
FROM sqlite_master
|
194
|
+
WHERE name='index_wobauth_authorities_on_authorized_for_id' AND type='index'
|
195
|
+
UNION ALL
|
196
|
+
SELECT sql
|
197
|
+
FROM sqlite_temp_master
|
198
|
+
WHERE name='index_wobauth_authorities_on_authorized_for_id' AND type='index'
|
199
|
+
[0m
|
200
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
201
|
+
FROM sqlite_master
|
202
|
+
WHERE name='index_wobauth_authorities_on_role_id' AND type='index'
|
203
|
+
UNION ALL
|
204
|
+
SELECT sql
|
205
|
+
FROM sqlite_temp_master
|
206
|
+
WHERE name='index_wobauth_authorities_on_role_id' AND type='index'
|
207
|
+
[0m
|
208
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
209
|
+
FROM sqlite_master
|
210
|
+
WHERE name='index_wobauth_authorities_on_authorizable_id' AND type='index'
|
211
|
+
UNION ALL
|
212
|
+
SELECT sql
|
213
|
+
FROM sqlite_temp_master
|
214
|
+
WHERE name='index_wobauth_authorities_on_authorizable_id' AND type='index'
|
215
|
+
[0m
|
216
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
217
|
+
FROM sqlite_master
|
218
|
+
WHERE name='index_wobauth_memberships_on_group_id' AND type='index'
|
219
|
+
UNION ALL
|
220
|
+
SELECT sql
|
221
|
+
FROM sqlite_temp_master
|
222
|
+
WHERE name='index_wobauth_memberships_on_group_id' AND type='index'
|
223
|
+
[0m
|
224
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
225
|
+
FROM sqlite_master
|
226
|
+
WHERE name='index_wobauth_memberships_on_user_id' AND type='index'
|
227
|
+
UNION ALL
|
228
|
+
SELECT sql
|
229
|
+
FROM sqlite_temp_master
|
230
|
+
WHERE name='index_wobauth_memberships_on_user_id' AND type='index'
|
231
|
+
[0m
|
232
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
233
|
+
FROM sqlite_master
|
234
|
+
WHERE name='index_wobauth_users_on_reset_password_token' AND type='index'
|
235
|
+
UNION ALL
|
236
|
+
SELECT sql
|
237
|
+
FROM sqlite_temp_master
|
238
|
+
WHERE name='index_wobauth_users_on_reset_password_token' AND type='index'
|
239
|
+
[0m
|
240
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
241
|
+
FROM sqlite_master
|
242
|
+
WHERE name='index_wobauth_users_on_username' AND type='index'
|
243
|
+
UNION ALL
|
244
|
+
SELECT sql
|
245
|
+
FROM sqlite_temp_master
|
246
|
+
WHERE name='index_wobauth_users_on_username' AND type='index'
|
247
|
+
[0m
|
248
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
249
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
250
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
251
|
+
-------------------------------------------------------------------------------------------------
|
252
|
+
Wobauth::UserTest: test_: Wobauth::User should require case sensitive unique value for username.
|
253
|
+
-------------------------------------------------------------------------------------------------
|
254
|
+
[1m[36mWobauth::User Load (0.3ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
|
255
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
256
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["username", "a"], ["created_at", "2018-07-13 09:36:42.311655"], ["updated_at", "2018-07-13 09:36:42.311655"]]
|
257
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
258
|
+
[1m[36mWobauth::User Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "a"], ["LIMIT", 1]]
|
259
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
260
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
261
|
+
---------------------------------------------------------------------------
|
262
|
+
Wobauth::UserTest: test_: Wobauth::User should require username to be set.
|
263
|
+
---------------------------------------------------------------------------
|
264
|
+
[1m[36mWobauth::User Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
265
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
266
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
267
|
+
-------------------------------------------------------------------------------------
|
268
|
+
Wobauth::UserTest: test_: Wobauth::User should have many groups through memberships.
|
269
|
+
-------------------------------------------------------------------------------------
|
270
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
271
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
272
|
+
----------------------------------------------------------------------
|
273
|
+
Wobauth::UserTest: test_: Wobauth::User should have many authorities.
|
274
|
+
----------------------------------------------------------------------
|
275
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
276
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
277
|
+
-----------------------------------------------------------------------
|
278
|
+
Wobauth::UserTest: test_: Wobauth::User should simple factory working.
|
279
|
+
-----------------------------------------------------------------------
|
280
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
281
|
+
[1m[36mWobauth::User Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "user1"], ["LIMIT", 1]]
|
282
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["username", "user1"], ["email", "user1000@example.net"], ["encrypted_password", "$2a$04$CLMeq.1/x77uTlaqRSWd.uXM7IXFIDAWdwQWWvI0rdWizjfR98Wwa"], ["created_at", "2018-07-13 09:36:42.332301"], ["updated_at", "2018-07-13 09:36:42.332301"]]
|
283
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
284
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
285
|
+
[1m[36mWobauth::User Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "user2"], ["LIMIT", 1]]
|
286
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["username", "user2"], ["email", "user1001@example.net"], ["encrypted_password", "$2a$04$dMBIZK.qukRj4mjOd5p.eu3X.juCNzUM8ge47TV2Q0v0AIDY/V9x6"], ["created_at", "2018-07-13 09:36:42.334439"], ["updated_at", "2018-07-13 09:36:42.334439"]]
|
287
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
288
|
+
[1m[36mWobauth::User Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? AND ("wobauth_users"."id" != ?) LIMIT ?[0m [["username", "user2"], ["id", 2], ["LIMIT", 1]]
|
289
|
+
[1m[36mWobauth::User Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? AND ("wobauth_users"."id" != ?) LIMIT ?[0m [["username", "user1"], ["id", 1], ["LIMIT", 1]]
|
290
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
291
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
292
|
+
----------------------------------------------------------------------------
|
293
|
+
Wobauth::UserTest: test_: Wobauth::User should allow email to be set to "".
|
294
|
+
----------------------------------------------------------------------------
|
295
|
+
[1m[36mWobauth::User Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", ""], ["LIMIT", 1]]
|
296
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
297
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
298
|
+
-----------------------------------------------------------------------------------------------------
|
299
|
+
Wobauth::UserTest: test_: Wobauth::User should have many group_roles through groups source => roles.
|
300
|
+
-----------------------------------------------------------------------------------------------------
|
301
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
302
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
303
|
+
----------------------------------------------------------------------
|
304
|
+
Wobauth::UserTest: test_: Wobauth::User should have many memberships.
|
305
|
+
----------------------------------------------------------------------
|
306
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
307
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
308
|
+
------------------------------------------------------------------------------------
|
309
|
+
Wobauth::UserTest: test_: Wobauth::User should have many roles through authorities.
|
310
|
+
------------------------------------------------------------------------------------
|
311
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
312
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
313
|
+
----------------------------------------------------------------
|
314
|
+
InstallGeneratorTest: test_Assert_all_files_are_properly_created
|
315
|
+
----------------------------------------------------------------
|
316
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
317
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
318
|
+
------------------------------------------------
|
319
|
+
InstallGeneratorTest: test_Initializer_is_copied
|
320
|
+
------------------------------------------------
|
321
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
322
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys[0m
|
323
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
|
324
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
325
|
+
[1m[36mFixture Delete (0.1ms)[0m [1m[31mDELETE FROM "wobauth_users"[0m
|
326
|
+
[1m[36mFixture Insert (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("email", "username", "encrypted_password", "created_at", "updated_at", "id") VALUES ('one@example.org', 'one', '$2a$04$w3pLzPX0OXSVJ53W7AAiTuV6579Nq0LSEIV7DzYD5fO5K2AqzNakW', '2018-07-13 09:36:42.346129', '2018-07-13 09:36:42.346129', 980190962)[0m
|
327
|
+
[1m[36mFixture Insert (0.0ms)[0m [1m[32mINSERT INTO "wobauth_users" ("email", "username", "encrypted_password", "created_at", "updated_at", "id") VALUES ('two@example.org', 'two', '$2a$04$ncFqLg35CAaYQ8hrjW4QguD4ZMiidKLuNm6TVu8lays1Phg.QZuGi', '2018-07-13 09:36:42.346129', '2018-07-13 09:36:42.346129', 298486374)[0m
|
328
|
+
[1m[36mFixture Insert (0.0ms)[0m [1m[32mINSERT INTO "wobauth_users" ("email", "username", "encrypted_password", "created_at", "updated_at", "id") VALUES ('root@example.org', 'admin', '$2a$04$SU9FeGIiIZQeJ4Vn95dVOuCAsZJ9I52KSbEN5sIsfSCcCzqn2m.sq', '2018-07-13 09:36:42.346129', '2018-07-13 09:36:42.346129', 135138680)[0m
|
329
|
+
[1m[36mFixture Insert (0.0ms)[0m [1m[32mINSERT INTO "wobauth_users" ("email", "username", "encrypted_password", "created_at", "updated_at", "id") VALUES ('dummy@example.org', 'dummy', '$2a$04$M6MkEeQQS4KDV5hnT8yR7uMq5THmGGD4qIViqsmq2SaITLp3JmAwm', '2018-07-13 09:36:42.346129', '2018-07-13 09:36:42.346129', 267711040)[0m
|
330
|
+
[1m[36mFixture Delete (0.0ms)[0m [1m[31mDELETE FROM "wobauth_roles"[0m
|
331
|
+
[1m[36mFixture Insert (0.0ms)[0m [1m[32mINSERT INTO "wobauth_roles" ("name", "created_at", "updated_at", "id") VALUES ('MyString', '2018-07-13 09:36:42.347283', '2018-07-13 09:36:42.347283', 980190962)[0m
|
332
|
+
[1m[36mFixture Insert (0.0ms)[0m [1m[32mINSERT INTO "wobauth_roles" ("name", "created_at", "updated_at", "id") VALUES ('MyString', '2018-07-13 09:36:42.347283', '2018-07-13 09:36:42.347283', 298486374)[0m
|
333
|
+
[1m[36mFixture Insert (0.0ms)[0m [1m[32mINSERT INTO "wobauth_roles" ("name", "created_at", "updated_at", "id") VALUES ('Admin', '2018-07-13 09:36:42.347283', '2018-07-13 09:36:42.347283', 135138680)[0m
|
334
|
+
[1m[35m (10.4ms)[0m [1m[36mcommit transaction[0m
|
335
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
|
336
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
337
|
+
-------------------------------------------------------------------
|
338
|
+
Wobauth::UsersControllerTest: test_should_show_assigned_memberships
|
339
|
+
-------------------------------------------------------------------
|
340
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
341
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
342
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
343
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
344
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:42.371105"], ["updated_at", "2018-07-13 09:36:42.371105"]]
|
345
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
346
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
347
|
+
[1m[36mWobauth::Group Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? LIMIT ?[0m [["name", "Vereinsmeierei"], ["LIMIT", 1]]
|
348
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Vereinsmeierei"], ["created_at", "2018-07-13 09:36:42.375635"], ["updated_at", "2018-07-13 09:36:42.375635"]]
|
349
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
350
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
351
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_memberships" ("user_id", "group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["user_id", 980190962], ["group_id", 1], ["created_at", "2018-07-13 09:36:42.379793"], ["updated_at", "2018-07-13 09:36:42.379793"]]
|
352
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
353
|
+
Processing by Wobauth::UsersController#show as HTML
|
354
|
+
Parameters: {"id"=>"980190962"}
|
355
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
356
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
357
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
358
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
359
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/show.html.erb within layouts/application
|
360
|
+
[1m[36mWobauth::Authority Load (0.1ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::User"]]
|
361
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/_user_roles.html.erb (1.3ms)
|
362
|
+
[1m[36mWobauth::Membership Load (0.1ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."user_id" = ?[0m [["user_id", 980190962]]
|
363
|
+
[1m[36mWobauth::Group Load (0.1ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
364
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/_user_groups.html.erb (5.2ms)
|
365
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/show.html.erb within layouts/application (9.8ms)
|
366
|
+
Rendered shared/_navi.html.erb (2.1ms)
|
367
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (1.0ms)
|
368
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (1.1ms)
|
369
|
+
Completed 200 OK in 686ms (Views: 673.0ms | ActiveRecord: 0.6ms)
|
370
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
371
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
372
|
+
--------------------------------------------------
|
373
|
+
Wobauth::UsersControllerTest: test_should_get_edit
|
374
|
+
--------------------------------------------------
|
375
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
376
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
377
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
378
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
379
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.071179"], ["updated_at", "2018-07-13 09:36:43.071179"]]
|
380
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
381
|
+
Processing by Wobauth::UsersController#edit as HTML
|
382
|
+
Parameters: {"id"=>"980190962"}
|
383
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
384
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
385
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
386
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
387
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/edit.html.erb within layouts/application
|
388
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/_form.html.erb (20.0ms)
|
389
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/edit.html.erb within layouts/application (20.6ms)
|
390
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
391
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
392
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
393
|
+
Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.1ms)
|
394
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
395
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
396
|
+
---------------------------------------------------------------
|
397
|
+
Wobauth::UsersControllerTest: test_should_show_user_authorities
|
398
|
+
---------------------------------------------------------------
|
399
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
400
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
401
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
402
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
403
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.100020"], ["updated_at", "2018-07-13 09:36:43.100020"]]
|
404
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
405
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
406
|
+
[1m[36mWobauth::Role Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_roles" WHERE "wobauth_roles"."name" = ? LIMIT ?[0m [["name", "Testrole"], ["LIMIT", 1]]
|
407
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_roles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Testrole"], ["created_at", "2018-07-13 09:36:43.101563"], ["updated_at", "2018-07-13 09:36:43.101563"]]
|
408
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
409
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
410
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::User"], ["role_id", 980190963], ["created_at", "2018-07-13 09:36:43.102551"], ["updated_at", "2018-07-13 09:36:43.102551"]]
|
411
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
412
|
+
Processing by Wobauth::UsersController#show as HTML
|
413
|
+
Parameters: {"id"=>"980190962"}
|
414
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
415
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
416
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
417
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
418
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/show.html.erb within layouts/application
|
419
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::User"]]
|
420
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190963], ["LIMIT", 1]]
|
421
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/_user_roles.html.erb (1.8ms)
|
422
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."user_id" = ?[0m [["user_id", 980190962]]
|
423
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/_user_groups.html.erb (0.5ms)
|
424
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/show.html.erb within layouts/application (3.8ms)
|
425
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
426
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
427
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
428
|
+
Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.2ms)
|
429
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
430
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
431
|
+
---------------------------------------------------
|
432
|
+
Wobauth::UsersControllerTest: test_should_get_index
|
433
|
+
---------------------------------------------------
|
434
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
435
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
436
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
437
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
438
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.114613"], ["updated_at", "2018-07-13 09:36:43.114613"]]
|
439
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
440
|
+
Processing by Wobauth::UsersController#index as HTML
|
441
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
442
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
443
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/index.html.erb within layouts/application
|
444
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
445
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/index.html.erb within layouts/application (3.0ms)
|
446
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
447
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
448
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
449
|
+
Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.2ms)
|
450
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
451
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
452
|
+
-----------------------------------------------------
|
453
|
+
Wobauth::UsersControllerTest: test_should_create_user
|
454
|
+
-----------------------------------------------------
|
455
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
456
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
457
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
458
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
459
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.124879"], ["updated_at", "2018-07-13 09:36:43.124879"]]
|
460
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
461
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_users"[0m
|
462
|
+
Processing by Wobauth::UsersController#create as HTML
|
463
|
+
Parameters: {"user"=>{"displayname"=>"Meier Müller", "email"=>"tester@example.org", "givenname"=>"Müller", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "sn"=>"Meier", "telephone"=>"0123 456789", "username"=>"tester"}}
|
464
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
465
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
466
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
467
|
+
[1m[36mWobauth::User Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "tester"], ["LIMIT", 1]]
|
468
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "sn", "givenname", "displayname", "telephone", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["username", "tester"], ["sn", "Meier"], ["givenname", "Müller"], ["displayname", "Meier Müller"], ["telephone", "0123 456789"], ["email", "tester@example.org"], ["encrypted_password", "$2a$04$0VZhpB5B2mAdM8MWdPIF8OTPtBclpn2tLDoQXKOabM3JuhZ9JfeJ2"], ["created_at", "2018-07-13 09:36:43.133711"], ["updated_at", "2018-07-13 09:36:43.133711"]]
|
469
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
470
|
+
Redirected to http://test.host/auth/users/980190963
|
471
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.3ms)
|
472
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_users"[0m
|
473
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
474
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
475
|
+
---------------------------------------------------
|
476
|
+
Wobauth::UsersControllerTest: test_should_show_user
|
477
|
+
---------------------------------------------------
|
478
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
479
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
480
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
481
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
482
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.139276"], ["updated_at", "2018-07-13 09:36:43.139276"]]
|
483
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
484
|
+
Processing by Wobauth::UsersController#show as HTML
|
485
|
+
Parameters: {"id"=>"980190962"}
|
486
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
487
|
+
[1m[36mWobauth::User Load (4.3ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
488
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
489
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
490
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/show.html.erb within layouts/application
|
491
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::User"]]
|
492
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/_user_roles.html.erb (0.5ms)
|
493
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."user_id" = ?[0m [["user_id", 980190962]]
|
494
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/_user_groups.html.erb (0.4ms)
|
495
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/show.html.erb within layouts/application (2.3ms)
|
496
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
497
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
498
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
499
|
+
Completed 200 OK in 11ms (Views: 4.2ms | ActiveRecord: 4.5ms)
|
500
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
501
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
502
|
+
-----------------------------------------------------
|
503
|
+
Wobauth::UsersControllerTest: test_should_update_user
|
504
|
+
-----------------------------------------------------
|
505
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
506
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
507
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
508
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
509
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.153633"], ["updated_at", "2018-07-13 09:36:43.153633"]]
|
510
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
511
|
+
Processing by Wobauth::UsersController#update as HTML
|
512
|
+
Parameters: {"user"=>{"displayname"=>"", "email"=>"one@example.org", "givenname"=>"", "gruppen"=>"", "sn"=>"", "telephone"=>"", "username"=>"one"}, "id"=>"980190962"}
|
513
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
514
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
515
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
516
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
517
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
518
|
+
[1m[36mWobauth::User Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? AND ("wobauth_users"."id" != ?) LIMIT ?[0m [["username", "one"], ["id", 980190962], ["LIMIT", 1]]
|
519
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "wobauth_users" SET "gruppen" = ?, "sn" = ?, "givenname" = ?, "displayname" = ?, "telephone" = ?, "updated_at" = ? WHERE "wobauth_users"."id" = ?[0m [["gruppen", ""], ["sn", ""], ["givenname", ""], ["displayname", ""], ["telephone", ""], ["updated_at", "2018-07-13 09:36:43.157878"], ["id", 980190962]]
|
520
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
521
|
+
Redirected to http://test.host/auth/users/980190962
|
522
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.3ms)
|
523
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
524
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
525
|
+
-----------------------------------------------------------------------
|
526
|
+
Wobauth::UsersControllerTest: test_should_get_all_translations_in_index
|
527
|
+
-----------------------------------------------------------------------
|
528
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
529
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
530
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
531
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
532
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.162625"], ["updated_at", "2018-07-13 09:36:43.162625"]]
|
533
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
534
|
+
Processing by Wobauth::UsersController#index as HTML
|
535
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
536
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
537
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/index.html.erb within layouts/application
|
538
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
539
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/index.html.erb within layouts/application (2.4ms)
|
540
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
541
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
542
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.5ms)
|
543
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
544
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
545
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
546
|
+
-------------------------------------------------
|
547
|
+
Wobauth::UsersControllerTest: test_should_get_new
|
548
|
+
-------------------------------------------------
|
549
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
550
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
551
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
552
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
553
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.172512"], ["updated_at", "2018-07-13 09:36:43.172512"]]
|
554
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
555
|
+
Processing by Wobauth::UsersController#new as HTML
|
556
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
557
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
558
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/new.html.erb within layouts/application
|
559
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/_form.html.erb (4.5ms)
|
560
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/new.html.erb within layouts/application (4.9ms)
|
561
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
562
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
563
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
564
|
+
Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.1ms)
|
565
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
566
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
567
|
+
------------------------------------------------------
|
568
|
+
Wobauth::UsersControllerTest: test_should_destroy_user
|
569
|
+
------------------------------------------------------
|
570
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
571
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
572
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
573
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
574
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.184527"], ["updated_at", "2018-07-13 09:36:43.184527"]]
|
575
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
576
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_users"[0m
|
577
|
+
Processing by Wobauth::UsersController#destroy as HTML
|
578
|
+
Parameters: {"id"=>"980190962"}
|
579
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
580
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
581
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
582
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
583
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
584
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::User"]]
|
585
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."user_id" = ?[0m [["user_id", 980190962]]
|
586
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "wobauth_users" WHERE "wobauth_users"."id" = ?[0m [["id", 980190962]]
|
587
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
588
|
+
Redirected to http://test.host/auth/users
|
589
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.3ms)
|
590
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_users"[0m
|
591
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
592
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
593
|
+
----------------------------------------------------------------------
|
594
|
+
Wobauth::UsersControllerTest: test_should_get_all_translations_in_show
|
595
|
+
----------------------------------------------------------------------
|
596
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
597
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
598
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
599
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
600
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.192980"], ["updated_at", "2018-07-13 09:36:43.192980"]]
|
601
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
602
|
+
Processing by Wobauth::UsersController#show as HTML
|
603
|
+
Parameters: {"id"=>"980190962"}
|
604
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
605
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
606
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
607
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
608
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/show.html.erb within layouts/application
|
609
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::User"]]
|
610
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/_user_roles.html.erb (0.5ms)
|
611
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."user_id" = ?[0m [["user_id", 980190962]]
|
612
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/_user_groups.html.erb (0.4ms)
|
613
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/users/show.html.erb within layouts/application (2.4ms)
|
614
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
615
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
616
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
617
|
+
Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.2ms)
|
618
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
619
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
620
|
+
-----------------------------------------
|
621
|
+
Wobauth::FixturesTest: test_user_fixtures
|
622
|
+
-----------------------------------------
|
623
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
624
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
625
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
626
|
+
-----------------------
|
627
|
+
WobauthTest: test_truth
|
628
|
+
-----------------------
|
629
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
630
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys[0m
|
631
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
|
632
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
633
|
+
[1m[36mFixture Delete (0.1ms)[0m [1m[31mDELETE FROM "wobauth_groups"[0m
|
634
|
+
[1m[36mFixture Insert (0.1ms)[0m [1m[32mINSERT INTO "wobauth_groups" ("name", "description", "created_at", "updated_at", "id") VALUES ('admin', 'MyString', '2018-07-13 09:36:43.203572', '2018-07-13 09:36:43.203572', 980190962)[0m
|
635
|
+
[1m[36mFixture Insert (0.0ms)[0m [1m[32mINSERT INTO "wobauth_groups" ("name", "description", "created_at", "updated_at", "id") VALUES ('user', 'MyString', '2018-07-13 09:36:43.203572', '2018-07-13 09:36:43.203572', 298486374)[0m
|
636
|
+
[1m[35m (13.2ms)[0m [1m[36mcommit transaction[0m
|
637
|
+
[1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
|
638
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
639
|
+
-----------------------------------------------------------------------
|
640
|
+
Wobauth::GroupsControllerTest: test_should_get_edit_with_specific_title
|
641
|
+
-----------------------------------------------------------------------
|
642
|
+
[1m[36mWobauth::Group Load (0.1ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
643
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
644
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
645
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
646
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.220676"], ["updated_at", "2018-07-13 09:36:43.220676"]]
|
647
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
648
|
+
Processing by Wobauth::GroupsController#edit as HTML
|
649
|
+
Parameters: {"id"=>"980190962"}
|
650
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
651
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
652
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
653
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
654
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/edit.html.erb within layouts/application
|
655
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_form.html.erb (2.3ms)
|
656
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/edit.html.erb within layouts/application (2.9ms)
|
657
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
658
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
659
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
660
|
+
Completed 200 OK in 8ms (Views: 5.2ms | ActiveRecord: 0.2ms)
|
661
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
662
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
663
|
+
-----------------------------------------------------
|
664
|
+
Wobauth::GroupsControllerTest: test_should_show_group
|
665
|
+
-----------------------------------------------------
|
666
|
+
[1m[36mWobauth::Group Load (0.1ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
667
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
668
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
669
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
670
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.232819"], ["updated_at", "2018-07-13 09:36:43.232819"]]
|
671
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
672
|
+
Processing by Wobauth::GroupsController#show as HTML
|
673
|
+
Parameters: {"id"=>"980190962"}
|
674
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
675
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
676
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
677
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
678
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/show.html.erb within layouts/application
|
679
|
+
[1m[36mWobauth::Authority Load (0.1ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::Group"]]
|
680
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_group_roles.html.erb (1.2ms)
|
681
|
+
[1m[36mWobauth::Membership Load (0.1ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."group_id" = ?[0m [["group_id", 980190962]]
|
682
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_group_memberships.html.erb (1.3ms)
|
683
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/show.html.erb within layouts/application (4.7ms)
|
684
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
685
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
686
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
687
|
+
Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.3ms)
|
688
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
689
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
690
|
+
----------------------------------------------------
|
691
|
+
Wobauth::GroupsControllerTest: test_should_get_index
|
692
|
+
----------------------------------------------------
|
693
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
694
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
695
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
696
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
697
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.245273"], ["updated_at", "2018-07-13 09:36:43.245273"]]
|
698
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
699
|
+
Processing by Wobauth::GroupsController#index as HTML
|
700
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
701
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
702
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/index.html.erb within layouts/application
|
703
|
+
[1m[36mWobauth::Group Load (0.1ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups"[0m
|
704
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/index.html.erb within layouts/application (2.2ms)
|
705
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
706
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
707
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
708
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
709
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
710
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
711
|
+
-----------------------------------------------------------------
|
712
|
+
Wobauth::GroupsControllerTest: test_should_show_group_authorities
|
713
|
+
-----------------------------------------------------------------
|
714
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
715
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
716
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
717
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
718
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.254830"], ["updated_at", "2018-07-13 09:36:43.254830"]]
|
719
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
720
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
721
|
+
[1m[36mWobauth::Role Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_roles" WHERE "wobauth_roles"."name" = ? LIMIT ?[0m [["name", "Testrole"], ["LIMIT", 1]]
|
722
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_roles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Testrole"], ["created_at", "2018-07-13 09:36:43.256135"], ["updated_at", "2018-07-13 09:36:43.256135"]]
|
723
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
724
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
725
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::Group"], ["role_id", 980190963], ["created_at", "2018-07-13 09:36:43.257044"], ["updated_at", "2018-07-13 09:36:43.257044"]]
|
726
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
727
|
+
Processing by Wobauth::GroupsController#show as HTML
|
728
|
+
Parameters: {"id"=>"980190962"}
|
729
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
730
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
731
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
732
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
733
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/show.html.erb within layouts/application
|
734
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::Group"]]
|
735
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190963], ["LIMIT", 1]]
|
736
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_group_roles.html.erb (1.4ms)
|
737
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."group_id" = ?[0m [["group_id", 980190962]]
|
738
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_group_memberships.html.erb (0.4ms)
|
739
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/show.html.erb within layouts/application (2.9ms)
|
740
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
741
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
742
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
743
|
+
Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.2ms)
|
744
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
745
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
746
|
+
------------------------------------------------------------------------
|
747
|
+
Wobauth::GroupsControllerTest: test_should_get_all_translations_in_index
|
748
|
+
------------------------------------------------------------------------
|
749
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
750
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
751
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
752
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
753
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.268171"], ["updated_at", "2018-07-13 09:36:43.268171"]]
|
754
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
755
|
+
Processing by Wobauth::GroupsController#index as HTML
|
756
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
757
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
758
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/index.html.erb within layouts/application
|
759
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups"[0m
|
760
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/index.html.erb within layouts/application (1.6ms)
|
761
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
762
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
763
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (4.0ms)
|
764
|
+
Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.1ms)
|
765
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
766
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
767
|
+
---------------------------------------------------
|
768
|
+
Wobauth::GroupsControllerTest: test_should_get_edit
|
769
|
+
---------------------------------------------------
|
770
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
771
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
772
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
773
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
774
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.280983"], ["updated_at", "2018-07-13 09:36:43.280983"]]
|
775
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
776
|
+
Processing by Wobauth::GroupsController#edit as HTML
|
777
|
+
Parameters: {"id"=>"980190962"}
|
778
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
779
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
780
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
781
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
782
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/edit.html.erb within layouts/application
|
783
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_form.html.erb (1.6ms)
|
784
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/edit.html.erb within layouts/application (1.7ms)
|
785
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
786
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
787
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.5ms)
|
788
|
+
Completed 200 OK in 6ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
789
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
790
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
791
|
+
--------------------------------------------------------
|
792
|
+
Wobauth::GroupsControllerTest: test_should_destroy_group
|
793
|
+
--------------------------------------------------------
|
794
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
795
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
796
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
797
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
798
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.289768"], ["updated_at", "2018-07-13 09:36:43.289768"]]
|
799
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
800
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_groups"[0m
|
801
|
+
Processing by Wobauth::GroupsController#destroy as HTML
|
802
|
+
Parameters: {"id"=>"980190962"}
|
803
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
804
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
805
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
806
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
807
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
808
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ?[0m [["id", 980190962]]
|
809
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
810
|
+
Redirected to http://test.host/auth/groups
|
811
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
812
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_groups"[0m
|
813
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
814
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
815
|
+
-------------------------------------------------------
|
816
|
+
Wobauth::GroupsControllerTest: test_should_create_group
|
817
|
+
-------------------------------------------------------
|
818
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
819
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
820
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
821
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
822
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.296946"], ["updated_at", "2018-07-13 09:36:43.296946"]]
|
823
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
824
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_groups"[0m
|
825
|
+
Processing by Wobauth::GroupsController#create as HTML
|
826
|
+
Parameters: {"group"=>{"description"=>"text", "name"=>"myadmin"}}
|
827
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
828
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
829
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
830
|
+
[1m[36mWobauth::Group Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? LIMIT ?[0m [["name", "myadmin"], ["LIMIT", 1]]
|
831
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_groups" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "myadmin"], ["description", "text"], ["created_at", "2018-07-13 09:36:43.300647"], ["updated_at", "2018-07-13 09:36:43.300647"]]
|
832
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
833
|
+
Redirected to http://test.host/auth/groups/980190963
|
834
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
|
835
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_groups"[0m
|
836
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
837
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
838
|
+
--------------------------------------------------
|
839
|
+
Wobauth::GroupsControllerTest: test_should_get_new
|
840
|
+
--------------------------------------------------
|
841
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
842
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
843
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
844
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
845
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.304415"], ["updated_at", "2018-07-13 09:36:43.304415"]]
|
846
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
847
|
+
Processing by Wobauth::GroupsController#new as HTML
|
848
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
849
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
850
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/new.html.erb within layouts/application
|
851
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_form.html.erb (1.7ms)
|
852
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/new.html.erb within layouts/application (2.1ms)
|
853
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
854
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
855
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
856
|
+
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
857
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
858
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
859
|
+
--------------------------------------------------------------------
|
860
|
+
Wobauth::GroupsControllerTest: test_should_show_assigned_memberships
|
861
|
+
--------------------------------------------------------------------
|
862
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
863
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
864
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
865
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
866
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.313995"], ["updated_at", "2018-07-13 09:36:43.313995"]]
|
867
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
868
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
869
|
+
[1m[36mWobauth::User Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "user3"], ["LIMIT", 1]]
|
870
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "sn", "givenname", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["username", "user3"], ["sn", "Berlin"], ["givenname", "Mike"], ["email", "user1002@example.net"], ["encrypted_password", "$2a$04$TNLC.j2dHaqO2RpOQJ4.jeoSg2YwUBi4I65v1MphMNTOjFFHye.gK"], ["created_at", "2018-07-13 09:36:43.316388"], ["updated_at", "2018-07-13 09:36:43.316388"]]
|
871
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
872
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
873
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_memberships" ("user_id", "group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["user_id", 980190963], ["group_id", 980190962], ["created_at", "2018-07-13 09:36:43.317429"], ["updated_at", "2018-07-13 09:36:43.317429"]]
|
874
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
875
|
+
Processing by Wobauth::GroupsController#show as HTML
|
876
|
+
Parameters: {"id"=>"980190962"}
|
877
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
878
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
879
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
880
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
881
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/show.html.erb within layouts/application
|
882
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::Group"]]
|
883
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_group_roles.html.erb (0.5ms)
|
884
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."group_id" = ?[0m [["group_id", 980190962]]
|
885
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190963], ["LIMIT", 1]]
|
886
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_group_memberships.html.erb (1.5ms)
|
887
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/show.html.erb within layouts/application (3.1ms)
|
888
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
889
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
890
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
891
|
+
Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.2ms)
|
892
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
893
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
894
|
+
-----------------------------------------------------------------------
|
895
|
+
Wobauth::GroupsControllerTest: test_should_get_all_translations_in_show
|
896
|
+
-----------------------------------------------------------------------
|
897
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
898
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
899
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
900
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
901
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.328542"], ["updated_at", "2018-07-13 09:36:43.328542"]]
|
902
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
903
|
+
Processing by Wobauth::GroupsController#show as HTML
|
904
|
+
Parameters: {"id"=>"980190962"}
|
905
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
906
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
907
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
908
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
909
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/show.html.erb within layouts/application
|
910
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 980190962], ["authorizable_type", "Wobauth::Group"]]
|
911
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_group_roles.html.erb (0.5ms)
|
912
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."group_id" = ?[0m [["group_id", 980190962]]
|
913
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_group_memberships.html.erb (0.4ms)
|
914
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/show.html.erb within layouts/application (2.0ms)
|
915
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
916
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
917
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
918
|
+
Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.2ms)
|
919
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
920
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
921
|
+
----------------------------------------------------------------------
|
922
|
+
Wobauth::GroupsControllerTest: test_should_get_new_with_specific_title
|
923
|
+
----------------------------------------------------------------------
|
924
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
925
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
926
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
927
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
928
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.338492"], ["updated_at", "2018-07-13 09:36:43.338492"]]
|
929
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
930
|
+
Processing by Wobauth::GroupsController#new as HTML
|
931
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
932
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
933
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/new.html.erb within layouts/application
|
934
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_form.html.erb (1.6ms)
|
935
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/new.html.erb within layouts/application (1.7ms)
|
936
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
937
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
938
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
939
|
+
Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
940
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
941
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
942
|
+
-------------------------------------------------------------------------------
|
943
|
+
Wobauth::GroupsControllerTest: test_should_not_create_group_with_duplicate_name
|
944
|
+
-------------------------------------------------------------------------------
|
945
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
946
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
947
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
948
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
949
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.347816"], ["updated_at", "2018-07-13 09:36:43.347816"]]
|
950
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
951
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_groups"[0m
|
952
|
+
Processing by Wobauth::GroupsController#create as HTML
|
953
|
+
Parameters: {"group"=>{"description"=>"text", "name"=>"admin"}}
|
954
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
955
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
956
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
957
|
+
[1m[36mWobauth::Group Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? LIMIT ?[0m [["name", "admin"], ["LIMIT", 1]]
|
958
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
959
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/new.html.erb within layouts/application
|
960
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/_form.html.erb (1.6ms)
|
961
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/groups/new.html.erb within layouts/application (1.7ms)
|
962
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
963
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
964
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
965
|
+
Completed 200 OK in 7ms (Views: 3.6ms | ActiveRecord: 0.2ms)
|
966
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_groups"[0m
|
967
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
968
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
969
|
+
-------------------------------------------------------
|
970
|
+
Wobauth::GroupsControllerTest: test_should_update_group
|
971
|
+
-------------------------------------------------------
|
972
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
973
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
974
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
975
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
976
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.358264"], ["updated_at", "2018-07-13 09:36:43.358264"]]
|
977
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
978
|
+
Processing by Wobauth::GroupsController#update as HTML
|
979
|
+
Parameters: {"group"=>{"description"=>"MyString", "name"=>"admin"}, "id"=>"980190962"}
|
980
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
981
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
982
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
983
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
984
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
985
|
+
[1m[36mWobauth::Group Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? AND ("wobauth_groups"."id" != ?) LIMIT ?[0m [["name", "admin"], ["id", 980190962], ["LIMIT", 1]]
|
986
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
987
|
+
Redirected to http://test.host/auth/groups/980190962
|
988
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
989
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
990
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
991
|
+
--------------------------------------------------------------------------------------------------------------
|
992
|
+
Wobauth::TranslationTest: test_: Wobauth::Translation should translate Role for model and controller actions.
|
993
|
+
--------------------------------------------------------------------------------------------------------------
|
994
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
995
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
996
|
+
----------------------------------------------------------------------
|
997
|
+
Wobauth::RolesControllerTest: test_should_get_all_translations_in_show
|
998
|
+
----------------------------------------------------------------------
|
999
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1000
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1001
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1002
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1003
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.367881"], ["updated_at", "2018-07-13 09:36:43.367881"]]
|
1004
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1005
|
+
Processing by Wobauth::RolesController#show as HTML
|
1006
|
+
Parameters: {"id"=>"980190962"}
|
1007
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1008
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1009
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1010
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1011
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/show.html.erb within layouts/application
|
1012
|
+
[1m[36mWobauth::Authority Load (0.1ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."role_id" = ? AND ((valid_until >= '2018-07-13' OR valid_until is NULL) AND (valid_from <= '2018-07-13' OR valid_from is NULL))[0m [["role_id", 980190962]]
|
1013
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/_role_authorities.html.erb (1.3ms)
|
1014
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/show.html.erb within layouts/application (2.6ms)
|
1015
|
+
Rendered shared/_navi.html.erb (0.4ms)
|
1016
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1017
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1018
|
+
Completed 200 OK in 8ms (Views: 5.3ms | ActiveRecord: 0.2ms)
|
1019
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1020
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1021
|
+
-----------------------------------------------------------------------
|
1022
|
+
Wobauth::RolesControllerTest: test_should_get_all_translations_in_index
|
1023
|
+
-----------------------------------------------------------------------
|
1024
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1025
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1026
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1027
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1028
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.379826"], ["updated_at", "2018-07-13 09:36:43.379826"]]
|
1029
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1030
|
+
Processing by Wobauth::RolesController#index as HTML
|
1031
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1032
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1033
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/index.html.erb within layouts/application
|
1034
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles"[0m
|
1035
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/index.html.erb within layouts/application (1.4ms)
|
1036
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1037
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1038
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1039
|
+
Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
1040
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1041
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1042
|
+
---------------------------------------------------
|
1043
|
+
Wobauth::RolesControllerTest: test_should_get_index
|
1044
|
+
---------------------------------------------------
|
1045
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1046
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1047
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1048
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1049
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.389280"], ["updated_at", "2018-07-13 09:36:43.389280"]]
|
1050
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1051
|
+
Processing by Wobauth::RolesController#index as HTML
|
1052
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1053
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1054
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/index.html.erb within layouts/application
|
1055
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles"[0m
|
1056
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/index.html.erb within layouts/application (1.0ms)
|
1057
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1058
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1059
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1060
|
+
Completed 200 OK in 5ms (Views: 3.1ms | ActiveRecord: 0.1ms)
|
1061
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1062
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1063
|
+
-------------------------------------------------------------------
|
1064
|
+
Wobauth::RolesControllerTest: test_should_show_assigned_authorities
|
1065
|
+
-------------------------------------------------------------------
|
1066
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1067
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1068
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1069
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1070
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.400955"], ["updated_at", "2018-07-13 09:36:43.400955"]]
|
1071
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1072
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1073
|
+
[1m[36mWobauth::User Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "user4"], ["LIMIT", 1]]
|
1074
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "sn", "givenname", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["username", "user4"], ["sn", "Quark"], ["givenname", "Guenter"], ["email", "user1003@example.net"], ["encrypted_password", "$2a$04$zwuV5FZE8gbb4lmRLqI6..fmpXv3k/aN3BP.Ca1lQIWeXQA6Qd9NS"], ["created_at", "2018-07-13 09:36:43.403464"], ["updated_at", "2018-07-13 09:36:43.403464"]]
|
1075
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1076
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1077
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 980190963], ["authorizable_type", "Wobauth::User"], ["role_id", 980190962], ["created_at", "2018-07-13 09:36:43.404564"], ["updated_at", "2018-07-13 09:36:43.404564"]]
|
1078
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1079
|
+
Processing by Wobauth::RolesController#show as HTML
|
1080
|
+
Parameters: {"id"=>"980190962"}
|
1081
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1082
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1083
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1084
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1085
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/show.html.erb within layouts/application
|
1086
|
+
[1m[36mWobauth::Authority Load (0.1ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."role_id" = ? AND ((valid_until >= '2018-07-13' OR valid_until is NULL) AND (valid_from <= '2018-07-13' OR valid_from is NULL))[0m [["role_id", 980190962]]
|
1087
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190963], ["LIMIT", 1]]
|
1088
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/_role_authorities.html.erb (1.8ms)
|
1089
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/show.html.erb within layouts/application (2.1ms)
|
1090
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1091
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1092
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1093
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.3ms)
|
1094
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1095
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1096
|
+
---------------------------------------------------
|
1097
|
+
Wobauth::RolesControllerTest: test_should_show_role
|
1098
|
+
---------------------------------------------------
|
1099
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1100
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1101
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1102
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1103
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.414683"], ["updated_at", "2018-07-13 09:36:43.414683"]]
|
1104
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1105
|
+
Processing by Wobauth::RolesController#show as HTML
|
1106
|
+
Parameters: {"id"=>"980190962"}
|
1107
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1108
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1109
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1110
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1111
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/show.html.erb within layouts/application
|
1112
|
+
[1m[36mWobauth::Authority Load (0.1ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."role_id" = ? AND ((valid_until >= '2018-07-13' OR valid_until is NULL) AND (valid_from <= '2018-07-13' OR valid_from is NULL))[0m [["role_id", 980190962]]
|
1113
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/_role_authorities.html.erb (0.7ms)
|
1114
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/roles/show.html.erb within layouts/application (1.0ms)
|
1115
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1116
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1117
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1118
|
+
Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 0.2ms)
|
1119
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1120
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1121
|
+
-----------------------------------------------------------------------
|
1122
|
+
Wobauth::RoleTest: test_: Wobauth::Role should simple factory working.
|
1123
|
+
-----------------------------------------------------------------------
|
1124
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1125
|
+
[1m[36mWobauth::Role Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_roles" WHERE "wobauth_roles"."name" = ? LIMIT ?[0m [["name", "name_1"], ["LIMIT", 1]]
|
1126
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_roles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name_1"], ["created_at", "2018-07-13 09:36:43.422342"], ["updated_at", "2018-07-13 09:36:43.422342"]]
|
1127
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1128
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1129
|
+
[1m[36mWobauth::Role Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_roles" WHERE "wobauth_roles"."name" = ? LIMIT ?[0m [["name", "name_2"], ["LIMIT", 1]]
|
1130
|
+
[1m[35mSQL (0.0ms)[0m [1m[32mINSERT INTO "wobauth_roles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name_2"], ["created_at", "2018-07-13 09:36:43.423402"], ["updated_at", "2018-07-13 09:36:43.423402"]]
|
1131
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1132
|
+
[1m[36mWobauth::Role Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_roles" WHERE "wobauth_roles"."name" = ? AND ("wobauth_roles"."id" != ?) LIMIT ?[0m [["name", "name_2"], ["id", 980190964], ["LIMIT", 1]]
|
1133
|
+
[1m[36mWobauth::Role Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_roles" WHERE "wobauth_roles"."name" = ? AND ("wobauth_roles"."id" != ?) LIMIT ?[0m [["name", "name_1"], ["id", 980190963], ["LIMIT", 1]]
|
1134
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1135
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1136
|
+
-----------------------------------------------------------------------------------------------------------
|
1137
|
+
Wobauth::RoleTest: test_: Wobauth::Role should have many users through authorities source => authorizable.
|
1138
|
+
-----------------------------------------------------------------------------------------------------------
|
1139
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1140
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1141
|
+
----------------------------------------------------------------------
|
1142
|
+
Wobauth::RoleTest: test_: Wobauth::Role should have many authorities.
|
1143
|
+
----------------------------------------------------------------------
|
1144
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1145
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1146
|
+
-----------------------------------------------------------------------
|
1147
|
+
Wobauth::RoleTest: test_: Wobauth::Role should require name to be set.
|
1148
|
+
-----------------------------------------------------------------------
|
1149
|
+
[1m[36mWobauth::Role Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_roles" WHERE "wobauth_roles"."name" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
1150
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1151
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1152
|
+
---------------------------------------------------------------------------------------------
|
1153
|
+
Wobauth::RoleTest: test_: Wobauth::Role should require case sensitive unique value for name.
|
1154
|
+
---------------------------------------------------------------------------------------------
|
1155
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" ORDER BY "wobauth_roles"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
|
1156
|
+
[1m[36mWobauth::Role Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_roles" WHERE "wobauth_roles"."name" = ? LIMIT ?[0m [["name", "Admin"], ["LIMIT", 1]]
|
1157
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1158
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1159
|
+
------------------------------------------------------------------------------------------------------------
|
1160
|
+
Wobauth::RoleTest: test_: Wobauth::Role should have many groups through authorities source => authorizable.
|
1161
|
+
------------------------------------------------------------------------------------------------------------
|
1162
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1163
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys[0m
|
1164
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
|
1165
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1166
|
+
[1m[36mFixture Delete (0.1ms)[0m [1m[31mDELETE FROM "wobauth_authorities"[0m
|
1167
|
+
[1m[36mFixture Insert (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "authorized_for_id", "authorized_for_type", "valid_from", "valid_until", "created_at", "updated_at", "id") VALUES (1, 'Wobauth::User', 2, NULL, NULL, '2014-05-04', '2014-05-04', '2018-07-13 09:36:43.430930', '2018-07-13 09:36:43.430930', 980190962)[0m
|
1168
|
+
[1m[36mFixture Insert (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "authorized_for_id", "authorized_for_type", "valid_from", "valid_until", "created_at", "updated_at", "id") VALUES (7, 'Wobauth::User', 2, NULL, NULL, '2014-05-04', '2014-05-04', '2018-07-13 09:36:43.430930', '2018-07-13 09:36:43.430930', 298486374)[0m
|
1169
|
+
[1m[35m (12.0ms)[0m [1m[36mcommit transaction[0m
|
1170
|
+
[1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
|
1171
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1172
|
+
-----------------------------------------------------------------------------
|
1173
|
+
Wobauth::AuthoritiesControllerTest: test_should_get_new_with_preselected_user
|
1174
|
+
-----------------------------------------------------------------------------
|
1175
|
+
[1m[36mWobauth::Authority Load (0.1ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1176
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1177
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1178
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1179
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.447122"], ["updated_at", "2018-07-13 09:36:43.447122"]]
|
1180
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1181
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1182
|
+
[1m[36mWobauth::User Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "user5"], ["LIMIT", 1]]
|
1183
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["username", "user5"], ["email", "user1004@example.net"], ["encrypted_password", "$2a$04$iuJm/xaSaa4XmwkZpkb9YeJmv1pY/eB.LaA0CNqrPZwQ3hP/p/8ku"], ["created_at", "2018-07-13 09:36:43.449539"], ["updated_at", "2018-07-13 09:36:43.449539"]]
|
1184
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1185
|
+
Processing by Wobauth::AuthoritiesController#new as HTML
|
1186
|
+
Parameters: {"user_id"=>"980190963"}
|
1187
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1188
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1189
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/new.html.erb within layouts/application
|
1190
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 980190963], ["LIMIT", 1]]
|
1191
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
1192
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
1193
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles"[0m
|
1194
|
+
[1m[36mCategory Load (0.1ms)[0m [1m[34mSELECT "categories".* FROM "categories"[0m
|
1195
|
+
[1m[36mCategory Load (0.0ms)[0m [1m[34mSELECT "categories".* FROM "categories"[0m
|
1196
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/_form.html.erb (10.2ms)
|
1197
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/new.html.erb within layouts/application (10.8ms)
|
1198
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1199
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1200
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1201
|
+
Completed 200 OK in 16ms (Views: 13.2ms | ActiveRecord: 0.6ms)
|
1202
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1203
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1204
|
+
--------------------------------------------------------
|
1205
|
+
Wobauth::AuthoritiesControllerTest: test_should_get_edit
|
1206
|
+
--------------------------------------------------------
|
1207
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1208
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1209
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1210
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1211
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.470515"], ["updated_at", "2018-07-13 09:36:43.470515"]]
|
1212
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1213
|
+
Processing by Wobauth::AuthoritiesController#edit as HTML
|
1214
|
+
Parameters: {"id"=>"980190962"}
|
1215
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1216
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1217
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1218
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1219
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/edit.html.erb within layouts/application
|
1220
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
1221
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
1222
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
1223
|
+
[1m[36mWobauth::Group Load (0.1ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups"[0m
|
1224
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles"[0m
|
1225
|
+
[1m[36mCategory Load (0.0ms)[0m [1m[34mSELECT "categories".* FROM "categories"[0m
|
1226
|
+
[1m[36mCategory Load (0.0ms)[0m [1m[34mSELECT "categories".* FROM "categories"[0m
|
1227
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/_form.html.erb (7.5ms)
|
1228
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/edit.html.erb within layouts/application (7.9ms)
|
1229
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1230
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1231
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.7ms)
|
1232
|
+
Completed 200 OK in 12ms (Views: 9.7ms | ActiveRecord: 0.4ms)
|
1233
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1234
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1235
|
+
-----------------------------------------------------------------
|
1236
|
+
Wobauth::AuthoritiesControllerTest: test_should_destroy_authority
|
1237
|
+
-----------------------------------------------------------------
|
1238
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1239
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1240
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1241
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1242
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.486375"], ["updated_at", "2018-07-13 09:36:43.486375"]]
|
1243
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1244
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_authorities"[0m
|
1245
|
+
Processing by Wobauth::AuthoritiesController#destroy as HTML
|
1246
|
+
Parameters: {"id"=>"980190962"}
|
1247
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1248
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1249
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1250
|
+
[1m[36mWobauth::Authority Load (0.1ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1251
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1252
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ?[0m [["id", 980190962]]
|
1253
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1254
|
+
Redirected to http://test.host/auth/authorities
|
1255
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
|
1256
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_authorities"[0m
|
1257
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1258
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1259
|
+
-----------------------------------------------------------------------------
|
1260
|
+
Wobauth::AuthoritiesControllerTest: test_should_get_all_translations_in_index
|
1261
|
+
-----------------------------------------------------------------------------
|
1262
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1263
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1264
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1265
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1266
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.493648"], ["updated_at", "2018-07-13 09:36:43.493648"]]
|
1267
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1268
|
+
Processing by Wobauth::AuthoritiesController#index as HTML
|
1269
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1270
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1271
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/index.html.erb within layouts/application
|
1272
|
+
[1m[36mWobauth::Authority Load (0.1ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities"[0m
|
1273
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
|
1274
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
1275
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
1276
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
1277
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1278
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1279
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/index.html.erb within layouts/application (5.3ms)
|
1280
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1281
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1282
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1283
|
+
Completed 200 OK in 10ms (Views: 7.5ms | ActiveRecord: 0.3ms)
|
1284
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1285
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1286
|
+
------------------------------------------------------------------------------
|
1287
|
+
Wobauth::AuthoritiesControllerTest: test_should_get_new_with_preselected_group
|
1288
|
+
------------------------------------------------------------------------------
|
1289
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1290
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1291
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1292
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1293
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.506928"], ["updated_at", "2018-07-13 09:36:43.506928"]]
|
1294
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1295
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1296
|
+
[1m[36mWobauth::Group Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? LIMIT ?[0m [["name", "name_1"], ["LIMIT", 1]]
|
1297
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name_1"], ["created_at", "2018-07-13 09:36:43.508263"], ["updated_at", "2018-07-13 09:36:43.508263"]]
|
1298
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1299
|
+
Processing by Wobauth::AuthoritiesController#new as HTML
|
1300
|
+
Parameters: {"group_id"=>"980190963"}
|
1301
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1302
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1303
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/new.html.erb within layouts/application
|
1304
|
+
[1m[36mWobauth::Group Load (0.1ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 980190963], ["LIMIT", 1]]
|
1305
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups"[0m
|
1306
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups"[0m
|
1307
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles"[0m
|
1308
|
+
[1m[36mCategory Load (0.0ms)[0m [1m[34mSELECT "categories".* FROM "categories"[0m
|
1309
|
+
[1m[36mCategory Load (0.0ms)[0m [1m[34mSELECT "categories".* FROM "categories"[0m
|
1310
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/_form.html.erb (7.3ms)
|
1311
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/new.html.erb within layouts/application (7.4ms)
|
1312
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1313
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1314
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1315
|
+
Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.3ms)
|
1316
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1317
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1318
|
+
----------------------------------------------------------------
|
1319
|
+
Wobauth::AuthoritiesControllerTest: test_should_create_authority
|
1320
|
+
----------------------------------------------------------------
|
1321
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1322
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1323
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1324
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1325
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.524125"], ["updated_at", "2018-07-13 09:36:43.524125"]]
|
1326
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1327
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_authorities"[0m
|
1328
|
+
Processing by Wobauth::AuthoritiesController#create as HTML
|
1329
|
+
Parameters: {"authority"=>{"authorizable_id"=>"1", "authorizable_type"=>"Wobauth::User", "authorized_for_id"=>"", "authorized_for_type"=>"", "role_id"=>"2", "valid_from"=>"2014-05-04", "valid_until"=>"2014-05-04"}}
|
1330
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1331
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1332
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1333
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "authorized_for_type", "valid_from", "valid_until", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["authorizable_id", 1], ["authorizable_type", "Wobauth::User"], ["role_id", 2], ["authorized_for_type", ""], ["valid_from", "2014-05-04"], ["valid_until", "2014-05-04"], ["created_at", "2018-07-13 09:36:43.531878"], ["updated_at", "2018-07-13 09:36:43.531878"]]
|
1334
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1335
|
+
Redirected to http://test.host/auth/authorities/980190964
|
1336
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.3ms)
|
1337
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_authorities"[0m
|
1338
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1339
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1340
|
+
----------------------------------------------------------------------------
|
1341
|
+
Wobauth::AuthoritiesControllerTest: test_should_get_all_translations_in_show
|
1342
|
+
----------------------------------------------------------------------------
|
1343
|
+
[1m[36mWobauth::Authority Load (0.1ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1344
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1345
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1346
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1347
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.535944"], ["updated_at", "2018-07-13 09:36:43.535944"]]
|
1348
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1349
|
+
Processing by Wobauth::AuthoritiesController#show as HTML
|
1350
|
+
Parameters: {"id"=>"980190962"}
|
1351
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1352
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1353
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1354
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1355
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/show.html.erb within layouts/application
|
1356
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
1357
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
1358
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/show.html.erb within layouts/application (2.0ms)
|
1359
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1360
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1361
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1362
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.2ms)
|
1363
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1364
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1365
|
+
-------------------------------------------------------
|
1366
|
+
Wobauth::AuthoritiesControllerTest: test_should_get_new
|
1367
|
+
-------------------------------------------------------
|
1368
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1369
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1370
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1371
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1372
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.546038"], ["updated_at", "2018-07-13 09:36:43.546038"]]
|
1373
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1374
|
+
Processing by Wobauth::AuthoritiesController#new as HTML
|
1375
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1376
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1377
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/new.html.erb within layouts/application
|
1378
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
1379
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
1380
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups"[0m
|
1381
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles"[0m
|
1382
|
+
[1m[36mCategory Load (0.0ms)[0m [1m[34mSELECT "categories".* FROM "categories"[0m
|
1383
|
+
[1m[36mCategory Load (0.0ms)[0m [1m[34mSELECT "categories".* FROM "categories"[0m
|
1384
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/_form.html.erb (6.7ms)
|
1385
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/new.html.erb within layouts/application (6.8ms)
|
1386
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1387
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1388
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1389
|
+
Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.3ms)
|
1390
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1391
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1392
|
+
--------------------------------------------------------------
|
1393
|
+
Wobauth::AuthoritiesControllerTest: test_should_show_authority
|
1394
|
+
--------------------------------------------------------------
|
1395
|
+
[1m[36mWobauth::Authority Load (0.1ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1396
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1397
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1398
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1399
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.559867"], ["updated_at", "2018-07-13 09:36:43.559867"]]
|
1400
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1401
|
+
Processing by Wobauth::AuthoritiesController#show as HTML
|
1402
|
+
Parameters: {"id"=>"980190962"}
|
1403
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1404
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1405
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1406
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1407
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/show.html.erb within layouts/application
|
1408
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
1409
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
1410
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/show.html.erb within layouts/application (1.5ms)
|
1411
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1412
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1413
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1414
|
+
Completed 200 OK in 6ms (Views: 3.4ms | ActiveRecord: 0.2ms)
|
1415
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1416
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1417
|
+
----------------------------------------------------------------
|
1418
|
+
Wobauth::AuthoritiesControllerTest: test_should_update_authority
|
1419
|
+
----------------------------------------------------------------
|
1420
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1421
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1422
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1423
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1424
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.568614"], ["updated_at", "2018-07-13 09:36:43.568614"]]
|
1425
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1426
|
+
Processing by Wobauth::AuthoritiesController#update as HTML
|
1427
|
+
Parameters: {"authority"=>{"authorizable_id"=>"1", "authorizable_type"=>"Wobauth::User", "authorized_for_id"=>"", "authorized_for_type"=>"", "role_id"=>"2", "valid_from"=>"2014-05-04", "valid_until"=>"2014-05-04"}, "id"=>"980190962"}
|
1428
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1429
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1430
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1431
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1432
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1433
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "wobauth_authorities" SET "authorized_for_type" = ?, "updated_at" = ? WHERE "wobauth_authorities"."id" = ?[0m [["authorized_for_type", ""], ["updated_at", "2018-07-13 09:36:43.572243"], ["id", 980190962]]
|
1434
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1435
|
+
Redirected to http://test.host/auth/authorities/980190962
|
1436
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
|
1437
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1438
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1439
|
+
---------------------------------------------------------
|
1440
|
+
Wobauth::AuthoritiesControllerTest: test_should_get_index
|
1441
|
+
---------------------------------------------------------
|
1442
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities" WHERE "wobauth_authorities"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1443
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1444
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1445
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1446
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.576066"], ["updated_at", "2018-07-13 09:36:43.576066"]]
|
1447
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1448
|
+
Processing by Wobauth::AuthoritiesController#index as HTML
|
1449
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1450
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1451
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/index.html.erb within layouts/application
|
1452
|
+
[1m[36mWobauth::Authority Load (0.0ms)[0m [1m[34mSELECT "wobauth_authorities".* FROM "wobauth_authorities"[0m
|
1453
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
|
1454
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
1455
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
1456
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
1457
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1458
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1459
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/authorities/index.html.erb within layouts/application (4.5ms)
|
1460
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1461
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1462
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1463
|
+
Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.3ms)
|
1464
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1465
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1466
|
+
-----------------------------------------------------------------------------------
|
1467
|
+
Wobauth::AuthorityTest: test_: Wobauth::Authority should belong to authorized_for.
|
1468
|
+
-----------------------------------------------------------------------------------
|
1469
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1470
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1471
|
+
-------------------------------------------------------------------------
|
1472
|
+
Wobauth::AuthorityTest: test_: Wobauth::Authority should belong to role.
|
1473
|
+
-------------------------------------------------------------------------
|
1474
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1475
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1476
|
+
--------------------------------------------------------------------------------------------
|
1477
|
+
Wobauth::AuthorityTest: test_: Wobauth::Authority should require authorizable_id to be set.
|
1478
|
+
--------------------------------------------------------------------------------------------
|
1479
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1480
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1481
|
+
---------------------------------------------------------------------------------
|
1482
|
+
Wobauth::AuthorityTest: test_: Wobauth::Authority should simple factory working.
|
1483
|
+
---------------------------------------------------------------------------------
|
1484
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1485
|
+
[1m[36mWobauth::User Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "user6"], ["LIMIT", 1]]
|
1486
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["username", "user6"], ["email", "user1005@example.net"], ["encrypted_password", "$2a$04$An3VKlT4FAojncXHu8fVxeoQBzgcnaY3ndoEr89fodYcB3XxzG4vS"], ["created_at", "2018-07-13 09:36:43.590488"], ["updated_at", "2018-07-13 09:36:43.590488"]]
|
1487
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1488
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1489
|
+
[1m[36mWobauth::Role Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_roles" WHERE "wobauth_roles"."name" = ? LIMIT ?[0m [["name", "name_3"], ["LIMIT", 1]]
|
1490
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_roles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name_3"], ["created_at", "2018-07-13 09:36:43.591882"], ["updated_at", "2018-07-13 09:36:43.591882"]]
|
1491
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1492
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1493
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 980190963], ["authorizable_type", "Wobauth::User"], ["role_id", 980190963], ["created_at", "2018-07-13 09:36:43.592674"], ["updated_at", "2018-07-13 09:36:43.592674"]]
|
1494
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1495
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1496
|
+
[1m[36mWobauth::User Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "user7"], ["LIMIT", 1]]
|
1497
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["username", "user7"], ["email", "user1006@example.net"], ["encrypted_password", "$2a$04$mPHb9R23q3phm1kUao34o.3Zec2W/0LQ6HYm6HYa5aEVOUPQW/efu"], ["created_at", "2018-07-13 09:36:43.594916"], ["updated_at", "2018-07-13 09:36:43.594916"]]
|
1498
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1499
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1500
|
+
[1m[36mWobauth::Role Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_roles" WHERE "wobauth_roles"."name" = ? LIMIT ?[0m [["name", "name_4"], ["LIMIT", 1]]
|
1501
|
+
[1m[35mSQL (0.0ms)[0m [1m[32mINSERT INTO "wobauth_roles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name_4"], ["created_at", "2018-07-13 09:36:43.596095"], ["updated_at", "2018-07-13 09:36:43.596095"]]
|
1502
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1503
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1504
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 980190964], ["authorizable_type", "Wobauth::User"], ["role_id", 980190964], ["created_at", "2018-07-13 09:36:43.596795"], ["updated_at", "2018-07-13 09:36:43.596795"]]
|
1505
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1506
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1507
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1508
|
+
---------------------------------------------------------------------------------
|
1509
|
+
Wobauth::AuthorityTest: test_: Wobauth::Authority should belong to authorizable.
|
1510
|
+
---------------------------------------------------------------------------------
|
1511
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1512
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1513
|
+
----------------------------------------------------------------------------------------------
|
1514
|
+
Wobauth::AuthorityTest: test_: Wobauth::Authority should require authorizable_type to be set.
|
1515
|
+
----------------------------------------------------------------------------------------------
|
1516
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1517
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1518
|
+
------------------------------------------------------------------------------------
|
1519
|
+
Wobauth::AuthorityTest: test_: Wobauth::Authority should require role_id to be set.
|
1520
|
+
------------------------------------------------------------------------------------
|
1521
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1522
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1523
|
+
--------------------------------------------------------------------------------------
|
1524
|
+
Wobauth::MembershipTest: test_: Wobauth::Membership should require user_id to be set.
|
1525
|
+
--------------------------------------------------------------------------------------
|
1526
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1527
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1528
|
+
-----------------------------------------------------------------------------------
|
1529
|
+
Wobauth::MembershipTest: test_: Wobauth::Membership should simple factory working.
|
1530
|
+
-----------------------------------------------------------------------------------
|
1531
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1532
|
+
[1m[36mWobauth::User Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "user8"], ["LIMIT", 1]]
|
1533
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["username", "user8"], ["email", "user1007@example.net"], ["encrypted_password", "$2a$04$YYf/Tz8aidFI.PfHL9OeM.5lP76CAkzN8UAenFT7krH4C4qzYVVpW"], ["created_at", "2018-07-13 09:36:43.605794"], ["updated_at", "2018-07-13 09:36:43.605794"]]
|
1534
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1535
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1536
|
+
[1m[36mWobauth::Group Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? LIMIT ?[0m [["name", "name_2"], ["LIMIT", 1]]
|
1537
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name_2"], ["created_at", "2018-07-13 09:36:43.607088"], ["updated_at", "2018-07-13 09:36:43.607088"]]
|
1538
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1539
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1540
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_memberships" ("user_id", "group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["user_id", 980190963], ["group_id", 980190963], ["created_at", "2018-07-13 09:36:43.607813"], ["updated_at", "2018-07-13 09:36:43.607813"]]
|
1541
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1542
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1543
|
+
[1m[36mWobauth::User Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "user9"], ["LIMIT", 1]]
|
1544
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["username", "user9"], ["email", "user1008@example.net"], ["encrypted_password", "$2a$04$DZTFtByMaDLZQH63st8Cv.v1qgNF3ZzqclkX07OIRQag5/hytlMWK"], ["created_at", "2018-07-13 09:36:43.609891"], ["updated_at", "2018-07-13 09:36:43.609891"]]
|
1545
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1546
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1547
|
+
[1m[36mWobauth::Group Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? LIMIT ?[0m [["name", "name_3"], ["LIMIT", 1]]
|
1548
|
+
[1m[35mSQL (0.0ms)[0m [1m[32mINSERT INTO "wobauth_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name_3"], ["created_at", "2018-07-13 09:36:43.611044"], ["updated_at", "2018-07-13 09:36:43.611044"]]
|
1549
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1550
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1551
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_memberships" ("user_id", "group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["user_id", 980190964], ["group_id", 980190964], ["created_at", "2018-07-13 09:36:43.611791"], ["updated_at", "2018-07-13 09:36:43.611791"]]
|
1552
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1553
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1554
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1555
|
+
---------------------------------------------------------------------------------------
|
1556
|
+
Wobauth::MembershipTest: test_: Wobauth::Membership should require group_id to be set.
|
1557
|
+
---------------------------------------------------------------------------------------
|
1558
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1559
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1560
|
+
----------------------------------------------------------------------------
|
1561
|
+
Wobauth::MembershipTest: test_: Wobauth::Membership should belong to group.
|
1562
|
+
----------------------------------------------------------------------------
|
1563
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1564
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1565
|
+
-------------------------------------------------------------------------------------------------------
|
1566
|
+
Wobauth::MembershipTest: test_: Wobauth::Membership should belong to user class_name => Wobauth::User.
|
1567
|
+
-------------------------------------------------------------------------------------------------------
|
1568
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1569
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1570
|
+
--------------------------------------------------------------------------------------
|
1571
|
+
Wobauth::GroupTest: test_: Wobauth::Group should have many roles through authorities.
|
1572
|
+
--------------------------------------------------------------------------------------
|
1573
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1574
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1575
|
+
------------------------------------------------------------------------
|
1576
|
+
Wobauth::GroupTest: test_: Wobauth::Group should have many authorities.
|
1577
|
+
------------------------------------------------------------------------
|
1578
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1579
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1580
|
+
-------------------------------------------------------------------------
|
1581
|
+
Wobauth::GroupTest: test_: Wobauth::Group should simple factory working.
|
1582
|
+
-------------------------------------------------------------------------
|
1583
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1584
|
+
[1m[36mWobauth::Group Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? LIMIT ?[0m [["name", "name_4"], ["LIMIT", 1]]
|
1585
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name_4"], ["created_at", "2018-07-13 09:36:43.617526"], ["updated_at", "2018-07-13 09:36:43.617526"]]
|
1586
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1587
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1588
|
+
[1m[36mWobauth::Group Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? LIMIT ?[0m [["name", "name_5"], ["LIMIT", 1]]
|
1589
|
+
[1m[35mSQL (0.0ms)[0m [1m[32mINSERT INTO "wobauth_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name_5"], ["created_at", "2018-07-13 09:36:43.618583"], ["updated_at", "2018-07-13 09:36:43.618583"]]
|
1590
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1591
|
+
[1m[36mWobauth::Group Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? AND ("wobauth_groups"."id" != ?) LIMIT ?[0m [["name", "name_5"], ["id", 980190964], ["LIMIT", 1]]
|
1592
|
+
[1m[36mWobauth::Group Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? AND ("wobauth_groups"."id" != ?) LIMIT ?[0m [["name", "name_4"], ["id", 980190963], ["LIMIT", 1]]
|
1593
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1594
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1595
|
+
-----------------------------------------------------------------------------------------------
|
1596
|
+
Wobauth::GroupTest: test_: Wobauth::Group should require case sensitive unique value for name.
|
1597
|
+
-----------------------------------------------------------------------------------------------
|
1598
|
+
[1m[36mWobauth::Group Load (0.1ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" ORDER BY "wobauth_groups"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
|
1599
|
+
[1m[36mWobauth::Group Exists (0.0ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? LIMIT ?[0m [["name", "user"], ["LIMIT", 1]]
|
1600
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1601
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1602
|
+
------------------------------------------------------------------------
|
1603
|
+
Wobauth::GroupTest: test_: Wobauth::Group should have many memberships.
|
1604
|
+
------------------------------------------------------------------------
|
1605
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1606
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1607
|
+
-----------------------------------------------------------------------------------------------------
|
1608
|
+
Wobauth::GroupTest: test_: Wobauth::Group should have many users through memberships source => user.
|
1609
|
+
-----------------------------------------------------------------------------------------------------
|
1610
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1611
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1612
|
+
-------------------------------------------------------------------------
|
1613
|
+
Wobauth::GroupTest: test_: Wobauth::Group should require name to be set.
|
1614
|
+
-------------------------------------------------------------------------
|
1615
|
+
[1m[36mWobauth::Group Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
1616
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1617
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1618
|
+
---------------------------------------------------------
|
1619
|
+
NavigationTest: test_: Navigation should show home page.
|
1620
|
+
---------------------------------------------------------
|
1621
|
+
Started GET "/home" for 127.0.0.1 at 2018-07-13 11:36:43 +0200
|
1622
|
+
Processing by HomeController#index as HTML
|
1623
|
+
Rendering home/index.html.erb within layouts/application
|
1624
|
+
Rendered home/index.html.erb within layouts/application (0.2ms)
|
1625
|
+
Rendered shared/_navi.html.erb (2.5ms)
|
1626
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1627
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.1ms)
|
1628
|
+
Completed 200 OK in 11ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
1629
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1630
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys[0m
|
1631
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
|
1632
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1633
|
+
[1m[36mFixture Delete (0.1ms)[0m [1m[31mDELETE FROM "wobauth_memberships"[0m
|
1634
|
+
[1m[36mFixture Insert (0.1ms)[0m [1m[32mINSERT INTO "wobauth_memberships" ("user_id", "group_id", "auto", "created_at", "updated_at", "id") VALUES (11, 12, 'f', '2018-07-13 09:36:43.707564', '2018-07-13 09:36:43.707564', 980190962)[0m
|
1635
|
+
[1m[36mFixture Insert (0.0ms)[0m [1m[32mINSERT INTO "wobauth_memberships" ("user_id", "group_id", "auto", "created_at", "updated_at", "id") VALUES (21, 22, 'f', '2018-07-13 09:36:43.707564', '2018-07-13 09:36:43.707564', 298486374)[0m
|
1636
|
+
[1m[35m (10.4ms)[0m [1m[36mcommit transaction[0m
|
1637
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
|
1638
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1639
|
+
------------------------------------------------------------------
|
1640
|
+
Wobauth::MembershipsControllerTest: test_should_destroy_membership
|
1641
|
+
------------------------------------------------------------------
|
1642
|
+
[1m[36mWobauth::Membership Load (0.1ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1643
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1644
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1645
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1646
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.724502"], ["updated_at", "2018-07-13 09:36:43.724502"]]
|
1647
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1648
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_memberships"[0m
|
1649
|
+
Processing by Wobauth::MembershipsController#destroy as HTML
|
1650
|
+
Parameters: {"id"=>"980190962"}
|
1651
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1652
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1653
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1654
|
+
[1m[36mWobauth::Membership Load (0.1ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1655
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1656
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ?[0m [["id", 980190962]]
|
1657
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1658
|
+
Redirected to http://test.host/auth/memberships
|
1659
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.4ms)
|
1660
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_memberships"[0m
|
1661
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1662
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1663
|
+
----------------------------------------------------------------------------
|
1664
|
+
Wobauth::MembershipsControllerTest: test_should_get_all_translations_in_show
|
1665
|
+
----------------------------------------------------------------------------
|
1666
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1667
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1668
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1669
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1670
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.739176"], ["updated_at", "2018-07-13 09:36:43.739176"]]
|
1671
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1672
|
+
Processing by Wobauth::MembershipsController#show as HTML
|
1673
|
+
Parameters: {"id"=>"980190962"}
|
1674
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1675
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1676
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1677
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1678
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/show.html.erb within layouts/application
|
1679
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
|
1680
|
+
[1m[36mWobauth::Group Load (0.1ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
|
1681
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/show.html.erb within layouts/application (2.6ms)
|
1682
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1683
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1684
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (1.0ms)
|
1685
|
+
Completed 200 OK in 10ms (Views: 6.5ms | ActiveRecord: 0.2ms)
|
1686
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1687
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1688
|
+
-------------------------------------------------------------------------
|
1689
|
+
Wobauth::MembershipsControllerTest: test_get_new_should_preselected_group
|
1690
|
+
-------------------------------------------------------------------------
|
1691
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1692
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1693
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1694
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1695
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.753470"], ["updated_at", "2018-07-13 09:36:43.753470"]]
|
1696
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1697
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1698
|
+
[1m[36mWobauth::Group Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_groups" WHERE "wobauth_groups"."name" = ? LIMIT ?[0m [["name", "name_6"], ["LIMIT", 1]]
|
1699
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name_6"], ["created_at", "2018-07-13 09:36:43.755515"], ["updated_at", "2018-07-13 09:36:43.755515"]]
|
1700
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1701
|
+
Processing by Wobauth::MembershipsController#new as HTML
|
1702
|
+
Parameters: {"group_id"=>"980190963"}
|
1703
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1704
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1705
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/new.html.erb within layouts/application
|
1706
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
1707
|
+
[1m[36mWobauth::Group Load (0.1ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups"[0m
|
1708
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/_form.html.erb (4.8ms)
|
1709
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/new.html.erb within layouts/application (5.7ms)
|
1710
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1711
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1712
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.9ms)
|
1713
|
+
Completed 200 OK in 12ms (Views: 9.1ms | ActiveRecord: 0.2ms)
|
1714
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1715
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1716
|
+
------------------------------------------------------------------------
|
1717
|
+
Wobauth::MembershipsControllerTest: test_get_new_should_preselected_user
|
1718
|
+
------------------------------------------------------------------------
|
1719
|
+
[1m[36mWobauth::Membership Load (0.1ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1720
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1721
|
+
[1m[36mWobauth::Role Load (0.4ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1722
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1723
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.772934"], ["updated_at", "2018-07-13 09:36:43.772934"]]
|
1724
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1725
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1726
|
+
[1m[36mWobauth::User Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "wobauth_users" WHERE "wobauth_users"."username" = ? LIMIT ?[0m [["username", "user10"], ["LIMIT", 1]]
|
1727
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_users" ("username", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["username", "user10"], ["email", "user1009@example.net"], ["encrypted_password", "$2a$04$QD2HkQ1Ra.CohZBqrkUIguLa7fxuBlnJ8LCDXYgTsISiy6XIzETGG"], ["created_at", "2018-07-13 09:36:43.775819"], ["updated_at", "2018-07-13 09:36:43.775819"]]
|
1728
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1729
|
+
Processing by Wobauth::MembershipsController#new as HTML
|
1730
|
+
Parameters: {"user_id"=>"980190963"}
|
1731
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1732
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1733
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/new.html.erb within layouts/application
|
1734
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
1735
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups"[0m
|
1736
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/_form.html.erb (4.3ms)
|
1737
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/new.html.erb within layouts/application (4.4ms)
|
1738
|
+
Rendered shared/_navi.html.erb (0.7ms)
|
1739
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (8.4ms)
|
1740
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.7ms)
|
1741
|
+
Completed 200 OK in 19ms (Views: 15.6ms | ActiveRecord: 0.2ms)
|
1742
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1743
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1744
|
+
-----------------------------------------------------------------------------
|
1745
|
+
Wobauth::MembershipsControllerTest: test_should_get_all_translations_in_index
|
1746
|
+
-----------------------------------------------------------------------------
|
1747
|
+
[1m[36mWobauth::Membership Load (0.1ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1748
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1749
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1750
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1751
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.800043"], ["updated_at", "2018-07-13 09:36:43.800043"]]
|
1752
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1753
|
+
Processing by Wobauth::MembershipsController#index as HTML
|
1754
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1755
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1756
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/index.html.erb within layouts/application
|
1757
|
+
[1m[36mWobauth::Membership Load (0.1ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships"[0m
|
1758
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 21], ["LIMIT", 1]]
|
1759
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 22], ["LIMIT", 1]]
|
1760
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
|
1761
|
+
[1m[36mWobauth::Group Load (0.1ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
|
1762
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/index.html.erb within layouts/application (3.7ms)
|
1763
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1764
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1765
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1766
|
+
Completed 200 OK in 8ms (Views: 6.0ms | ActiveRecord: 0.3ms)
|
1767
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1768
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1769
|
+
-----------------------------------------------------------------
|
1770
|
+
Wobauth::MembershipsControllerTest: test_should_create_membership
|
1771
|
+
-----------------------------------------------------------------
|
1772
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1773
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1774
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1775
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1776
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.812502"], ["updated_at", "2018-07-13 09:36:43.812502"]]
|
1777
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1778
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_memberships"[0m
|
1779
|
+
Processing by Wobauth::MembershipsController#create as HTML
|
1780
|
+
Parameters: {"membership"=>{"auto"=>"false", "group_id"=>"12", "user_id"=>"11"}}
|
1781
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1782
|
+
Unpermitted parameter: :auto
|
1783
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1784
|
+
Unpermitted parameter: :auto
|
1785
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1786
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_memberships" ("user_id", "group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["user_id", 11], ["group_id", 12], ["created_at", "2018-07-13 09:36:43.816260"], ["updated_at", "2018-07-13 09:36:43.816260"]]
|
1787
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1788
|
+
Redirected to http://test.host/auth/memberships/980190963
|
1789
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
1790
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "wobauth_memberships"[0m
|
1791
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1792
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1793
|
+
-----------------------------------------------------------------
|
1794
|
+
Wobauth::MembershipsControllerTest: test_should_update_membership
|
1795
|
+
-----------------------------------------------------------------
|
1796
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1797
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1798
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1799
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1800
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.820225"], ["updated_at", "2018-07-13 09:36:43.820225"]]
|
1801
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1802
|
+
Processing by Wobauth::MembershipsController#update as HTML
|
1803
|
+
Parameters: {"membership"=>{"auto"=>"false", "group_id"=>"12", "user_id"=>"11"}, "id"=>"980190962"}
|
1804
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1805
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1806
|
+
[1m[36mWobauth::Role Load (0.1ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1807
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1808
|
+
Unpermitted parameter: :auto
|
1809
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1810
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1811
|
+
Redirected to http://test.host/auth/memberships/980190962
|
1812
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
1813
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1814
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1815
|
+
-------------------------------------------------------
|
1816
|
+
Wobauth::MembershipsControllerTest: test_should_get_new
|
1817
|
+
-------------------------------------------------------
|
1818
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1819
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1820
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1821
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1822
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.827514"], ["updated_at", "2018-07-13 09:36:43.827514"]]
|
1823
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1824
|
+
Processing by Wobauth::MembershipsController#new as HTML
|
1825
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1826
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1827
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/new.html.erb within layouts/application
|
1828
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
1829
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups"[0m
|
1830
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/_form.html.erb (2.4ms)
|
1831
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/new.html.erb within layouts/application (2.5ms)
|
1832
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1833
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1834
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.6ms)
|
1835
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
1836
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1837
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1838
|
+
--------------------------------------------------------
|
1839
|
+
Wobauth::MembershipsControllerTest: test_should_get_edit
|
1840
|
+
--------------------------------------------------------
|
1841
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1842
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1843
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1844
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1845
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.836918"], ["updated_at", "2018-07-13 09:36:43.836918"]]
|
1846
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1847
|
+
Processing by Wobauth::MembershipsController#edit as HTML
|
1848
|
+
Parameters: {"id"=>"980190962"}
|
1849
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1850
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1851
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1852
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1853
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/edit.html.erb within layouts/application
|
1854
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users"[0m
|
1855
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups"[0m
|
1856
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/_form.html.erb (2.4ms)
|
1857
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/edit.html.erb within layouts/application (2.7ms)
|
1858
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1859
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1860
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.5ms)
|
1861
|
+
Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.2ms)
|
1862
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1863
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1864
|
+
---------------------------------------------------------------
|
1865
|
+
Wobauth::MembershipsControllerTest: test_should_show_membership
|
1866
|
+
---------------------------------------------------------------
|
1867
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1868
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1869
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1870
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1871
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.847004"], ["updated_at", "2018-07-13 09:36:43.847004"]]
|
1872
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1873
|
+
Processing by Wobauth::MembershipsController#show as HTML
|
1874
|
+
Parameters: {"id"=>"980190962"}
|
1875
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1876
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1877
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1878
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1879
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/show.html.erb within layouts/application
|
1880
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
|
1881
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
|
1882
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/show.html.erb within layouts/application (1.3ms)
|
1883
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1884
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1885
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.5ms)
|
1886
|
+
Completed 200 OK in 5ms (Views: 3.1ms | ActiveRecord: 0.2ms)
|
1887
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1888
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1889
|
+
---------------------------------------------------------
|
1890
|
+
Wobauth::MembershipsControllerTest: test_should_get_index
|
1891
|
+
---------------------------------------------------------
|
1892
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships" WHERE "wobauth_memberships"."id" = ? LIMIT ?[0m [["id", 980190962], ["LIMIT", 1]]
|
1893
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1894
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" WHERE "wobauth_roles"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1895
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1896
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "wobauth_authorities" ("authorizable_id", "authorizable_type", "role_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"], ["role_id", 135138680], ["created_at", "2018-07-13 09:36:43.855324"], ["updated_at", "2018-07-13 09:36:43.855324"]]
|
1897
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1898
|
+
Processing by Wobauth::MembershipsController#index as HTML
|
1899
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1900
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1901
|
+
Rendering /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/index.html.erb within layouts/application
|
1902
|
+
[1m[36mWobauth::Membership Load (0.0ms)[0m [1m[34mSELECT "wobauth_memberships".* FROM "wobauth_memberships"[0m
|
1903
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 21], ["LIMIT", 1]]
|
1904
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 22], ["LIMIT", 1]]
|
1905
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
|
1906
|
+
[1m[36mWobauth::Group Load (0.0ms)[0m [1m[34mSELECT "wobauth_groups".* FROM "wobauth_groups" WHERE "wobauth_groups"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
|
1907
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/memberships/index.html.erb within layouts/application (2.9ms)
|
1908
|
+
Rendered shared/_navi.html.erb (0.3ms)
|
1909
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1910
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.5ms)
|
1911
|
+
Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.2ms)
|
1912
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1913
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1914
|
+
--------------------------------------------------------------------------------
|
1915
|
+
HomeControllerTest: test_: HomeController should show logout link if logged in.
|
1916
|
+
--------------------------------------------------------------------------------
|
1917
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 267711040], ["LIMIT", 1]]
|
1918
|
+
Processing by HomeController#index as HTML
|
1919
|
+
Rendering home/index.html.erb within layouts/application
|
1920
|
+
Rendered home/index.html.erb within layouts/application (0.0ms)
|
1921
|
+
[1m[36mWobauth::User Load (0.1ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 267711040], ["LIMIT", 1]]
|
1922
|
+
Rendered shared/_navi.html.erb (0.7ms)
|
1923
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1924
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 267711040], ["authorizable_type", "Wobauth::User"]]
|
1925
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.7ms)
|
1926
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
|
1927
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1928
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1929
|
+
---------------------------------------------------------------------------------------
|
1930
|
+
HomeControllerTest: test_: HomeController should should get all translations in index.
|
1931
|
+
---------------------------------------------------------------------------------------
|
1932
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1933
|
+
Processing by HomeController#index as HTML
|
1934
|
+
Rendering home/index.html.erb within layouts/application
|
1935
|
+
Rendered home/index.html.erb within layouts/application (0.0ms)
|
1936
|
+
[1m[36mWobauth::User Load (0.0ms)[0m [1m[34mSELECT "wobauth_users".* FROM "wobauth_users" WHERE "wobauth_users"."id" = ? ORDER BY "wobauth_users"."id" ASC LIMIT ?[0m [["id", 135138680], ["LIMIT", 1]]
|
1937
|
+
Rendered shared/_navi.html.erb (0.6ms)
|
1938
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1939
|
+
[1m[36mWobauth::Role Load (0.0ms)[0m [1m[34mSELECT "wobauth_roles".* FROM "wobauth_roles" INNER JOIN "wobauth_authorities" ON "wobauth_roles"."id" = "wobauth_authorities"."role_id" WHERE "wobauth_authorities"."authorizable_id" = ? AND "wobauth_authorities"."authorizable_type" = ?[0m [["authorizable_id", 135138680], ["authorizable_type", "Wobauth::User"]]
|
1940
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.7ms)
|
1941
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
1942
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1943
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1944
|
+
-----------------------------------------------------------------------------------
|
1945
|
+
HomeControllerTest: test_: HomeController should show login link if not logged in.
|
1946
|
+
-----------------------------------------------------------------------------------
|
1947
|
+
Processing by HomeController#index as HTML
|
1948
|
+
Rendering home/index.html.erb within layouts/application
|
1949
|
+
Rendered home/index.html.erb within layouts/application (0.0ms)
|
1950
|
+
Rendered shared/_navi.html.erb (0.2ms)
|
1951
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_accounting.html.erb (0.2ms)
|
1952
|
+
Rendered /home/wob/doc/Projects/github/wobauth/app/views/wobauth/shared/_admin.html.erb (0.0ms)
|
1953
|
+
Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1954
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|