0

コスチュームルートと、存在しないルートのテストを作成しようとしています。

ここにある例では、2つの問題があります。

  1. これは、コントローラーに存在しないアクションと一致するため、コントローラーにこれらのアクションがあるかどうかを確認するために実際には一致しません。構文と一致するだけです。
  2. これはshould_not be_routable機能しません。上記の問題に戻ります。コントローラーまたはroutes.rbファイルをチェックして、ルートが存在するかどうかを確認しません。

これは合格し、すべて良好です。

it "should route to method1" do
   { :get => '/my_controller/method1' }.should route_to(:controller => 'my_controller',
                                                     :action => 'method1')
end

これは失敗するので、コントローラーまたはルートファイルにメソッドzzが定義されているかどうかもチェックされません。

it "should not route to zz" do
  { :get => '/my_controller/zz' }.should_not be_routable 
end

私が得るエラーは次のとおりです。

MyController routing zz should route to rescan
     Failure/Error: { :get => '/my_controller/zz' }.should_not be_routable
       expected {:get=>"/client_rescan/zz"} not to be routable, but it routes to {:controller=>"my_controller", :action=>"zz"}

したがって、明らかに私のルートファイルはまったく表示されません...

これは、ルートファイルを参照しない別の例です。ルートには'resources:client_rescan、:only => [:index]'があり、rake routes実行すると、期待どおりに削除が表示されませんが、テストそれらを見ていません:

it "should not have route to delete" do
  { :delete => '/my_controller/1'}.should_not be_routable
end

私が得る失敗は次のとおりです。削除機能すら表示されないようです。

 Failure/Error: { :delete => '/my_controller/1'}.should_not be_routable
   expected {:delete=>"/my_controller/1"} not to be routable, but it routes to {:controller=>"my_controller", :action=>"1"}

もう1つの問題は、テストでインデックスを作成するための投稿ルートです。

it "should not have route to post" do
  { :post => '/my_controller' }.should_not be_routable
end

私が得る失敗は次のとおりです。

 Failure/Error: { :post => '/my_controller' }.should_not be_routable
   expected {:post=>"/my_controller"} not to be routable, but it routes to {:controller=>"my_controller", :action=>"index"}

これは私のroutes.rbファイルの内容です

require 'resque/server'
require 'resque_scheduler'

Cdc::Application.routes.draw do

  mount Resque::Server.new, :at => 'resque'
  Resque.schedule = YAML.load_file(File.join(File.dirname(__FILE__), 'resque_schedule.yml')) # load the schedule

  devise_for :users, :controllers => { :sessions => "sessions", :registrations => "registrations" }



  [:assessments, :security_assessments, :privacy_assessments].each do |assessment_type|
    resources assessment_type, :controller => :assessments do
      resources :rsz do
        post 'review', :on => :member
        get 'judgement', :on => :member
      end

      get :judgement, :on => :member

      resources :samples do
        get 'download', :on => :member
      end

      resources :asm_reviews do
        post :request_review, :on => :collection
      end
    end
  end



  resources :account_creator
  match "/images/captcha/*file_name" => "captcha#show"

  ## this is where my route is!! :)

  resources :my_controller, :only => [:index] do
    collection do
      get :rescan
      get :cancel
    end
  end

  match "alert_queue/words" => "alert_queue#words"
  resources :alert_queue

  match "calls_to_action/start/:id" => "calls_to_action#start", :id => /\d+/
  match "calls_to_action/close/:id" => "calls_to_action#close", :id => /\d+/
  match "calls_to_action/comment/:id" => "calls_to_action#comment", :id => /\d+/
  match "calls_to_action/multiclose" => "calls_to_action#multiclose"
  match "calls_to_action/multiscan" => "calls_to_action#multiscan"

  match "application_instances/multiclose" => "application_instances#multiclose"
  match "application_instances/multiscan" => "application_instances#multiscan"

  resources :code_categories do
    resources :code_families do
      resources :code_family_versions
    end
  end

  resources :code_policy_items


  resources :application_instances do
    collection do
      post :resque_statuses
    end

    resources :code_indices
    resources :application_analysis

    get "smali/:smali_path", :as => :smali, :on => :member, :action => :smali, :smali_path => /.*/
    member do
      get :file
      get :strings
      get :dump
      get :alerts
      get :correlations
      get :signers
      get :icon
      get :resque_status
      get :assets
      get :new_code_index
      get :class_list
      get :heuristic_hits
      get :engine_artifacts
      post :rescan
      post :attach_artifact
      post :engine_artifact, :action => :attach_engine_artifact
      resources :alerts
    end

    post "multiscan", :on => :collection, :action => :multiscan
    post "multiclose", :on => :collection, :action=> :multiclose
    post "engines/:engine_name/:engine_version/assertions/:cookie",
         :on => :member, :action => :register_assertion_set, :as => :register_assertion_set,
         :engine_name => /[^\/]+/, :engine_version => /[^\/]+/, :cookie => /[^\/]+/
    post "engines/:engine_name/:engine_version/network_data",
         :on => :member, :action => :register_network_data, :as => :register_network_data,
         :engine_name => /[^\/]+/, :engine_version => /[^\/]+/

    post "assets", :on => :member, :action => :register_asset_set, :as => :register_asset_set
  end

  # index gets the list of families, show gets the assertion types for that family
  resources :assertion_families

  resources :artifacts

  resources :dashboard do
    collection do
      get :last_app_instance
    end
  end

  match '/direct_downloads/' => 'direct_downloads#index'

  root :to => "stats#index"
  match '/' => 'stats#index'
  match 'explorer/query/:format' => 'explorer#query'
  match '/:controller(/:action(/:id))'
end
4

1 に答える 1

5

問題は、routes.rbの次の行です。

match '/:controller(/:action(/:id))'

これはキャッチオールルートであり、たとえば/ abc/xyzをコントローラーabcおよびアクションxyzに一致させます。

必要な機能のみを公開するために、catchallルートを使用しないことをお勧めします。

于 2013-01-15T05:51:37.930 に答える