authorizy 0.5.0 → 0.6.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/CHANGELOG.md +7 -0
- data/README.md +2 -2
- data/lib/authorizy/config.rb +1 -1
- data/lib/authorizy/extension.rb +2 -1
- data/lib/authorizy/rspec.rb +3 -3
- data/lib/authorizy/version.rb +1 -1
- metadata +8 -188
- data/spec/authorizy/base_cop/access_question_spec.rb +0 -10
- data/spec/authorizy/config/aliases_spec.rb +0 -13
- data/spec/authorizy/config/cop_spec.rb +0 -13
- data/spec/authorizy/config/current_user_spec.rb +0 -29
- data/spec/authorizy/config/denied_spec.rb +0 -51
- data/spec/authorizy/config/dependencies_spec.rb +0 -13
- data/spec/authorizy/config/field_spec.rb +0 -29
- data/spec/authorizy/config/initialize_spec.rb +0 -7
- data/spec/authorizy/config/redirect_url_spec.rb +0 -31
- data/spec/authorizy/config_spec.rb +0 -7
- data/spec/authorizy/configure_spec.rb +0 -9
- data/spec/authorizy/cop/controller_spec.rb +0 -41
- data/spec/authorizy/cop/model_spec.rb +0 -16
- data/spec/authorizy/cop/namespaced_controller_spec.rb +0 -41
- data/spec/authorizy/core/access_spec.rb +0 -181
- data/spec/authorizy/expander/expand_spec.rb +0 -139
- data/spec/authorizy/extension/authorizy_question_spec.rb +0 -74
- data/spec/authorizy/extension/authorizy_spec.rb +0 -54
- data/spec/authorizy/rspec_spec.rb +0 -30
- data/spec/common_helper.rb +0 -13
- data/spec/spec_helper.rb +0 -29
- data/spec/support/application.rb +0 -8
- data/spec/support/common.rb +0 -13
- data/spec/support/controllers/admin/dummy_controller.rb +0 -13
- data/spec/support/controllers/dummy_controller.rb +0 -11
- data/spec/support/coverage.rb +0 -18
- data/spec/support/i18n.rb +0 -3
- data/spec/support/locales/en.yml +0 -3
- data/spec/support/models/authorizy_cop.rb +0 -35
- data/spec/support/models/empty_cop.rb +0 -4
- data/spec/support/models/user.rb +0 -4
- data/spec/support/routes.rb +0 -6
- data/spec/support/schema.rb +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d473bd8a20f491dd718805097a7060d9c3b792657beb535441bdab3d2520e65f
|
4
|
+
data.tar.gz: 8dff226b40401c2acb2b09252022ecbf55c512c93180b61ef72c5d1ac0256692
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26519151ed8c405d60f11958cb07768b17b2fc9cd0ecc0335473f1b9cee81ea46cff277f7be4fdf9afb1d071e18b26d10a5d66f5954fcf3bff0df9d6dca817a3
|
7
|
+
data.tar.gz: 2ad9b69333e08dd84b0f3124619877af35bf7966c63776d2920ff9b42d4deaee493b515b49714fc8d928884dda2a51ff3f0abb871ede0fdc258a5258a1cd947f
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# Authorizy
|
2
2
|
|
3
|
-
[](https://github.com/wbotelhos/authorizy/actions?query=workflow:Tests)
|
4
4
|
[](https://badge.fury.io/rb/authorizy)
|
5
|
-
[](https://codeclimate.com/github/wbotelhos/authorizy/maintainability)
|
6
6
|
[](https://codecov.io/gh/wbotelhos/authorizy)
|
7
7
|
[](https://github.com/sponsors/wbotelhos)
|
8
8
|
|
data/lib/authorizy/config.rb
CHANGED
@@ -14,7 +14,7 @@ module Authorizy
|
|
14
14
|
|
15
15
|
return context.render(json: { message: info }, status: 403) if context.request.xhr?
|
16
16
|
|
17
|
-
context.redirect_to(redirect_url.call(context), info:
|
17
|
+
context.redirect_to(redirect_url.call(context), info:)
|
18
18
|
}
|
19
19
|
|
20
20
|
@dependencies = {}
|
data/lib/authorizy/extension.rb
CHANGED
@@ -18,8 +18,9 @@ module Authorizy
|
|
18
18
|
params['action'] = action
|
19
19
|
|
20
20
|
parameters = params.merge(custom_params)
|
21
|
+
cop = authorizy_cop(parameters)
|
21
22
|
|
22
|
-
Authorizy::Core.new(authorizy_user, parameters, session, cop:
|
23
|
+
Authorizy::Core.new(authorizy_user, parameters, session, cop:).access?
|
23
24
|
end
|
24
25
|
|
25
26
|
private
|
data/lib/authorizy/rspec.rb
CHANGED
@@ -4,13 +4,13 @@ require 'rspec/expectations'
|
|
4
4
|
|
5
5
|
RSpec::Matchers.define :be_authorized do |controller, action, params: {}, session: {}|
|
6
6
|
match do |user|
|
7
|
-
parameters = params.merge(controller
|
7
|
+
parameters = params.merge(controller:, action:)
|
8
8
|
|
9
9
|
access?(user, parameters, session)
|
10
10
|
end
|
11
11
|
|
12
12
|
match_when_negated do |user|
|
13
|
-
parameters = params.merge(controller
|
13
|
+
parameters = params.merge(controller:, action:)
|
14
14
|
|
15
15
|
!access?(user, parameters, session)
|
16
16
|
end
|
@@ -28,7 +28,7 @@ RSpec::Matchers.define :be_authorized do |controller, action, params: {}, sessio
|
|
28
28
|
def access?(user, params, session)
|
29
29
|
cop = Authorizy.config.cop.new(user, params, session)
|
30
30
|
|
31
|
-
Authorizy::Core.new(user, params, session, cop:
|
31
|
+
Authorizy::Core.new(user, params, session, cop:).access?
|
32
32
|
end
|
33
33
|
|
34
34
|
def maybe_params_or_session(message, params, session)
|
data/lib/authorizy/version.rb
CHANGED
metadata
CHANGED
@@ -1,135 +1,22 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: authorizy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Washington Botelho
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
13
|
+
name: activesupport
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
18
|
version: '0'
|
20
|
-
type: :
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: codecov
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: pg
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: pry-byebug
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rake
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - ">="
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - ">="
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: rspec-rails
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: rubocop-performance
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
104
|
-
type: :development
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - ">="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: rubocop-rails
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - ">="
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
118
|
-
type: :development
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - ">="
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '0'
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: rubocop-rspec
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
128
|
-
requirements:
|
129
|
-
- - ">="
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
-
version: '0'
|
132
|
-
type: :development
|
19
|
+
type: :runtime
|
133
20
|
prerelease: false
|
134
21
|
version_requirements: !ruby/object:Gem::Requirement
|
135
22
|
requirements:
|
@@ -159,44 +46,11 @@ files:
|
|
159
46
|
- lib/generators/authorizy/install_generator.rb
|
160
47
|
- lib/generators/authorizy/templates/config/initializers/authorizy.rb
|
161
48
|
- lib/generators/authorizy/templates/db/migrate/add_authorizy_on_users.rb
|
162
|
-
- spec/authorizy/base_cop/access_question_spec.rb
|
163
|
-
- spec/authorizy/config/aliases_spec.rb
|
164
|
-
- spec/authorizy/config/cop_spec.rb
|
165
|
-
- spec/authorizy/config/current_user_spec.rb
|
166
|
-
- spec/authorizy/config/denied_spec.rb
|
167
|
-
- spec/authorizy/config/dependencies_spec.rb
|
168
|
-
- spec/authorizy/config/field_spec.rb
|
169
|
-
- spec/authorizy/config/initialize_spec.rb
|
170
|
-
- spec/authorizy/config/redirect_url_spec.rb
|
171
|
-
- spec/authorizy/config_spec.rb
|
172
|
-
- spec/authorizy/configure_spec.rb
|
173
|
-
- spec/authorizy/cop/controller_spec.rb
|
174
|
-
- spec/authorizy/cop/model_spec.rb
|
175
|
-
- spec/authorizy/cop/namespaced_controller_spec.rb
|
176
|
-
- spec/authorizy/core/access_spec.rb
|
177
|
-
- spec/authorizy/expander/expand_spec.rb
|
178
|
-
- spec/authorizy/extension/authorizy_question_spec.rb
|
179
|
-
- spec/authorizy/extension/authorizy_spec.rb
|
180
|
-
- spec/authorizy/rspec_spec.rb
|
181
|
-
- spec/common_helper.rb
|
182
|
-
- spec/spec_helper.rb
|
183
|
-
- spec/support/application.rb
|
184
|
-
- spec/support/common.rb
|
185
|
-
- spec/support/controllers/admin/dummy_controller.rb
|
186
|
-
- spec/support/controllers/dummy_controller.rb
|
187
|
-
- spec/support/coverage.rb
|
188
|
-
- spec/support/i18n.rb
|
189
|
-
- spec/support/locales/en.yml
|
190
|
-
- spec/support/models/authorizy_cop.rb
|
191
|
-
- spec/support/models/empty_cop.rb
|
192
|
-
- spec/support/models/user.rb
|
193
|
-
- spec/support/routes.rb
|
194
|
-
- spec/support/schema.rb
|
195
49
|
homepage: https://github.com/wbotelhos/authorizy
|
196
50
|
licenses:
|
197
51
|
- MIT
|
198
|
-
metadata:
|
199
|
-
|
52
|
+
metadata:
|
53
|
+
rubygems_mfa_required: 'true'
|
200
54
|
rdoc_options: []
|
201
55
|
require_paths:
|
202
56
|
- lib
|
@@ -211,41 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
211
65
|
- !ruby/object:Gem::Version
|
212
66
|
version: '0'
|
213
67
|
requirements: []
|
214
|
-
rubygems_version: 3.
|
215
|
-
signing_key:
|
68
|
+
rubygems_version: 3.6.6
|
216
69
|
specification_version: 4
|
217
70
|
summary: A JSON based Authorization.
|
218
|
-
test_files:
|
219
|
-
- spec/authorizy/base_cop/access_question_spec.rb
|
220
|
-
- spec/authorizy/config/aliases_spec.rb
|
221
|
-
- spec/authorizy/config/cop_spec.rb
|
222
|
-
- spec/authorizy/config/current_user_spec.rb
|
223
|
-
- spec/authorizy/config/denied_spec.rb
|
224
|
-
- spec/authorizy/config/dependencies_spec.rb
|
225
|
-
- spec/authorizy/config/field_spec.rb
|
226
|
-
- spec/authorizy/config/initialize_spec.rb
|
227
|
-
- spec/authorizy/config/redirect_url_spec.rb
|
228
|
-
- spec/authorizy/config_spec.rb
|
229
|
-
- spec/authorizy/configure_spec.rb
|
230
|
-
- spec/authorizy/cop/controller_spec.rb
|
231
|
-
- spec/authorizy/cop/model_spec.rb
|
232
|
-
- spec/authorizy/cop/namespaced_controller_spec.rb
|
233
|
-
- spec/authorizy/core/access_spec.rb
|
234
|
-
- spec/authorizy/expander/expand_spec.rb
|
235
|
-
- spec/authorizy/extension/authorizy_question_spec.rb
|
236
|
-
- spec/authorizy/extension/authorizy_spec.rb
|
237
|
-
- spec/authorizy/rspec_spec.rb
|
238
|
-
- spec/common_helper.rb
|
239
|
-
- spec/spec_helper.rb
|
240
|
-
- spec/support/application.rb
|
241
|
-
- spec/support/common.rb
|
242
|
-
- spec/support/controllers/admin/dummy_controller.rb
|
243
|
-
- spec/support/controllers/dummy_controller.rb
|
244
|
-
- spec/support/coverage.rb
|
245
|
-
- spec/support/i18n.rb
|
246
|
-
- spec/support/locales/en.yml
|
247
|
-
- spec/support/models/authorizy_cop.rb
|
248
|
-
- spec/support/models/empty_cop.rb
|
249
|
-
- spec/support/models/user.rb
|
250
|
-
- spec/support/routes.rb
|
251
|
-
- spec/support/schema.rb
|
71
|
+
test_files: []
|
@@ -1,10 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
RSpec.describe Authorizy::BaseCop, '#access?' do
|
4
|
-
let!(:params) { { 'controller' => 'controller', 'action' => 'action' } }
|
5
|
-
let(:cop) { described_class.new('current_user', params, 'session') }
|
6
|
-
|
7
|
-
it 'returns false as default' do
|
8
|
-
expect(cop.access?).to be(false)
|
9
|
-
end
|
10
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
RSpec.describe Authorizy::Config, '#aliases' do
|
4
|
-
let!(:config) { described_class.new }
|
5
|
-
|
6
|
-
it 'has default value and can receive a new one' do
|
7
|
-
expect(config.aliases).to eq({})
|
8
|
-
|
9
|
-
config.aliases = 'value'
|
10
|
-
|
11
|
-
expect(config.aliases).to eq('value')
|
12
|
-
end
|
13
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
RSpec.describe Authorizy::Config, '#cop' do
|
4
|
-
let!(:config) { described_class.new }
|
5
|
-
|
6
|
-
it 'has default value and can receive a new one' do
|
7
|
-
expect(config.cop).to eq(Authorizy::BaseCop)
|
8
|
-
|
9
|
-
config.cop = 'value'
|
10
|
-
|
11
|
-
expect(config.cop).to eq('value')
|
12
|
-
end
|
13
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
RSpec.describe Authorizy::Config, '#current_user' do
|
4
|
-
let!(:config) { described_class.new }
|
5
|
-
|
6
|
-
context 'when uses default value' do
|
7
|
-
context 'when context responds to current_user' do
|
8
|
-
let!(:context) { OpenStruct.new(current_user: 'user') }
|
9
|
-
|
10
|
-
it 'is called' do
|
11
|
-
expect(config.current_user.call(context)).to eq('user')
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
context 'when context does not respond to current_user' do
|
16
|
-
let!(:context) { 'context' }
|
17
|
-
|
18
|
-
it { expect(config.current_user.call(context)).to be(nil) }
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
context 'when uses custom value' do
|
23
|
-
it 'executes what you want' do
|
24
|
-
config.current_user = ->(context) { context[:value] }
|
25
|
-
|
26
|
-
expect(config.current_user.call({ value: 'value' })).to eq('value')
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,51 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
RSpec.describe Authorizy::Config, '#denied' do
|
4
|
-
let!(:config) { described_class.new }
|
5
|
-
|
6
|
-
context 'with default denied callback' do
|
7
|
-
context 'when is a xhr request' do
|
8
|
-
let!(:context) do
|
9
|
-
double('context',
|
10
|
-
params: { controller: 'users', action: 'index' },
|
11
|
-
request: OpenStruct.new(xhr?: true)
|
12
|
-
)
|
13
|
-
end
|
14
|
-
|
15
|
-
it 'renders' do
|
16
|
-
allow(context).to receive(:render)
|
17
|
-
|
18
|
-
config.denied.call(context)
|
19
|
-
|
20
|
-
expect(context).to have_received(:render).with(json: { message: 'Action denied for users#index' }, status: 403)
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
context 'when is not a xhr request' do
|
25
|
-
let!(:context) do
|
26
|
-
double('context',
|
27
|
-
params: { controller: 'users', action: 'index' },
|
28
|
-
request: OpenStruct.new(xhr?: false),
|
29
|
-
root_url: 'root_url'
|
30
|
-
)
|
31
|
-
end
|
32
|
-
|
33
|
-
it 'redirects' do
|
34
|
-
allow(context).to receive(:redirect_to)
|
35
|
-
allow(context).to receive(:respond_to?).with(:root_url).and_return(true)
|
36
|
-
|
37
|
-
config.denied.call(context)
|
38
|
-
|
39
|
-
expect(context).to have_received(:redirect_to).with('root_url', info: 'Action denied for users#index')
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
context 'with custom denied callback' do
|
45
|
-
it 'calls the callback' do
|
46
|
-
config.denied = ->(context) { context[:key] }
|
47
|
-
|
48
|
-
expect(config.denied.call(key: :value)).to eq(:value)
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
RSpec.describe Authorizy::Config, '#dependencies' do
|
4
|
-
let!(:config) { described_class.new }
|
5
|
-
|
6
|
-
it 'has default value and can receive a new one' do
|
7
|
-
expect(config.dependencies).to eq({})
|
8
|
-
|
9
|
-
config.dependencies = 'value'
|
10
|
-
|
11
|
-
expect(config.dependencies).to eq('value')
|
12
|
-
end
|
13
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
RSpec.describe Authorizy::Config, '#field' do
|
4
|
-
let!(:config) { described_class.new }
|
5
|
-
|
6
|
-
context 'when uses default value' do
|
7
|
-
context 'when current_user responds to authorizy' do
|
8
|
-
let!(:current_user) { OpenStruct.new(authorizy: { permissions: [%i[users index]] }) }
|
9
|
-
|
10
|
-
it 'is called' do
|
11
|
-
expect(config.field.call(current_user)).to eq(permissions: [%i[users index]])
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
context 'when current_user does not respond to field' do
|
16
|
-
let!(:current_user) { nil }
|
17
|
-
|
18
|
-
it { expect(config.field.call(current_user)).to eq({}) }
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
context 'when uses custom value' do
|
23
|
-
it 'executes what you want' do
|
24
|
-
config.field = ->(current_user) { current_user[:value] }
|
25
|
-
|
26
|
-
expect(config.field.call({ value: 'value' })).to eq('value')
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,31 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
RSpec.describe Authorizy::Config, '#redirect_url' do
|
4
|
-
let!(:config) { described_class.new }
|
5
|
-
|
6
|
-
context 'when uses default value' do
|
7
|
-
context 'when context responds to root_url' do
|
8
|
-
let!(:context) { OpenStruct.new(root_url: '/root') }
|
9
|
-
|
10
|
-
it 'is called' do
|
11
|
-
expect(config.redirect_url.call(context)).to eq('/root')
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
context 'when context does not respond to root_url' do
|
16
|
-
let!(:context) { 'context' }
|
17
|
-
|
18
|
-
it 'returns just a slash' do
|
19
|
-
expect(config.redirect_url.call(context)).to eq('/')
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
context 'when uses custom value' do
|
25
|
-
it 'executes what you want' do
|
26
|
-
config.redirect_url = ->(context) { context[:key] }
|
27
|
-
|
28
|
-
expect(config.redirect_url.call({ key: :value })).to eq(:value)
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'support/models/authorizy_cop'
|
4
|
-
require 'support/models/empty_cop'
|
5
|
-
require 'support/controllers/dummy_controller'
|
6
|
-
|
7
|
-
RSpec.describe DummyController, '#authorizy', type: :controller do
|
8
|
-
let!(:user) { User.new }
|
9
|
-
|
10
|
-
context 'when cop responds to the controller name' do
|
11
|
-
context 'when method resturns false' do
|
12
|
-
it 'denies the access' do
|
13
|
-
config_mock(cop: AuthorizyCop, current_user: user) do
|
14
|
-
get :action, params: { access: false }
|
15
|
-
end
|
16
|
-
|
17
|
-
expect(response).to redirect_to('/')
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
context 'when method resturns true' do
|
22
|
-
it 'does not deny the access' do
|
23
|
-
config_mock(cop: AuthorizyCop, current_user: user) do
|
24
|
-
get :action, params: { access: true }
|
25
|
-
end
|
26
|
-
|
27
|
-
expect(response.body).to eq('{"message":"authorized"}')
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
context 'when cop does not respond to the controller name' do
|
33
|
-
it 'denies the access' do
|
34
|
-
config_mock(cop: EmptyCop, current_user: user) do
|
35
|
-
get :action
|
36
|
-
end
|
37
|
-
|
38
|
-
expect(response).to redirect_to('/')
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'support/models/authorizy_cop'
|
4
|
-
|
5
|
-
RSpec.describe AuthorizyCop do
|
6
|
-
let!(:params) { { controller: 'controller', action: 'action' } }
|
7
|
-
let(:cop) { described_class.new('current_user', params, 'session') }
|
8
|
-
|
9
|
-
it 'adds private attributes readers' do
|
10
|
-
expect(cop.fetch_action).to eq('action')
|
11
|
-
expect(cop.fetch_controller).to eq('controller')
|
12
|
-
expect(cop.fetch_current_user).to eq('current_user')
|
13
|
-
expect(cop.fetch_params).to eq(controller: 'controller', action: 'action')
|
14
|
-
expect(cop.fetch_session).to eq('session')
|
15
|
-
end
|
16
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'support/models/authorizy_cop'
|
4
|
-
require 'support/models/empty_cop'
|
5
|
-
require 'support/controllers/admin/dummy_controller'
|
6
|
-
|
7
|
-
RSpec.describe Admin::DummyController, '#authorizy', type: :controller do
|
8
|
-
let!(:user) { User.new }
|
9
|
-
|
10
|
-
context 'when cop responds to the controller name' do
|
11
|
-
context 'when method resturns false' do
|
12
|
-
it 'denies the access' do
|
13
|
-
config_mock(cop: AuthorizyCop, current_user: user) do
|
14
|
-
get :action, params: { admin: false }
|
15
|
-
end
|
16
|
-
|
17
|
-
expect(response).to redirect_to('/')
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
context 'when method resturns true' do
|
22
|
-
it 'denies the access' do
|
23
|
-
config_mock(cop: AuthorizyCop, current_user: user) do
|
24
|
-
get :action, params: { admin: true }
|
25
|
-
end
|
26
|
-
|
27
|
-
expect(response.body).to eq('{"message":"authorized"}')
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
context 'when cop does not respond to the controller name' do
|
33
|
-
it 'denies the access' do
|
34
|
-
config_mock(cop: EmptyCop, current_user: user) do
|
35
|
-
get :action
|
36
|
-
end
|
37
|
-
|
38
|
-
expect(response).to redirect_to('/')
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end
|