Module: SimplyTestable::ActionControllerExtension::AccessibleViaProtocol::ClassMethods
- Defined in:
- lib/simply_testable/action_controller_extension/accessible_via_protocol.rb
Instance Method Summary collapse
- #assert_access_with_http(*actions) ⇒ Object
- #assert_access_with_https(*actions) ⇒ Object
- #assert_no_access_with_http(*actions) ⇒ Object
- #awihttp_title(options = {}) ⇒ Object
- #awihttps_title(options = {}) ⇒ Object
- #nawihttp_title(options = {}) ⇒ Object
Instance Method Details
#assert_access_with_http(*actions) ⇒ Object
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 |
# File 'lib/simply_testable/action_controller_extension/accessible_via_protocol.rb', line 14 def assert_access_with_http(*actions) = actions. = { :login => :admin } if ( self.constants.include?('ASSERT_ACCESS_OPTIONS') ) .merge!(self::ASSERT_ACCESS_OPTIONS) end .merge!() actions += [:actions]||[] m_key = [:model].try(:underscore).try(:to_sym) test "#{brand}AWiHTTP should get new #{awihttp_title()}" do turn_https_off login_as send([:login]) args = [:new] || {} send(:get,:new,args) assert_response :success assert_template 'new' assert assigns(m_key) assert_nil flash[:error] end if actions.include?(:new) || .keys.include?(:new) test "#{brand}AWiHTTP should post create #{awihttp_title()}" do turn_https_off login_as send([:login]) args = if [:create] [:create] elsif [:attributes_for_create] {m_key => send([:attributes_for_create])} else {} end assert_difference("#{[:model]}.count",1) do send(:post,:create,args) end assert_response :redirect assert_nil flash[:error] end if actions.include?(:create) || .keys.include?(:create) test "#{brand}AWiHTTP should get edit #{awihttp_title()}" do turn_https_off login_as send([:login]) args={} if [:method_for_create] obj = send([:method_for_create]) args[:id] = obj.id end send(:get,:edit, args) assert_response :success assert_template 'edit' assert assigns(m_key) assert_nil flash[:error] end if actions.include?(:edit) || .keys.include?(:edit) test "#{brand}AWiHTTP should put update #{awihttp_title()}" do turn_https_off login_as send([:login]) args={} if [:method_for_create] && [:attributes_for_create] obj = send([:method_for_create]) args[:id] = obj.id args[m_key] = send([:attributes_for_create]) end before = obj.updated_at if obj sleep 1 if obj # if updated too quickly, updated_at won't change send(:put,:update, args) after = obj.reload.updated_at if obj assert_not_equal before.to_i,after.to_i if obj assert_response :redirect assert_nil flash[:error] end if actions.include?(:update) || .keys.include?(:update) test "#{brand}AWiHTTP should get show #{awihttp_title()}" do turn_https_off login_as send([:login]) args={} if [:method_for_create] obj = send([:method_for_create]) args[:id] = obj.id end send(:get,:show, args) assert_response :success assert_template 'show' assert assigns(m_key) assert_nil flash[:error] end if actions.include?(:show) || .keys.include?(:show) test "#{brand}AWiHTTP should delete destroy #{awihttp_title()}" do turn_https_off login_as send([:login]) args={} if [:method_for_create] obj = send([:method_for_create]) args[:id] = obj.id end assert_difference("#{[:model]}.count",-1) do send(:delete,:destroy,args) end assert_response :redirect assert assigns(m_key) assert_nil flash[:error] end if actions.include?(:destroy) || .keys.include?(:destroy) test "#{brand}AWiHTTP should get index #{awihttp_title()}" do turn_https_off login_as send([:login]) get :index assert_response :success assert_template 'index' assert assigns(m_key.try(:to_s).try(:pluralize).try(:to_sym)) assert_nil flash[:error] end if actions.include?(:index) || .keys.include?(:index) test "#{brand}AWiHTTP should get index #{awihttp_title()} and items" do turn_https_off send([:before]) if ![:before].blank? login_as send([:login]) 3.times{ send([:method_for_create]) } if ![:method_for_create].blank? get :index assert_response :success assert_template 'index' assert assigns(m_key.try(:to_s).try(:pluralize).try(:to_sym)) assert_nil flash[:error] end if actions.include?(:index) || .keys.include?(:index) end |
#assert_access_with_https(*actions) ⇒ Object
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 |
# File 'lib/simply_testable/action_controller_extension/accessible_via_protocol.rb', line 148 def assert_access_with_https(*actions) = actions. = { :login => :admin } if ( self.constants.include?('ASSERT_ACCESS_OPTIONS') ) .merge!(self::ASSERT_ACCESS_OPTIONS) end .merge!() actions += [:actions]||[] m_key = [:model].try(:underscore).try(:to_sym) test "#{brand}AWiHTTPS should get new #{awihttps_title()}" do login_as send([:login]) args = [:new] || {} turn_https_on send(:get,:new,args) assert_response :success assert_template 'new' assert assigns(m_key) assert_nil flash[:error] end if actions.include?(:new) || .keys.include?(:new) test "#{brand}AWiHTTPS should post create #{awihttps_title()}" do login_as send([:login]) args = if [:create] [:create] elsif [:attributes_for_create] {m_key => send([:attributes_for_create])} else {} end turn_https_on assert_difference("#{[:model]}.count",1) do send(:post,:create,args) end assert_response :redirect assert_nil flash[:error] end if actions.include?(:create) || .keys.include?(:create) test "#{brand}AWiHTTPS should get edit #{awihttps_title()}" do login_as send([:login]) args={} if [:method_for_create] obj = send([:method_for_create]) args[:id] = obj.id end turn_https_on send(:get,:edit, args) assert_response :success assert_template 'edit' assert assigns(m_key) assert_nil flash[:error] end if actions.include?(:edit) || .keys.include?(:edit) test "#{brand}AWiHTTPS should put update #{awihttps_title()}" do login_as send([:login]) args={} if [:method_for_create] && [:attributes_for_create] obj = send([:method_for_create]) args[:id] = obj.id args[m_key] = send([:attributes_for_create]) end before = obj.updated_at if obj sleep 1 if obj # if updated too quickly, updated_at won't change turn_https_on send(:put,:update, args) after = obj.reload.updated_at if obj assert_not_equal before.to_i,after.to_i if obj assert_response :redirect assert_nil flash[:error] end if actions.include?(:update) || .keys.include?(:update) test "#{brand}AWiHTTPS should get show #{awihttps_title()}" do login_as send([:login]) args={} if [:method_for_create] obj = send([:method_for_create]) args[:id] = obj.id end turn_https_on send(:get,:show, args) assert_response :success assert_template 'show' assert assigns(m_key) assert_nil flash[:error] end if actions.include?(:show) || .keys.include?(:show) test "#{brand}AWiHTTPS should delete destroy #{awihttps_title()}" do login_as send([:login]) args={} if [:method_for_create] obj = send([:method_for_create]) args[:id] = obj.id end turn_https_on assert_difference("#{[:model]}.count",-1) do send(:delete,:destroy,args) end assert_response :redirect assert assigns(m_key) assert_nil flash[:error] end if actions.include?(:destroy) || .keys.include?(:destroy) test "#{brand}AWiHTTPS should get index #{awihttps_title()}" do login_as send([:login]) turn_https_on get :index assert_response :success assert_template 'index' assert assigns(m_key.try(:to_s).try(:pluralize).try(:to_sym)) assert_nil flash[:error] end if actions.include?(:index) || .keys.include?(:index) test "#{brand}AWiHTTPS should get index #{awihttps_title()} and items" do send([:before]) if ![:before].blank? login_as send([:login]) 3.times{ send([:method_for_create]) } if ![:method_for_create].blank? turn_https_on get :index assert_response :success assert_template 'index' assert assigns(m_key.try(:to_s).try(:pluralize).try(:to_sym)) assert_nil flash[:error] end if actions.include?(:index) || .keys.include?(:index) end |
#assert_no_access_with_http(*actions) ⇒ Object
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 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 |
# File 'lib/simply_testable/action_controller_extension/accessible_via_protocol.rb', line 282 def assert_no_access_with_http(*actions) = actions. = { :login => :admin } if ( self.constants.include?('ASSERT_ACCESS_OPTIONS') ) .merge!(self::ASSERT_ACCESS_OPTIONS) end .merge!() actions += [:actions]||[] m_key = [:model].try(:underscore).try(:to_sym) test "#{brand}NAWiHTTP should NOT get new #{nawihttp_title()}" do turn_https_off login_as send([:login]) args = [:new]||{} send(:get,:new,args) assert_redirected_to @controller.url_for( :controller => @controller.controller_name, :action => 'new', :protocol => "https://") end if actions.include?(:new) || .keys.include?(:new) test "#{brand}NAWiHTTP should NOT post create #{nawihttp_title()}" do turn_https_off login_as send([:login]) args = if [:create] [:create] elsif [:attributes_for_create] {m_key => send([:attributes_for_create])} else {} end assert_no_difference("#{[:model]}.count") do send(:post,:create,args) end assert_match @controller.url_for( :controller => @controller.controller_name, :action => 'create', :protocol => "https://"),@response.redirected_to end if actions.include?(:create) || .keys.include?(:create) test "#{brand}NAWiHTTP should NOT get edit #{nawihttp_title()}" do turn_https_off login_as send([:login]) args=[:edit]||{} if [:method_for_create] obj = send([:method_for_create]) args[:id] = obj.id end send(:get,:edit, args) assert_redirected_to @controller.url_for( :controller => @controller.controller_name, :action => 'edit', :id => args[:id], :protocol => "https://") end if actions.include?(:edit) || .keys.include?(:edit) test "#{brand}NAWiHTTP should NOT put update #{nawihttp_title()}" do turn_https_off login_as send([:login]) args={} if [:method_for_create] && [:attributes_for_create] obj = send([:method_for_create]) args[:id] = obj.id args[m_key] = send([:attributes_for_create]) end before = obj.updated_at if obj send(:put,:update, args) after = obj.reload.updated_at if obj assert_equal before.to_s(:db), after.to_s(:db) if obj assert_match @controller.url_for( :controller => @controller.controller_name, :action => 'update', :id => args[:id], :protocol => "https://"), @response.redirected_to end if actions.include?(:update) || .keys.include?(:update) test "#{brand}NAWiHTTP should NOT get show #{nawihttp_title()}" do turn_https_off login_as send([:login]) args=[:show]||{} if [:method_for_create] obj = send([:method_for_create]) args[:id] = obj.id end send(:get,:show, args) assert_redirected_to @controller.url_for( :controller => @controller.controller_name, :action => 'show', :id => args[:id], :protocol => "https://") end if actions.include?(:show) || .keys.include?(:show) test "#{brand}NAWiHTTP should NOT delete destroy #{nawihttp_title()}" do turn_https_off login_as send([:login]) args=[:destroy]||{} if [:method_for_create] obj = send([:method_for_create]) args[:id] = obj.id end assert_no_difference("#{[:model]}.count") do send(:delete,:destroy,args) end assert_redirected_to @controller.url_for( :controller => @controller.controller_name, :action => 'destroy', :id => args[:id], :protocol => "https://") end if actions.include?(:destroy) || .keys.include?(:destroy) test "#{brand}NAWiHTTP should NOT get index #{nawihttp_title()}" do turn_https_off login_as send([:login]) get :index assert_redirected_to @controller.url_for( :controller => @controller.controller_name, :action => 'index', :protocol => "https://") end if actions.include?(:index) || .keys.include?(:index) end |
#awihttp_title(options = {}) ⇒ Object
10 11 12 |
# File 'lib/simply_testable/action_controller_extension/accessible_via_protocol.rb', line 10 def awihttp_title(={}) "with #{[:login]} login#{[:suffix]}" end |
#awihttps_title(options = {}) ⇒ Object
144 145 146 |
# File 'lib/simply_testable/action_controller_extension/accessible_via_protocol.rb', line 144 def awihttps_title(={}) "with #{[:login]} login#{[:suffix]}" end |
#nawihttp_title(options = {}) ⇒ Object
278 279 280 |
# File 'lib/simply_testable/action_controller_extension/accessible_via_protocol.rb', line 278 def nawihttp_title(={}) "with #{[:login]} login#{[:suffix]}" end |