nulogy_sso 2.1.3 → 2.2.0
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 +4 -4
- data/README.md +14 -6
- data/lib/nulogy_sso/engine.rb +12 -8
- data/lib/nulogy_sso/version.rb +1 -1
- data/spec/dummy/log/test.log +550 -0
- data/spec/examples.txt +22 -22
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63c5aa8c4f2d8f19fe7622ac4351fae01d48b870212a0f6b3383fe4370d6f382
|
4
|
+
data.tar.gz: '090b4829e374149aaf3ed228f18e7c19105eb1de3ec1f9d3b075850c35d9bdca'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcde34ae072af23ce9108af2203e227853dac1b4b70dede364315485b1e83ab84c50c9ab7f152a517a8b69492df18e93803e3ed0bbf0ce7d0b76fe233ceecd7f
|
7
|
+
data.tar.gz: fd0ada5c07e42eade74dda9189cb7744079b4a20562eb9e309bb137c56a24575b6288d8c9281e6eb708967e622e1e5388634849c8729dc3bbc4e5b3496a43b29
|
data/README.md
CHANGED
@@ -111,18 +111,26 @@ docker-compose up -d
|
|
111
111
|
|
112
112
|
Tests must be run manually before submitting a PR. This can be done using `rspec spec`.
|
113
113
|
|
114
|
-
|
114
|
+
Please consult [this documentation](docs/Testing.md) for advice on how to implement tests on an application using nulogy_sso.
|
115
115
|
|
116
|
-
|
117
|
-
|
118
|
-
###
|
116
|
+
### Deployment
|
119
117
|
|
120
118
|
1. Ensure that all tests are passing on the project
|
121
119
|
1. Increment the library version in [version.rb](./lib/nulogy_sso/version.rb), adhering to semver principles
|
122
120
|
1. Add a entry to [the Changelog](./CHANGELOG.md). Move all entries in the _Unreleased_ section into the new version's section. Now is also a good chance to add in any addition bullet points that may have been forgotten in the _Unreleased_ section. Append today's date to the new version.
|
123
|
-
1. Run these commands to complete the deployment. Rubygem push rights on this gem is required.
|
121
|
+
1. Run these commands to complete the deployment. Rubygem push rights on this gem is required. Obviously, replace `X.Y.Z` with the version being deployed.
|
124
122
|
```sh
|
125
|
-
|
123
|
+
# Commit changes to the files listed above
|
124
|
+
git commit -m "Cuts version X.Y.Z"
|
125
|
+
git push
|
126
|
+
|
127
|
+
# Push the gem to Rubygems
|
128
|
+
gem build nulogy_sso.gemspec
|
129
|
+
gem push nulogy_sso-X.Y.Z.gem
|
130
|
+
|
131
|
+
# Cut a release on GitHub
|
132
|
+
git tag vX.Y.Z
|
133
|
+
git push --tags
|
126
134
|
```
|
127
135
|
|
128
136
|
### Contributing
|
data/lib/nulogy_sso/engine.rb
CHANGED
@@ -9,20 +9,24 @@ module NulogySSO
|
|
9
9
|
class Engine < ::Rails::Engine
|
10
10
|
isolate_namespace NulogySSO
|
11
11
|
|
12
|
+
VERIFY_CONFIG = ENV["ASSETS_PRECOMPILE"].blank?
|
13
|
+
|
12
14
|
# Load all gems in the gemspec, as opposed to explicit require calls
|
13
15
|
Bundler.require(*Rails.groups)
|
14
16
|
|
15
17
|
config.after_initialize do
|
16
|
-
if
|
17
|
-
|
18
|
-
|
18
|
+
if VERIFY_CONFIG
|
19
|
+
if NulogySSO.sso_config.blank?
|
20
|
+
raise "Missing sso_config config object. Consider using config_for() to load a YAML config file."
|
21
|
+
end
|
19
22
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
+
if NulogySSO.find_user_by_email.blank?
|
24
|
+
raise "Missing find_user_by_email config lambda."
|
25
|
+
end
|
23
26
|
|
24
|
-
|
25
|
-
|
27
|
+
if NulogySSO.handle_sso_error.blank?
|
28
|
+
raise "Missing handle_sso_error config lambda."
|
29
|
+
end
|
26
30
|
end
|
27
31
|
end
|
28
32
|
end
|
data/lib/nulogy_sso/version.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
@@ -6933,3 +6933,553 @@ Completed 302 Found in 3ms (ActiveRecord: 0.0ms | Allocations: 468)
|
|
6933
6933
|
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
6934
6934
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6935
6935
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6936
|
+
[1m[35m (3.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
6937
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
6938
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
6939
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
6940
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6941
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6942
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6943
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6944
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6945
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6946
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6947
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6948
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6949
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6950
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6951
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
6952
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6953
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6954
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6955
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6956
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6957
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
6958
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6959
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
6960
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6961
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6962
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6963
|
+
[1m[35m (9.0ms)[0m [1m[31mrollback transaction[0m
|
6964
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6965
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6966
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6967
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
6968
|
+
[1m[36mUser Create (3.2ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:49:47.674966"], ["updated_at", "2020-05-06 17:49:47.674966"]]
|
6969
|
+
[1m[35m (1.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
6970
|
+
[1m[35m (1.2ms)[0m [1m[31mrollback transaction[0m
|
6971
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6972
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
6973
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:49:47.701208"], ["updated_at", "2020-05-06 17:49:47.701208"]]
|
6974
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
6975
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
6976
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6977
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
6978
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:49:47.710135"], ["updated_at", "2020-05-06 17:49:47.710135"]]
|
6979
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
6980
|
+
[1m[35m (1.9ms)[0m [1m[31mrollback transaction[0m
|
6981
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6982
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
6983
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:49:47.721673"], ["updated_at", "2020-05-06 17:49:47.721673"]]
|
6984
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
6985
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
6986
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6987
|
+
[1m[35m (0.8ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
6988
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:49:47.740387"], ["updated_at", "2020-05-06 17:49:47.740387"]]
|
6989
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
6990
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
6991
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6992
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
6993
|
+
[1m[36mUser Create (0.7ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:49:47.755587"], ["updated_at", "2020-05-06 17:49:47.755587"]]
|
6994
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
6995
|
+
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
6996
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6997
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
6998
|
+
[1m[35m (1.1ms)[0m [1m[36mbegin transaction[0m
|
6999
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7000
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
7001
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
7002
|
+
[1m[35m (3.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
7003
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
7004
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
7005
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
7006
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7007
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7008
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7009
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7010
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7011
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7012
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7013
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
7014
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
7015
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7016
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7017
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7018
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7019
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7020
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7021
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7022
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7023
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7024
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7025
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7026
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7027
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7028
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7029
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7030
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7031
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7032
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7033
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7034
|
+
[1m[36mUser Create (1.0ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:50:59"], ["updated_at", "2020-05-06 17:50:59"]]
|
7035
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7036
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
7037
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7038
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7039
|
+
[1m[36mUser Create (1.0ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:50:59"], ["updated_at", "2020-05-06 17:50:59"]]
|
7040
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7041
|
+
[1m[35m (1.2ms)[0m [1m[31mrollback transaction[0m
|
7042
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7043
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
7044
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7045
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7046
|
+
[1m[36mUser Create (0.7ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:50:59"], ["updated_at", "2020-05-06 17:50:59"]]
|
7047
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7048
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
7049
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7050
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7051
|
+
[1m[36mUser Create (5.2ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:50:59"], ["updated_at", "2020-05-06 17:50:59"]]
|
7052
|
+
[1m[35m (0.8ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7053
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
7054
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
7055
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7056
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:50:59"], ["updated_at", "2020-05-06 17:50:59"]]
|
7057
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7058
|
+
[1m[35m (1.3ms)[0m [1m[31mrollback transaction[0m
|
7059
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7060
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7061
|
+
[1m[36mUser Create (0.8ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:50:59"], ["updated_at", "2020-05-06 17:50:59"]]
|
7062
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7063
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
7064
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7065
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7066
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:50:59"], ["updated_at", "2020-05-06 17:50:59"]]
|
7067
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7068
|
+
[1m[35m (1.3ms)[0m [1m[31mrollback transaction[0m
|
7069
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7070
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7071
|
+
[1m[36mUser Create (0.7ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:50:59"], ["updated_at", "2020-05-06 17:50:59"]]
|
7072
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7073
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
7074
|
+
[1m[35m (4.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
7075
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
7076
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
7077
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
7078
|
+
[1m[35m (1.6ms)[0m [1m[36mbegin transaction[0m
|
7079
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7080
|
+
[1m[36mUser Create (0.9ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:51:45.739132"], ["updated_at", "2020-05-06 17:51:45.739132"]]
|
7081
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7082
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
7083
|
+
[1m[35m (0.6ms)[0m [1m[36mbegin transaction[0m
|
7084
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7085
|
+
[1m[36mUser Create (0.8ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:51:47.589335"], ["updated_at", "2020-05-06 17:51:47.589335"]]
|
7086
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7087
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
7088
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7089
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7090
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
7091
|
+
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7092
|
+
[1m[36mUser Create (2.7ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:51:48.359834"], ["updated_at", "2020-05-06 17:51:48.359834"]]
|
7093
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7094
|
+
[1m[35m (1.9ms)[0m [1m[31mrollback transaction[0m
|
7095
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7096
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7097
|
+
[1m[36mUser Create (0.7ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:51:48.769807"], ["updated_at", "2020-05-06 17:51:48.769807"]]
|
7098
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7099
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
7100
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
7101
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7102
|
+
[1m[36mUser Create (0.9ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:51:49.132484"], ["updated_at", "2020-05-06 17:51:49.132484"]]
|
7103
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7104
|
+
[1m[35m (1.6ms)[0m [1m[31mrollback transaction[0m
|
7105
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
7106
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7107
|
+
[1m[36mUser Create (0.7ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:51:49.627123"], ["updated_at", "2020-05-06 17:51:49.627123"]]
|
7108
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7109
|
+
[1m[35m (1.1ms)[0m [1m[31mrollback transaction[0m
|
7110
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7111
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7112
|
+
[1m[36mUser Create (2.1ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:51:50.139846"], ["updated_at", "2020-05-06 17:51:50.139846"]]
|
7113
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7114
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
7115
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7116
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7117
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:51:50.453542"], ["updated_at", "2020-05-06 17:51:50.453542"]]
|
7118
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7119
|
+
[1m[35m (1.1ms)[0m [1m[31mrollback transaction[0m
|
7120
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7121
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7122
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7123
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7124
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7125
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7126
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
7127
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7128
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
7129
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7130
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7131
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7132
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
7133
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
7134
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7135
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7136
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7137
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
7138
|
+
[1m[35m (0.6ms)[0m [1m[36mbegin transaction[0m
|
7139
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7140
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7141
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
7142
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7143
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7144
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7145
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7146
|
+
[1m[35m (4.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
7147
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
7148
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
7149
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
7150
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
7151
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7152
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7153
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7154
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7155
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7156
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
7157
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7158
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7159
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7160
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7161
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7162
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7163
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7164
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7165
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7166
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7167
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
7168
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7169
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
7170
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7171
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7172
|
+
[1m[36mUser Create (2.3ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:52:55.395364"], ["updated_at", "2020-05-06 17:52:55.395364"]]
|
7173
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7174
|
+
Started GET "/api_endpoint" for 192.168.86.27 at 2020-05-06 13:53:04 -0400
|
7175
|
+
Processing by ApiController#api_endpoint as HTML
|
7176
|
+
Redirected to http://192.168.86.27:52541/nulogy_sso/login
|
7177
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7178
|
+
Completed 302 Found in 126ms (ActiveRecord: 0.0ms | Allocations: 2327)
|
7179
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:04 -0400
|
7180
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7181
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52541%252Fapi_endpoint&response_type=code&scope=openid+email
|
7182
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 514)
|
7183
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
7184
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
7185
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7186
|
+
[1m[36mUser Create (0.8ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:06.677034"], ["updated_at", "2020-05-06 17:53:06.677034"]]
|
7187
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7188
|
+
Started GET "/api_endpoint" for 192.168.86.27 at 2020-05-06 13:53:07 -0400
|
7189
|
+
Processing by ApiController#api_endpoint as HTML
|
7190
|
+
Redirected to http://192.168.86.27:52541/nulogy_sso/login
|
7191
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7192
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 300)
|
7193
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:07 -0400
|
7194
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7195
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52541%252Fapi_endpoint&response_type=code&scope=openid+email
|
7196
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 282)
|
7197
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
7198
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7199
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7200
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:08.614429"], ["updated_at", "2020-05-06 17:53:08.614429"]]
|
7201
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7202
|
+
Started GET "/api_endpoint" for 192.168.86.27 at 2020-05-06 13:53:09 -0400
|
7203
|
+
Processing by ApiController#api_endpoint as HTML
|
7204
|
+
[1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@nulogy.com"], ["LIMIT", 1]]
|
7205
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 811)
|
7206
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
7207
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7208
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7209
|
+
[1m[36mUser Create (0.8ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:10.257374"], ["updated_at", "2020-05-06 17:53:10.257374"]]
|
7210
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7211
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:10 -0400
|
7212
|
+
Processing by ApplicationController#hello_world as HTML
|
7213
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@nulogy.com"], ["LIMIT", 1]]
|
7214
|
+
Rendering text template
|
7215
|
+
Rendered text template (Duration: 0.0ms | Allocations: 3)
|
7216
|
+
Completed 200 OK in 22ms (Views: 19.4ms | ActiveRecord: 0.2ms | Allocations: 1722)
|
7217
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
7218
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7219
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7220
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:11.819909"], ["updated_at", "2020-05-06 17:53:11.819909"]]
|
7221
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7222
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:12 -0400
|
7223
|
+
Processing by ApplicationController#hello_world as HTML
|
7224
|
+
Redirected to http://192.168.86.27:52541/nulogy_sso/login
|
7225
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7226
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.0ms | Allocations: 308)
|
7227
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:12 -0400
|
7228
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7229
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52541%252Fhello_world&response_type=code&scope=openid+email
|
7230
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 287)
|
7231
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
7232
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7233
|
+
[1m[35m (1.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7234
|
+
[1m[36mUser Create (3.4ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:14.866893"], ["updated_at", "2020-05-06 17:53:14.866893"]]
|
7235
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7236
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:15 -0400
|
7237
|
+
Processing by ApplicationController#hello_world as HTML
|
7238
|
+
Redirected to http://192.168.86.27:52541/nulogy_sso/login
|
7239
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7240
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms | Allocations: 487)
|
7241
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:16 -0400
|
7242
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7243
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52541%252Fhello_world&response_type=code&scope=openid+email
|
7244
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 456)
|
7245
|
+
[1m[35m (1.0ms)[0m [1m[31mrollback transaction[0m
|
7246
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
7247
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7248
|
+
[1m[36mUser Create (0.7ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:18.111883"], ["updated_at", "2020-05-06 17:53:18.111883"]]
|
7249
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7250
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:18 -0400
|
7251
|
+
Processing by ApplicationController#hello_world as HTML
|
7252
|
+
Redirected to http://192.168.86.27:52541/nulogy_sso/login
|
7253
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7254
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms | Allocations: 307)
|
7255
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:18 -0400
|
7256
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7257
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52541%252Fhello_world&response_type=code&scope=openid+email
|
7258
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 280)
|
7259
|
+
Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F192.168.86.27%3A52541%2Fhello_world" for 192.168.86.27 at 2020-05-06 13:53:18 -0400
|
7260
|
+
Processing by NulogySSO::AuthenticationController#verify_authentication_code as HTML
|
7261
|
+
Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://192.168.86.27:52541/hello_world"}
|
7262
|
+
Rendering text template
|
7263
|
+
Rendered text template (Duration: 0.1ms | Allocations: 1)
|
7264
|
+
Completed 200 OK in 144ms (Views: 2.0ms | ActiveRecord: 0.0ms | Allocations: 3515)
|
7265
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
7266
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7267
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7268
|
+
[1m[36mUser Create (0.8ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:19.914221"], ["updated_at", "2020-05-06 17:53:19.914221"]]
|
7269
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7270
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:19 -0400
|
7271
|
+
Processing by ApplicationController#hello_world as HTML
|
7272
|
+
Redirected to http://192.168.86.27:52541/nulogy_sso/login
|
7273
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7274
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms | Allocations: 307)
|
7275
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:20 -0400
|
7276
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7277
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52541%252Fhello_world&response_type=code&scope=openid+email
|
7278
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 280)
|
7279
|
+
Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F192.168.86.27%3A52541%2Fhello_world" for 192.168.86.27 at 2020-05-06 13:53:20 -0400
|
7280
|
+
Processing by NulogySSO::AuthenticationController#verify_authentication_code as HTML
|
7281
|
+
Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://192.168.86.27:52541/hello_world"}
|
7282
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@nulogy.com"], ["LIMIT", 1]]
|
7283
|
+
Redirected to http://192.168.86.27:52541/hello_world
|
7284
|
+
Completed 302 Found in 78ms (ActiveRecord: 0.2ms | Allocations: 2640)
|
7285
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:20 -0400
|
7286
|
+
Processing by ApplicationController#hello_world as HTML
|
7287
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@nulogy.com"], ["LIMIT", 1]]
|
7288
|
+
Rendering text template
|
7289
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
7290
|
+
Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 690)
|
7291
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
7292
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7293
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:21 -0400
|
7294
|
+
Processing by ApplicationController#hello_world as HTML
|
7295
|
+
Redirected to http://192.168.86.27:52541/nulogy_sso/login
|
7296
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7297
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 309)
|
7298
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:21 -0400
|
7299
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7300
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52541%252Fhello_world&response_type=code&scope=openid+email
|
7301
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 285)
|
7302
|
+
Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F192.168.86.27%3A52541%2Fhello_world" for 192.168.86.27 at 2020-05-06 13:53:21 -0400
|
7303
|
+
Processing by NulogySSO::AuthenticationController#verify_authentication_code as HTML
|
7304
|
+
Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://192.168.86.27:52541/hello_world"}
|
7305
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@nulogy.com"], ["LIMIT", 1]]
|
7306
|
+
Rendering text template
|
7307
|
+
Rendered text template (Duration: 0.1ms | Allocations: 1)
|
7308
|
+
Completed 200 OK in 43ms (Views: 1.1ms | ActiveRecord: 0.3ms | Allocations: 2528)
|
7309
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7310
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7311
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
7312
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
7313
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7314
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7315
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
7316
|
+
[1m[35m (1.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
7317
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
7318
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
7319
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
7320
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
7321
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7322
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:31.368018"], ["updated_at", "2020-05-06 17:53:31.368018"]]
|
7323
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7324
|
+
Started GET "/api_endpoint" for 192.168.86.27 at 2020-05-06 13:53:33 -0400
|
7325
|
+
Processing by ApiController#api_endpoint as HTML
|
7326
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@nulogy.com"], ["LIMIT", 1]]
|
7327
|
+
Completed 200 OK in 71ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 2671)
|
7328
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
7329
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
7330
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7331
|
+
[1m[36mUser Create (3.9ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:34.887594"], ["updated_at", "2020-05-06 17:53:34.887594"]]
|
7332
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7333
|
+
Started GET "/api_endpoint" for 192.168.86.27 at 2020-05-06 13:53:35 -0400
|
7334
|
+
Processing by ApiController#api_endpoint as HTML
|
7335
|
+
Redirected to http://192.168.86.27:52672/nulogy_sso/login
|
7336
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7337
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 500)
|
7338
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:35 -0400
|
7339
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7340
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52672%252Fapi_endpoint&response_type=code&scope=openid+email
|
7341
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.0ms | Allocations: 514)
|
7342
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
7343
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
7344
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7345
|
+
[1m[36mUser Create (0.8ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:37.484387"], ["updated_at", "2020-05-06 17:53:37.484387"]]
|
7346
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7347
|
+
Started GET "/api_endpoint" for 192.168.86.27 at 2020-05-06 13:53:38 -0400
|
7348
|
+
Processing by ApiController#api_endpoint as HTML
|
7349
|
+
Redirected to http://192.168.86.27:52672/nulogy_sso/login
|
7350
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7351
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 300)
|
7352
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:38 -0400
|
7353
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7354
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52672%252Fapi_endpoint&response_type=code&scope=openid+email
|
7355
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 281)
|
7356
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
7357
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7358
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7359
|
+
[1m[36mUser Create (1.6ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:39.888196"], ["updated_at", "2020-05-06 17:53:39.888196"]]
|
7360
|
+
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7361
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:40 -0400
|
7362
|
+
Processing by ApplicationController#hello_world as HTML
|
7363
|
+
Redirected to http://192.168.86.27:52672/nulogy_sso/login
|
7364
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7365
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms | Allocations: 535)
|
7366
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:40 -0400
|
7367
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7368
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52672%252Fhello_world&response_type=code&scope=openid+email
|
7369
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 454)
|
7370
|
+
[1m[35m (1.2ms)[0m [1m[31mrollback transaction[0m
|
7371
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7372
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7373
|
+
[1m[36mUser Create (0.8ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:41.958061"], ["updated_at", "2020-05-06 17:53:41.958061"]]
|
7374
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7375
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:42 -0400
|
7376
|
+
Processing by ApplicationController#hello_world as HTML
|
7377
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@nulogy.com"], ["LIMIT", 1]]
|
7378
|
+
Rendering text template
|
7379
|
+
Rendered text template (Duration: 0.2ms | Allocations: 3)
|
7380
|
+
Completed 200 OK in 12ms (Views: 9.4ms | ActiveRecord: 0.3ms | Allocations: 1675)
|
7381
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
7382
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
7383
|
+
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7384
|
+
[1m[36mUser Create (0.8ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:43.629994"], ["updated_at", "2020-05-06 17:53:43.629994"]]
|
7385
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7386
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:44 -0400
|
7387
|
+
Processing by ApplicationController#hello_world as HTML
|
7388
|
+
Redirected to http://192.168.86.27:52672/nulogy_sso/login
|
7389
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7390
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 307)
|
7391
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:44 -0400
|
7392
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7393
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52672%252Fhello_world&response_type=code&scope=openid+email
|
7394
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 284)
|
7395
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
7396
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7397
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:45 -0400
|
7398
|
+
Processing by ApplicationController#hello_world as HTML
|
7399
|
+
Redirected to http://192.168.86.27:52672/nulogy_sso/login
|
7400
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7401
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms | Allocations: 307)
|
7402
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:45 -0400
|
7403
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7404
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52672%252Fhello_world&response_type=code&scope=openid+email
|
7405
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 281)
|
7406
|
+
Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F192.168.86.27%3A52672%2Fhello_world" for 192.168.86.27 at 2020-05-06 13:53:46 -0400
|
7407
|
+
Processing by NulogySSO::AuthenticationController#verify_authentication_code as HTML
|
7408
|
+
Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://192.168.86.27:52672/hello_world"}
|
7409
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@nulogy.com"], ["LIMIT", 1]]
|
7410
|
+
Rendering text template
|
7411
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
7412
|
+
Completed 200 OK in 103ms (Views: 1.1ms | ActiveRecord: 0.3ms | Allocations: 3840)
|
7413
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
7414
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
7415
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7416
|
+
[1m[36mUser Create (0.7ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:48.050236"], ["updated_at", "2020-05-06 17:53:48.050236"]]
|
7417
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7418
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:48 -0400
|
7419
|
+
Processing by ApplicationController#hello_world as HTML
|
7420
|
+
Redirected to http://192.168.86.27:52672/nulogy_sso/login
|
7421
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7422
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 307)
|
7423
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:48 -0400
|
7424
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7425
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52672%252Fhello_world&response_type=code&scope=openid+email
|
7426
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 281)
|
7427
|
+
Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F192.168.86.27%3A52672%2Fhello_world" for 192.168.86.27 at 2020-05-06 13:53:48 -0400
|
7428
|
+
Processing by NulogySSO::AuthenticationController#verify_authentication_code as HTML
|
7429
|
+
Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://192.168.86.27:52672/hello_world"}
|
7430
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@nulogy.com"], ["LIMIT", 1]]
|
7431
|
+
Redirected to http://192.168.86.27:52672/hello_world
|
7432
|
+
Completed 302 Found in 69ms (ActiveRecord: 0.2ms | Allocations: 2639)
|
7433
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:48 -0400
|
7434
|
+
Processing by ApplicationController#hello_world as HTML
|
7435
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@nulogy.com"], ["LIMIT", 1]]
|
7436
|
+
Rendering text template
|
7437
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
7438
|
+
Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 691)
|
7439
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
7440
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7441
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7442
|
+
[1m[36mUser Create (0.8ms)[0m [1m[32mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["email", "test@nulogy.com"], ["created_at", "2020-05-06 17:53:49.723213"], ["updated_at", "2020-05-06 17:53:49.723213"]]
|
7443
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
7444
|
+
Started GET "/hello_world" for 192.168.86.27 at 2020-05-06 13:53:49 -0400
|
7445
|
+
Processing by ApplicationController#hello_world as HTML
|
7446
|
+
Redirected to http://192.168.86.27:52672/nulogy_sso/login
|
7447
|
+
Filter chain halted as :authenticate_sso_user rendered or redirected
|
7448
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 307)
|
7449
|
+
Started GET "/nulogy_sso/login" for 192.168.86.27 at 2020-05-06 13:53:49 -0400
|
7450
|
+
Processing by NulogySSO::AuthenticationController#login as HTML
|
7451
|
+
Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.86.27%253A52672%252Fhello_world&response_type=code&scope=openid+email
|
7452
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms | Allocations: 280)
|
7453
|
+
Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F192.168.86.27%3A52672%2Fhello_world" for 192.168.86.27 at 2020-05-06 13:53:49 -0400
|
7454
|
+
Processing by NulogySSO::AuthenticationController#verify_authentication_code as HTML
|
7455
|
+
Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://192.168.86.27:52672/hello_world"}
|
7456
|
+
Rendering text template
|
7457
|
+
Rendered text template (Duration: 0.1ms | Allocations: 1)
|
7458
|
+
Completed 200 OK in 39ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 2191)
|
7459
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
7460
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
7461
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7462
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7463
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
7464
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
7465
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7466
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
7467
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7468
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
7469
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7470
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7471
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7472
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7473
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7474
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7475
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
7476
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7477
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
7478
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7479
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7480
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7481
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7482
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
7483
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7484
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
7485
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
data/spec/examples.txt
CHANGED
@@ -1,24 +1,24 @@
|
|
1
1
|
example_id | status | run_time |
|
2
2
|
---------------------------------------------------------------- | ------ | --------------- |
|
3
|
-
./spec/features/nulogy_sso/sso_login_spec.rb[1:1:1] | passed |
|
4
|
-
./spec/features/nulogy_sso/sso_login_spec.rb[1:1:2] | passed |
|
5
|
-
./spec/features/nulogy_sso/sso_login_spec.rb[1:1:3] | passed |
|
6
|
-
./spec/features/nulogy_sso/sso_login_spec.rb[1:2:1] | passed |
|
7
|
-
./spec/features/nulogy_sso/sso_login_spec.rb[1:2:2] | passed |
|
8
|
-
./spec/features/nulogy_sso/sso_login_spec.rb[1:2:3] | passed |
|
9
|
-
./spec/features/nulogy_sso/sso_login_spec.rb[1:3:1] | passed |
|
10
|
-
./spec/features/nulogy_sso/sso_login_spec.rb[1:3:2] | passed |
|
11
|
-
./spec/features/nulogy_sso/sso_login_spec.rb[1:3:3] | passed |
|
12
|
-
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:1] | passed | 0.
|
13
|
-
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:2:1] | passed | 0.
|
14
|
-
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:2:2] | passed | 0.
|
15
|
-
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:3:1] | passed | 0.
|
16
|
-
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:1] | passed | 0.
|
17
|
-
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:2] | passed | 0.
|
18
|
-
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:3] | passed | 0.
|
19
|
-
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:4] | passed | 0.
|
20
|
-
./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:1] | passed | 0.
|
21
|
-
./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:2] | passed | 0.
|
22
|
-
./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:3] | passed | 0.
|
23
|
-
./spec/unit/services/nulogy_sso/origin_redirector_spec.rb[1:1:1] | passed | 0.
|
24
|
-
./spec/unit/services/nulogy_sso/origin_redirector_spec.rb[1:1:2] | passed | 0.
|
3
|
+
./spec/features/nulogy_sso/sso_login_spec.rb[1:1:1] | passed | 1.68 seconds |
|
4
|
+
./spec/features/nulogy_sso/sso_login_spec.rb[1:1:2] | passed | 2.29 seconds |
|
5
|
+
./spec/features/nulogy_sso/sso_login_spec.rb[1:1:3] | passed | 1.86 seconds |
|
6
|
+
./spec/features/nulogy_sso/sso_login_spec.rb[1:2:1] | passed | 1.67 seconds |
|
7
|
+
./spec/features/nulogy_sso/sso_login_spec.rb[1:2:2] | passed | 2.07 seconds |
|
8
|
+
./spec/features/nulogy_sso/sso_login_spec.rb[1:2:3] | passed | 1.82 seconds |
|
9
|
+
./spec/features/nulogy_sso/sso_login_spec.rb[1:3:1] | passed | 3.53 seconds |
|
10
|
+
./spec/features/nulogy_sso/sso_login_spec.rb[1:3:2] | passed | 2.6 seconds |
|
11
|
+
./spec/features/nulogy_sso/sso_login_spec.rb[1:3:3] | passed | 2.4 seconds |
|
12
|
+
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:1] | passed | 0.00865 seconds |
|
13
|
+
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:2:1] | passed | 0.01989 seconds |
|
14
|
+
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:2:2] | passed | 0.03575 seconds |
|
15
|
+
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:3:1] | passed | 0.01452 seconds |
|
16
|
+
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:1] | passed | 0.02236 seconds |
|
17
|
+
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:2] | passed | 0.0232 seconds |
|
18
|
+
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:3] | passed | 0.00175 seconds |
|
19
|
+
./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:4] | passed | 0.01982 seconds |
|
20
|
+
./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:1] | passed | 0.02685 seconds |
|
21
|
+
./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:2] | passed | 0.00136 seconds |
|
22
|
+
./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:3] | passed | 0.00171 seconds |
|
23
|
+
./spec/unit/services/nulogy_sso/origin_redirector_spec.rb[1:1:1] | passed | 0.00151 seconds |
|
24
|
+
./spec/unit/services/nulogy_sso/origin_redirector_spec.rb[1:1:2] | passed | 0.0059 seconds |
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nulogy_sso
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nulogy Corporation
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: auth0
|
@@ -339,7 +339,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
339
339
|
- !ruby/object:Gem::Version
|
340
340
|
version: '0'
|
341
341
|
requirements: []
|
342
|
-
rubygems_version: 3.0.
|
342
|
+
rubygems_version: 3.0.8
|
343
343
|
signing_key:
|
344
344
|
specification_version: 4
|
345
345
|
summary: Rails Engine For Nulogy's Auth Integration
|