introspective_admin 0.0.8 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +5 -5
  2. data/.DS_Store +0 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +16 -9
  5. data/CHANGELOG.md +28 -15
  6. data/Gemfile +6 -6
  7. data/Gemfile.lock +264 -247
  8. data/Gemfile.lock.rails4 +256 -0
  9. data/introspective_admin.gemspec +44 -41
  10. data/lib/introspective_admin/base.rb +200 -200
  11. data/lib/introspective_admin/version.rb +3 -3
  12. data/spec/admin/company_admin_spec.rb +72 -72
  13. data/spec/admin/job_admin_spec.rb +61 -61
  14. data/spec/admin/location_admin_spec.rb +66 -66
  15. data/spec/admin/location_beacon_admin_spec.rb +73 -73
  16. data/spec/admin/project__admin_spec.rb +71 -71
  17. data/spec/admin/user_admin_spec.rb +64 -64
  18. data/spec/dummy/README.rdoc +28 -28
  19. data/spec/dummy/Rakefile +6 -6
  20. data/spec/dummy/app/admin/company_admin.rb +4 -4
  21. data/spec/dummy/app/admin/job_admin.rb +4 -4
  22. data/spec/dummy/app/admin/location_admin.rb +4 -4
  23. data/spec/dummy/app/admin/location_beacon_admin.rb +6 -6
  24. data/spec/dummy/app/admin/project_admin.rb +6 -6
  25. data/spec/dummy/app/admin/role_admin.rb +5 -5
  26. data/spec/dummy/app/admin/user_admin.rb +13 -13
  27. data/spec/dummy/app/assets/javascripts/application.js +13 -13
  28. data/spec/dummy/app/assets/stylesheets/application.css +15 -15
  29. data/spec/dummy/app/controllers/application_controller.rb +8 -5
  30. data/spec/dummy/app/helpers/application_helper.rb +3 -2
  31. data/spec/dummy/app/models/abstract_adapter.rb +12 -12
  32. data/spec/dummy/app/models/admin_user.rb +6 -6
  33. data/spec/dummy/app/models/company.rb +12 -12
  34. data/spec/dummy/app/models/job.rb +10 -10
  35. data/spec/dummy/app/models/locatable.rb +6 -6
  36. data/spec/dummy/app/models/location.rb +26 -26
  37. data/spec/dummy/app/models/location_beacon.rb +19 -19
  38. data/spec/dummy/app/models/location_gps.rb +11 -11
  39. data/spec/dummy/app/models/project.rb +20 -20
  40. data/spec/dummy/app/models/project_job.rb +7 -7
  41. data/spec/dummy/app/models/role.rb +25 -25
  42. data/spec/dummy/app/models/team.rb +9 -9
  43. data/spec/dummy/app/models/team_user.rb +13 -13
  44. data/spec/dummy/app/models/user.rb +68 -68
  45. data/spec/dummy/app/models/user_location.rb +28 -28
  46. data/spec/dummy/app/models/user_project_job.rb +16 -16
  47. data/spec/dummy/app/views/layouts/application.html.erb +13 -13
  48. data/spec/dummy/bin/bundle +3 -3
  49. data/spec/dummy/bin/rails +4 -4
  50. data/spec/dummy/bin/rake +4 -4
  51. data/spec/dummy/bin/setup +29 -29
  52. data/spec/dummy/config/application.rb +34 -32
  53. data/spec/dummy/config/boot.rb +5 -5
  54. data/spec/dummy/config/database.yml +22 -22
  55. data/spec/dummy/config/environment.rb +11 -11
  56. data/spec/dummy/config/environments/development.rb +45 -41
  57. data/spec/dummy/config/environments/production.rb +82 -79
  58. data/spec/dummy/config/environments/test.rb +50 -43
  59. data/spec/dummy/config/initializers/active_admin.rb +7 -7
  60. data/spec/dummy/config/initializers/assets.rb +13 -11
  61. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -7
  62. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -3
  63. data/spec/dummy/config/initializers/devise.rb +263 -263
  64. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -4
  65. data/spec/dummy/config/initializers/inflections.rb +16 -16
  66. data/spec/dummy/config/initializers/mime_types.rb +4 -4
  67. data/spec/dummy/config/initializers/session_store.rb +3 -3
  68. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -14
  69. data/spec/dummy/config/locales/devise.en.yml +60 -60
  70. data/spec/dummy/config/locales/en.yml +23 -23
  71. data/spec/dummy/config/routes.rb +9 -9
  72. data/spec/dummy/config/secrets.yml +20 -20
  73. data/spec/dummy/config.ru +4 -4
  74. data/spec/dummy/db/development.sqlite3 +0 -0
  75. data/spec/dummy/db/migrate/20141002205024_devise_create_users.rb +42 -42
  76. data/spec/dummy/db/migrate/20141002211055_devise_create_admin_users.rb +48 -48
  77. data/spec/dummy/db/migrate/20141002211057_create_active_admin_comments.rb +19 -19
  78. data/spec/dummy/db/migrate/20141002220722_add_lockable_to_users.rb +8 -8
  79. data/spec/dummy/db/migrate/20150406213646_create_companies.rb +11 -11
  80. data/spec/dummy/db/migrate/20150414213154_add_user_authentication_token.rb +11 -11
  81. data/spec/dummy/db/migrate/20150415222005_create_roles.rb +12 -12
  82. data/spec/dummy/db/migrate/20150505181635_create_chats.rb +9 -9
  83. data/spec/dummy/db/migrate/20150505181636_create_chat_users.rb +11 -11
  84. data/spec/dummy/db/migrate/20150505181640_create_chat_messages.rb +11 -11
  85. data/spec/dummy/db/migrate/20150507191529_create_chat_message_users.rb +11 -11
  86. data/spec/dummy/db/migrate/20150601200526_create_locations.rb +13 -13
  87. data/spec/dummy/db/migrate/20150601200533_create_locatables.rb +10 -10
  88. data/spec/dummy/db/migrate/20150601212924_create_location_beacons.rb +16 -16
  89. data/spec/dummy/db/migrate/20150601213542_create_location_gps.rb +12 -12
  90. data/spec/dummy/db/migrate/20150609201823_create_user_locations.rb +14 -14
  91. data/spec/dummy/db/migrate/20150617232519_create_projects.rb +10 -10
  92. data/spec/dummy/db/migrate/20150617232521_create_jobs.rb +9 -9
  93. data/spec/dummy/db/migrate/20150617232522_create_project_jobs.rb +11 -11
  94. data/spec/dummy/db/migrate/20150623170133_create_user_project_jobs.rb +12 -12
  95. data/spec/dummy/db/migrate/20150701234929_create_teams.rb +11 -11
  96. data/spec/dummy/db/migrate/20150701234930_create_team_users.rb +11 -11
  97. data/spec/dummy/db/migrate/20150727214950_add_confirmable_to_devise.rb +11 -11
  98. data/spec/dummy/db/migrate/20150820190524_add_user_names.rb +6 -6
  99. data/spec/dummy/db/migrate/20150909225019_add_password_to_project.rb +5 -5
  100. data/spec/dummy/db/schema.rb +264 -264
  101. data/spec/dummy/public/404.html +67 -67
  102. data/spec/dummy/public/422.html +67 -67
  103. data/spec/dummy/public/500.html +66 -66
  104. data/spec/rails_helper.rb +27 -24
  105. metadata +84 -12
@@ -1,200 +1,200 @@
1
- module IntrospectiveAdmin
2
- class Base
3
- # Generate an active admin interface by introspecting on the models.
4
-
5
- # For polymorphic associations set up virtual 'assign' attributes on the model like so:
6
- #
7
- # def <polymorphism>_assign
8
- # "#{<polymorphism>_type}-#{<polymorphism>_id}"
9
- # end
10
- # def <polymorphism>_assign=(value)
11
- # self.<polymorphism>_type,self.<polymorphism>_id = value.split('-')
12
- # end
13
- #
14
- # And designate the selection options in a class method, you can pass the
15
- # target model to modify the options list accordingly
16
- #
17
- # def self.<polymorphism>_options(model=nil)
18
- # (Model.all + SecondModel.all).map { |i| [ i.name, "#{i.class}-#{i.id}"] }
19
- # end
20
-
21
- class << self
22
-
23
- def exclude_params
24
- [] # do not display the field in the index page and forms.
25
- end
26
-
27
- def include_virtual_attributes
28
- [] #
29
- end
30
-
31
- def polymorphic?(model,column)
32
- (model.reflections[column.sub(/_id$/,'')].try(:options)||{})[:polymorphic]
33
- end
34
-
35
- def column_list(model, extras=[])
36
- model.columns.map {|c|
37
- ref_name = c.name.sub(/(_type|_id)$/,'')
38
- model.reflections[ref_name] ? ref_name : c.name
39
- }.uniq-['created_at','updated_at']-exclude_params+extras
40
- end
41
-
42
- def params_list(model, extras=[])
43
- model.columns.map {|c|
44
- polymorphic?(model,c.name) ? c.name.sub(/_id$/,'')+"_assign" : c.name
45
- }+extras
46
- end
47
-
48
- def link_record(dsl, record)
49
- link_text = record.try(:name) || record.try(:title) || record.class.to_s
50
- link_href = begin dsl.send("admin_#{record.class.name.underscore}_path", record.id) rescue false end
51
- if link_href
52
- dsl.link_to link_text, link_href
53
- elsif link_text
54
- link_text
55
- else
56
- record
57
- end
58
- end
59
-
60
- def register(model, &block)
61
- # Defining activeadmin pages will break pending migrations:
62
- begin ActiveRecord::Migration.check_pending! rescue return end
63
-
64
- klass = self
65
- model_name = model.to_s.underscore
66
- nested_config = Hash[model.nested_attributes_options.reject {|name,o|
67
- klass.exclude_params.include?("#{name}_attributes")
68
- }.map {|assoc,options|
69
- reflection = model.reflections[assoc.to_s]
70
- reflection_class = reflection.class_name.constantize
71
- # merge the options of the nested attribute and relationship declarations
72
- options = options.merge(reflection_class.reflections[assoc.to_s].try(:options) || {})
73
- options[:class] = reflection_class
74
- options[:columns] = klass.column_list(reflection_class)
75
- options[:params] = klass.params_list(reflection_class)
76
- options[:reflection] = reflection
77
- options[:polymorphic_reference] = reflection.options[:as].to_s
78
- [assoc, options]
79
- }]
80
-
81
- ActiveAdmin.register model do
82
- instance_eval &block if block_given? # Evalutate the passed black for overrides to the defaults
83
-
84
- controller do
85
- def scoped_collection
86
- super.includes super.nested_attributes_options.keys
87
- end
88
- end
89
-
90
- index do
91
- selectable_column
92
- cols = model.columns.map(&:name)-klass.exclude_params
93
- cols.each_with_index do |c,i|
94
- reflection = model.reflections.detect {|k,v| v.foreign_key == c }
95
- if reflection
96
- column c do |o|
97
- klass.link_record(self,o.send(reflection.first))
98
- end
99
- else
100
- column c
101
- end
102
- end
103
- actions
104
- end
105
-
106
- show do
107
- instance = self.send(model_name)
108
-
109
- attributes_table do
110
- model.columns.each do |c|
111
- next if (c.name =~ /password/)
112
- reflection = model.reflections.detect {|k,v| v.foreign_key == c.name }
113
- if reflection
114
- row c.name do |o|
115
- klass.link_record(self,instance.send(reflection.first))
116
- end
117
- else
118
- row c.name
119
- end
120
-
121
- end
122
-
123
- nested_config.each do |assoc,options|
124
- panel assoc.capitalize do
125
- table_for instance.send(assoc) do
126
- options[:columns].each do |c|
127
- if options[:class].reflections[c]
128
- column( c ) do |r|
129
- klass.link_record(self,r.send(c)) if r
130
- end
131
- else
132
- column c
133
- end
134
- end
135
-
136
- admin_route = begin url_for(['admin', options[:class].name.underscore]) rescue false end
137
- if admin_route
138
- column 'actions' do |child|
139
- span link_to "View", url_for(['admin', child])
140
- span link_to "Edit", url_for(['edit','admin',child])
141
- span link_to "Delete", url_for(['admin',child]), method: :delete, confirm: "Are you sure you want to delete this?"
142
- end
143
- end
144
- end
145
- end
146
- end
147
- end
148
- end
149
-
150
- permit_params klass.params_list(model, klass.include_virtual_attributes) + [Hash[nested_config.map{|assoc,o|
151
- ["#{assoc}_attributes", o[:params]+[(o[:allow_destroy] ? :_destroy : '')] ]
152
- }]]
153
-
154
- form do |f|
155
- f.semantic_errors *f.object.errors.keys
156
- f.actions
157
-
158
- klass.column_list(model, klass.include_virtual_attributes).each do |column|
159
- if column == model.primary_key
160
- elsif klass.polymorphic?(model,column)
161
- f.input column+"_assign", collection: model.send("#{column}_assign_options")
162
- elsif model.respond_to?("options_for_#{column}")
163
- f.input column, collection: model.send("options_for_#{column}", f.object)
164
- else
165
- f.input column
166
- end
167
- end
168
-
169
- div { '&nbsp'.html_safe }
170
-
171
- nested_config.each do |assoc,options|
172
- aclass = options[:class]
173
- columns = options[:columns]-[aclass.primary_key]
174
- f.inputs do
175
- f.has_many assoc, allow_destroy: options[:allow_destroy] do |r|
176
- columns.each do |c|
177
- if c == model_name || c == options[:polymorphic_reference]
178
- # the join to the parent is implicit
179
- elsif klass.polymorphic?(aclass,c)
180
- r.input "#{c}_assign", collection: aclass.send("#{c}_assign_options")
181
- elsif aclass.reflections[c] && aclass.respond_to?("options_for_#{c}")
182
- # If the class has an options_for_<column> method defined use that
183
- # rather than the default behavior, pass the instance for scoping,
184
- # e.g. UserProjectJob.options_for_job is scoped by the Project's
185
- # jobs:
186
- r.input c, collection: aclass.send("options_for_#{c}",f.object)
187
- else
188
- r.input c
189
- end
190
- end
191
- end
192
- end
193
- end
194
- end
195
-
196
- end
197
- end
198
- end
199
- end
200
- end
1
+ module IntrospectiveAdmin
2
+ class Base
3
+ # Generate an active admin interface by introspecting on the models.
4
+
5
+ # For polymorphic associations set up virtual 'assign' attributes on the model like so:
6
+ #
7
+ # def <polymorphism>_assign
8
+ # "#{<polymorphism>_type}-#{<polymorphism>_id}"
9
+ # end
10
+ # def <polymorphism>_assign=(value)
11
+ # self.<polymorphism>_type,self.<polymorphism>_id = value.split('-')
12
+ # end
13
+ #
14
+ # And designate the selection options in a class method, you can pass the
15
+ # target model to modify the options list accordingly
16
+ #
17
+ # def self.<polymorphism>_options(model=nil)
18
+ # (Model.all + SecondModel.all).map { |i| [ i.name, "#{i.class}-#{i.id}"] }
19
+ # end
20
+
21
+ class << self
22
+
23
+ def exclude_params
24
+ [] # do not display the field in the index page and forms.
25
+ end
26
+
27
+ def include_virtual_attributes
28
+ [] #
29
+ end
30
+
31
+ def polymorphic?(model,column)
32
+ (model.reflections[column.sub(/_id$/,'')].try(:options)||{})[:polymorphic]
33
+ end
34
+
35
+ def column_list(model, extras=[])
36
+ model.columns.map {|c|
37
+ ref_name = c.name.sub(/(_type|_id)$/,'')
38
+ model.reflections[ref_name] ? ref_name : c.name
39
+ }.uniq-['created_at','updated_at']-exclude_params+extras
40
+ end
41
+
42
+ def params_list(model, extras=[])
43
+ model.columns.map {|c|
44
+ polymorphic?(model,c.name) ? c.name.sub(/_id$/,'')+"_assign" : c.name
45
+ }+extras
46
+ end
47
+
48
+ def link_record(dsl, record)
49
+ link_text = record.try(:name) || record.try(:title) || record.class.to_s
50
+ link_href = begin dsl.send("admin_#{record.class.name.underscore}_path", record.id) rescue false end
51
+ if link_href
52
+ dsl.link_to link_text, link_href
53
+ elsif link_text
54
+ link_text
55
+ else
56
+ record
57
+ end
58
+ end
59
+
60
+ def register(model, &block)
61
+ # Defining activeadmin pages will break pending migrations:
62
+ begin ActiveRecord::Migration.check_pending! rescue return end
63
+
64
+ klass = self
65
+ model_name = model.to_s.underscore
66
+ nested_config = Hash[model.nested_attributes_options.reject {|name,o|
67
+ klass.exclude_params.include?("#{name}_attributes")
68
+ }.map {|assoc,options|
69
+ reflection = model.reflections[assoc.to_s]
70
+ reflection_class = reflection.class_name.constantize
71
+ # merge the options of the nested attribute and relationship declarations
72
+ options = options.merge(reflection_class.reflections[assoc.to_s].try(:options) || {})
73
+ options[:class] = reflection_class
74
+ options[:columns] = klass.column_list(reflection_class)
75
+ options[:params] = klass.params_list(reflection_class)
76
+ options[:reflection] = reflection
77
+ options[:polymorphic_reference] = reflection.options[:as].to_s
78
+ [assoc, options]
79
+ }]
80
+
81
+ ActiveAdmin.register model do
82
+ instance_eval &block if block_given? # Evalutate the passed black for overrides to the defaults
83
+
84
+ controller do
85
+ def scoped_collection
86
+ super.includes super.nested_attributes_options.keys
87
+ end
88
+ end
89
+
90
+ index do
91
+ selectable_column
92
+ cols = model.columns.map(&:name)-klass.exclude_params
93
+ cols.each_with_index do |c,i|
94
+ reflection = model.reflections.detect {|k,v| v.foreign_key == c }
95
+ if reflection
96
+ column c do |o|
97
+ klass.link_record(self,o.send(reflection.first))
98
+ end
99
+ else
100
+ column c
101
+ end
102
+ end
103
+ actions
104
+ end
105
+
106
+ show do
107
+ instance = self.send(model_name)
108
+
109
+ attributes_table do
110
+ model.columns.each do |c|
111
+ next if (c.name =~ /password/)
112
+ reflection = model.reflections.detect {|k,v| v.foreign_key == c.name }
113
+ if reflection
114
+ row c.name do |o|
115
+ klass.link_record(self,instance.send(reflection.first))
116
+ end
117
+ else
118
+ row c.name
119
+ end
120
+
121
+ end
122
+
123
+ nested_config.each do |assoc,options|
124
+ panel assoc.capitalize do
125
+ table_for instance.send(assoc) do
126
+ options[:columns].each do |c|
127
+ if options[:class].reflections[c]
128
+ column( c ) do |r|
129
+ klass.link_record(self,r.send(c)) if r
130
+ end
131
+ else
132
+ column c
133
+ end
134
+ end
135
+
136
+ admin_route = begin url_for(['admin', options[:class].name.underscore]) rescue false end
137
+ if admin_route
138
+ column 'actions' do |child|
139
+ span link_to "View", url_for(['admin', child])
140
+ span link_to "Edit", url_for(['edit','admin',child])
141
+ span link_to "Delete", url_for(['admin',child]), method: :delete, confirm: "Are you sure you want to delete this?"
142
+ end
143
+ end
144
+ end
145
+ end
146
+ end
147
+ end
148
+ end
149
+
150
+ permit_params klass.params_list(model, klass.include_virtual_attributes) + [Hash[nested_config.map{|assoc,o|
151
+ ["#{assoc}_attributes", o[:params]+[(o[:allow_destroy] ? :_destroy : '')] ]
152
+ }]]
153
+
154
+ form do |f|
155
+ f.semantic_errors *f.object.errors.messages.keys
156
+ f.actions
157
+
158
+ klass.column_list(model, klass.include_virtual_attributes).each do |column|
159
+ if column == model.primary_key
160
+ elsif klass.polymorphic?(model,column)
161
+ f.input column+"_assign", collection: model.send("#{column}_assign_options")
162
+ elsif model.respond_to?("options_for_#{column}")
163
+ f.input column, collection: model.send("options_for_#{column}", f.object)
164
+ else
165
+ f.input column
166
+ end
167
+ end
168
+
169
+ div { '&nbsp'.html_safe }
170
+
171
+ nested_config.each do |assoc,options|
172
+ aclass = options[:class]
173
+ columns = options[:columns]-[aclass.primary_key]
174
+ f.inputs do
175
+ f.has_many assoc, allow_destroy: options[:allow_destroy] do |r|
176
+ columns.each do |c|
177
+ if c == model_name || c == options[:polymorphic_reference]
178
+ # the join to the parent is implicit
179
+ elsif klass.polymorphic?(aclass,c)
180
+ r.input "#{c}_assign", collection: aclass.send("#{c}_assign_options")
181
+ elsif aclass.reflections[c] && aclass.respond_to?("options_for_#{c}")
182
+ # If the class has an options_for_<column> method defined use that
183
+ # rather than the default behavior, pass the instance for scoping,
184
+ # e.g. UserProjectJob.options_for_job is scoped by the Project's
185
+ # jobs:
186
+ r.input c, collection: aclass.send("options_for_#{c}",f.object)
187
+ else
188
+ r.input c
189
+ end
190
+ end
191
+ end
192
+ end
193
+ end
194
+ end
195
+
196
+ end
197
+ end
198
+ end
199
+ end
200
+ end
@@ -1,3 +1,3 @@
1
- module IntrospectiveAdmin
2
- VERSION = "0.0.8"
3
- end
1
+ module IntrospectiveAdmin
2
+ VERSION = "0.1.0"
3
+ end
@@ -1,72 +1,72 @@
1
- require 'rails_helper'
2
-
3
- RSpec.describe Admin::CompaniesController, :type => :controller do
4
- render_views
5
-
6
- before :each do
7
- user = double('user')
8
- allow(request.env['warden']).to receive(:authenticate!) { user }
9
- allow(controller).to receive(:current_user) { user }
10
- end
11
-
12
- describe "GET index" do
13
- it "finds all companies" do
14
- c = Company.make!
15
- get :index
16
- response.status.should == 200
17
- assigns(:companies).include?(c).should == true
18
- end
19
- end
20
-
21
- describe "SHOW record" do
22
- it "finds the record" do
23
- c = Company.make!
24
- get :show, id: c.id
25
- response.status.should == 200
26
- end
27
- end
28
-
29
- describe "NEW record" do
30
- it "renders the form for a new record" do
31
- get :new
32
- response.status.should == 200
33
- end
34
- end
35
-
36
- describe "CREATE record" do
37
- it "creates the record" do
38
- c = Company.make
39
- post :create, company: c.attributes
40
- response.should redirect_to action: :show, id: Company.last.id
41
- Company.last.name.should == c.name
42
- end
43
-
44
- it "creates a record with an admin" do
45
- u = User.make!
46
- c = Company.make
47
- post :create, company: c.attributes.merge({
48
- roles_attributes: {'0'=>{ user_id: u.id }}
49
- })
50
- response.should redirect_to action: :show, id: Company.last.id
51
- Company.last.admins.include?(u).should be_truthy
52
- end
53
-
54
- end
55
-
56
- describe "EDIT record" do
57
- it "renders the edit form for an existing record" do
58
- r = Company.make!
59
- get :edit, id: r.id
60
- response.status.should == 200
61
- end
62
- end
63
-
64
- describe "UPDATE record" do
65
- it "updates the record" do
66
- c = Company.make!
67
- put :update, id: c.id, company: { name: "New Name" }
68
- response.should redirect_to action: :show, id: c.id
69
- Company.find(c.id).name.should == "New Name"
70
- end
71
- end
72
- end
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe Admin::CompaniesController, :type => :controller do
4
+ render_views
5
+
6
+ before :each do
7
+ user = double('user')
8
+ allow(request.env['warden']).to receive(:authenticate!) { user }
9
+ allow(controller).to receive(:current_user) { user }
10
+ end
11
+
12
+ describe "GET index" do
13
+ it "finds all companies" do
14
+ c = Company.make!
15
+ get :index
16
+ response.status.should == 200
17
+ assigns(:companies).include?(c).should == true
18
+ end
19
+ end
20
+
21
+ describe "SHOW record" do
22
+ it "finds the record" do
23
+ c = Company.make!
24
+ get :show, params: { id: c.id }
25
+ response.status.should == 200
26
+ end
27
+ end
28
+
29
+ describe "NEW record" do
30
+ it "renders the form for a new record" do
31
+ get :new
32
+ response.status.should == 200
33
+ end
34
+ end
35
+
36
+ describe "CREATE record" do
37
+ it "creates the record" do
38
+ c = Company.make
39
+ post :create, params: { company: c.attributes }
40
+ response.should redirect_to action: :show, id: Company.last.id
41
+ Company.last.name.should == c.name
42
+ end
43
+
44
+ it "creates a record with an admin" do
45
+ u = User.make!
46
+ c = Company.make
47
+ post :create, params: { company: c.attributes.merge({
48
+ roles_attributes: {'0'=>{ user_id: u.id }}
49
+ }) }
50
+ response.should redirect_to action: :show, id: Company.last.id
51
+ Company.last.admins.include?(u).should be_truthy
52
+ end
53
+
54
+ end
55
+
56
+ describe "EDIT record" do
57
+ it "renders the edit form for an existing record" do
58
+ r = Company.make!
59
+ get :edit, params: { id: r.id }
60
+ response.status.should == 200
61
+ end
62
+ end
63
+
64
+ describe "UPDATE record" do
65
+ it "updates the record" do
66
+ c = Company.make!
67
+ put :update, params: { id: c.id, company: { name: "New Name" } }
68
+ response.should redirect_to action: :show, id: c.id
69
+ Company.find(c.id).name.should == "New Name"
70
+ end
71
+ end
72
+ end