Rails HABTM has_many破坏错误

时间:2017-03-24 21:58:34

标签: ruby-on-rails has-many-through has-and-belongs-to-many minitest

我在用户和工作区之间使用has_and_belongs_to_many has_many

user.rb

class User < ActiveRecord::Base
  has_many :user_workspaces, dependent: :destroy
  has_many :workspaces, through: :user_workspaces 
  before_destroy :delete_workspaces

 def delete_workspaces
   self.workspaces.each(&:destroy)
 end 

workspace.rb

class Workspace < ActiveRecord::Base
  has_many    :user_workspaces
  has_many    :users, through :user_workspaces
end

user_workspaces 类和迁移:

class UserWorkspace < ActiveRecord::Base 
  self.table_name  = "user_workspaces"
  belongs_to  :user 
  belongs_to  :workspace
end

class CreateUsersAndWorkspaces < ActiveRecord::Migration
  def change
    create_table :users_workspaces, id: false do |t|
      t.belongs_to :user, index: true
      t.belongs_to :workspace, index: true
      t.boolean :admin, default: true  
    end
  end
end
    class RenameUsersWorkspaces < ActiveRecord::Migration
  def change
    rename_table('users_workspaces', 'user_workspaces')
  end
end

我希望这两个测试都通过:

should "destroy all associatios and objects" do 
  user = User.create!(attributes_for(:user))
  w = user.workspaces.create!(attributes_for(:workspace))
  user.destroy 
  assert UserWorkspace.all.empty? #asser there are no associations
end 

给了我错误

  

ActiveRecord :: StatementInvalid:SQLite3 :: SQLException:没有这样的列:   user_workspaces。:DELETE FROM&#34; user_workspaces&#34;哪里   &#34; user_workspaces&#34;&#34;&#34; =?

 should "destroy association when destroying workspace" do
      user = User.create!(attributes_for(:user))
      w = user.workspaces.create!(attributes_for(:workspace))
      w.destroy
      assert UserWorkspace.all.empty?
 end

我如何涵盖这两种情况?销毁用户会破坏关联和工作空间,破坏工作空间也会破坏关联

1 个答案:

答案 0 :(得分:0)

根据http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html,只需要忽略连接表。

Workspace.rb 现在具有依赖性破坏,仅销毁连接(破坏的预期行为)

  has_many    :users,             through:      :user_workspaces,
                                  inverse_of:   :workspaces,
                                  dependent:    :destroy

然后 user.rb 保留delete_workspaces函数,但添加依赖:: destroy,以破坏关联。

user.rb

    before_destroy: :delete_workspaces
    has_many :workspaces,           through: :user_workspaces,                                   
                                     dependent: :destroy

 def delete_workspaces
   self.workspaces.each(&:destroy)
 end 

现在两个测试通过。