forked from fizzik/rails_admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication_helper_spec.rb
353 lines (311 loc) · 12.3 KB
/
application_helper_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
require 'spec_helper'
require 'cancan'
class TestAbility
include CanCan::Ability
def initialize(user)
can :access, :rails_admin
can :edit, FieldTest
cannot :edit, FieldTest, string_field: 'dangerous'
end
end
describe RailsAdmin::ApplicationHelper do
describe '#authorized?' do
before do
RailsAdmin.config.stub(_current_user: FactoryGirl.create(:user))
helper.instance_variable_set('@authorization_adapter', RailsAdmin::AUTHORIZATION_ADAPTERS[:cancan].new(RailsAdmin.config, TestAbility))
end
it 'doesn\'t test unpersisted objects' do
am = RailsAdmin.config(FieldTest).abstract_model
expect(helper.authorized?(:edit, am, FactoryGirl.create(:field_test, string_field: 'dangerous'))).to be_false
expect(helper.authorized?(:edit, am, FactoryGirl.create(:field_test, string_field: 'not-dangerous'))).to be_true
expect(helper.authorized?(:edit, am, FactoryGirl.build(:field_test, string_field: 'dangerous'))).to be_true
end
end
describe 'with #authorized? stubbed' do
before do
controller.stub(:authorized?).and_return(true)
end
describe "#current_action?" do
it "returns true if current_action, false otherwise" do
@action = RailsAdmin::Config::Actions.find(:index)
expect(helper.current_action?(RailsAdmin::Config::Actions.find(:index))).to be_true
expect(helper.current_action?(RailsAdmin::Config::Actions.find(:show))).not_to be_true
end
end
describe "#action" do
it "returns action by :custom_key" do
RailsAdmin.config do |config|
config.actions do
dashboard do
custom_key :my_custom_dashboard_key
end
end
end
expect(helper.action(:my_custom_dashboard_key)).to be
end
it "returns only visible actions" do
RailsAdmin.config do |config|
config.actions do
dashboard do
visible false
end
end
end
expect(helper.action(:dashboard)).to be_nil
end
it "returns only visible actions, passing all bindings" do
RailsAdmin.config do |config|
config.actions do
member :test_bindings do
visible do
bindings[:controller].is_a?(ActionView::TestCase::TestController) and
bindings[:abstract_model].model == Team and
bindings[:object].is_a? Team
end
end
end
end
expect(helper.action(:test_bindings, RailsAdmin::AbstractModel.new(Team), Team.new)).to be
expect(helper.action(:test_bindings, RailsAdmin::AbstractModel.new(Team), Player.new)).to be_nil
expect(helper.action(:test_bindings, RailsAdmin::AbstractModel.new(Player), Team.new)).to be_nil
end
end
describe "#actions" do
it "returns actions by type" do
abstract_model = RailsAdmin::AbstractModel.new(Player)
object = FactoryGirl.create :player
expect(helper.actions(:all, abstract_model, object).map(&:custom_key)).to eq([:dashboard, :index, :show, :new, :edit, :export, :delete, :bulk_delete, :history_show, :history_index, :show_in_app])
expect(helper.actions(:root, abstract_model, object).map(&:custom_key)).to eq([:dashboard])
expect(helper.actions(:collection, abstract_model, object).map(&:custom_key)).to eq([:index, :new, :export, :bulk_delete, :history_index])
expect(helper.actions(:member, abstract_model, object).map(&:custom_key)).to eq([:show, :edit, :delete, :history_show, :show_in_app])
end
it "only returns visible actions, passing bindings correctly" do
RailsAdmin.config do |config|
config.actions do
member :test_bindings do
visible do
bindings[:controller].is_a?(ActionView::TestCase::TestController) and
bindings[:abstract_model].model == Team and
bindings[:object].is_a? Team
end
end
end
end
expect(helper.actions(:all, RailsAdmin::AbstractModel.new(Team), Team.new).map(&:custom_key)).to eq([:test_bindings])
expect(helper.actions(:all, RailsAdmin::AbstractModel.new(Team), Player.new).map(&:custom_key)).to eq([])
expect(helper.actions(:all, RailsAdmin::AbstractModel.new(Player), Team.new).map(&:custom_key)).to eq([])
end
end
describe "#wording_for" do
it "gives correct wording even if action is not visible" do
RailsAdmin.config do |config|
config.actions do
index do
visible false
end
end
end
expect(helper.wording_for(:menu, :index)).to eq("List")
end
it "passes correct bindings" do
expect(helper.wording_for(:title, :edit, RailsAdmin::AbstractModel.new(Team), Team.new(:name => 'the avengers'))).to eq("Edit Team 'the avengers'")
end
it "defaults correct bindings" do
@action = RailsAdmin::Config::Actions.find :edit
@abstract_model = RailsAdmin::AbstractModel.new(Team)
@object = Team.new(:name => 'the avengers')
expect(helper.wording_for(:title)).to eq("Edit Team 'the avengers'")
end
it "does not try to use the wrong :label_metod" do
@abstract_model = RailsAdmin::AbstractModel.new(Draft)
@object = Draft.new
expect(helper.wording_for(:link, :new, RailsAdmin::AbstractModel.new(Team))).to eq("Add a new Team")
end
end
describe "#breadcrumb" do
it "gives us a breadcrumb" do
@action = RailsAdmin::Config::Actions.find(:edit, {:abstract_model => RailsAdmin::AbstractModel.new(Team), :object => Team.new(:name => 'the avengers')})
bc = helper.breadcrumb
expect(bc).to match /Dashboard/ # dashboard
expect(bc).to match /Teams/ # list
expect(bc).to match /the avengers/ # show
expect(bc).to match /Edit/ # current (edit)
end
end
describe "#menu_for" do
it "passes model and object as bindings and generates a menu, excluding non-get actions" do
RailsAdmin.config do |config|
config.actions do
dashboard
index do
visible do
bindings[:abstract_model].model == Team
end
end
show do
visible do
bindings[:object].class == Team
end
end
delete do
http_methods [:post, :put, :delete]
end
end
end
@action = RailsAdmin::Config::Actions.find :show
@abstract_model = RailsAdmin::AbstractModel.new(Team)
@object = Team.new(:name => 'the avengers')
expect(helper.menu_for(:root)).to match /Dashboard/
expect(helper.menu_for(:collection, @abstract_model)).to match /List/
expect(helper.menu_for(:member, @abstract_model, @object)).to match /Show/
@abstract_model = RailsAdmin::AbstractModel.new(Player)
@object = Player.new
expect(helper.menu_for(:collection, @abstract_model)).not_to match /List/
expect(helper.menu_for(:member, @abstract_model, @object)).not_to match /Show/
end
it "excludes non-get actions" do
RailsAdmin.config do |config|
config.actions do
dashboard do
http_methods [:post, :put, :delete]
end
end
end
@action = RailsAdmin::Config::Actions.find :dashboard
expect(helper.menu_for(:root)).not_to match /Dashboard/
end
end
describe "#main_navigation" do
it "shows included models" do
RailsAdmin.config do |config|
config.included_models = [Ball, Comment]
end
expect(helper.main_navigation).to match /(nav\-header).*(Navigation).*(Balls).*(Comments)/m
end
it "does not draw empty navigation labels" do
RailsAdmin.config do |config|
config.included_models = [Ball, Comment, Comment::Confirmed]
config.model Comment do
navigation_label 'Commentz'
end
config.model Comment::Confirmed do
label_plural 'Confirmed'
end
end
expect(helper.main_navigation).to match /(nav\-header).*(Navigation).*(Balls).*(Commentz).*(Confirmed)/m
expect(helper.main_navigation).not_to match /(nav\-header).*(Navigation).*(Balls).*(Commentz).*(Confirmed).*(Comment)/m
end
it "does not show unvisible models" do
RailsAdmin.config do |config|
config.included_models = [Ball, Comment]
config.model Comment do
hide
end
end
result = helper.main_navigation
expect(result).to match /(nav\-header).*(Navigation).*(Balls)/m
expect(result).not_to match "Comments"
end
it "shows children of hidden models" do # https://github.com/sferik/rails_admin/issues/978
RailsAdmin.config do |config|
config.included_models = [Ball, Hardball]
config.model Ball do
hide
end
end
expect(helper.main_navigation).to match /(nav\-header).*(Navigation).*(Hardballs)/m
end
it "shows children of excluded models" do
RailsAdmin.config do |config|
config.included_models = [Hardball]
end
expect(helper.main_navigation).to match /(nav\-header).*(Navigation).*(Hardballs)/m
end
it "nests in navigation label" do
RailsAdmin.config do |config|
config.included_models = [Comment]
config.model Comment do
navigation_label 'commentable'
end
end
expect(helper.main_navigation).to match /(nav\-header).*(commentable).*(Comments)/m
end
it "nests in parent model" do
RailsAdmin.config do |config|
config.included_models = [Player, Comment]
config.model Comment do
parent Player
end
end
expect(helper.main_navigation).to match /(Players).* (nav\-level\-1).*(Comments)/m
end
it "orders" do
RailsAdmin.config do |config|
config.included_models = [Player, Comment]
end
expect(helper.main_navigation).to match /(Comments).*(Players)/m
RailsAdmin.config(Comment) do
weight 1
end
expect(helper.main_navigation).to match /(Players).*(Comments)/m
end
end
describe "#static_navigation" do
it "shows not show static nav if no static links defined" do
RailsAdmin.config do |config|
config.navigation_static_links = {}
end
expect(helper.static_navigation).to be_empty
end
it "shows links if defined" do
RailsAdmin.config do |config|
config.navigation_static_links = {
'Test Link' => 'http://www.google.com'
}
end
expect(helper.static_navigation).to match /Test Link/
end
it "shows default header if navigation_static_label not defined in config" do
RailsAdmin.config do |config|
config.navigation_static_links = {
'Test Link' => 'http://www.google.com'
}
end
expect(helper.static_navigation).to match I18n.t('admin.misc.navigation_static_label')
end
it "shows custom header if defined" do
RailsAdmin.config do |config|
config.navigation_static_label = "Test Header"
config.navigation_static_links = {
'Test Link' => 'http://www.google.com'
}
end
expect(helper.static_navigation).to match /Test Header/
end
end
describe "#bulk_menu" do
it "includes all visible bulkable actions" do
RailsAdmin.config do |config|
config.actions do
index
collection :zorg do
bulkable true
action_name :zorg_action
end
collection :blub do
bulkable true
visible do
bindings[:abstract_model].model == Team
end
end
end
end
@action = RailsAdmin::Config::Actions.find :index
result = helper.bulk_menu(RailsAdmin::AbstractModel.new(Team))
expect(result).to match "zorg_action"
expect(result).to match "blub"
expect(helper.bulk_menu(RailsAdmin::AbstractModel.new(Player))).not_to match "blub"
end
end
end
end