Rails3, Mongoid, огурец.Не могу установить поле user_id: недопустимый формат ObjectId - PullRequest
0 голосов
/ 25 ноября 2010

У меня есть модель учетной записи:

class Account
  include Mongoid::Document
  include Mongoid::Timestamps

  referenced_in   :user
end

и пользователь:

class User
  include Mongoid::Document
  include Mongoid::Timestamps

  ...

  references_one :account

  ...
end

И следующий сценарий (я пытаюсь установить связь reference_one):

  Scenario: Client views his account
    Given the following accounts:
      | user_id          |
      |  1123322131      |
         .....

И следующий шаг:

Given /^the following accounts:$/ do |class_name, table|
  table.hashes.each do |attributes|
    Account.create(attributes)
  end
end

При попытке запустить огурец я всегда получаю сообщение об ошибке:

illegal ObjectId format (BSON::InvalidObjectId)
./features/step_definitions/common_steps.rb:7:in `block (2 levels) in <top (required)>'
./features/step_definitions/common_steps.rb:6:in `each'
./features/step_definitions/common_steps.rb:6:in `/^the following accounts:$/'
features/manage_accounts.feature:8:in `And the following accounts:'

полная версия backtrace: https://gist.github.com/433ea982d876e1b1fa27

Я использую: Rails 3.0.3, Ruby 1.9.2, огурец 1.9.4, машинист 2, монгоид.Мой Gemfile

Что я сделал не так?

UPD.Не так очевидно поведение:

> a = Account.create :user_id => "123" 
BSON::InvalidObjectId: illegal ObjectId format
> a = Account.create :user_id => 123
=> #<Account _id: 4ceedf055e6f991aef000005, created_at: 2010-11-25 22:11:17 UTC, updated_at: 2010-11-25 22:11:17 UTC, user_id: 123>
> a = Account.create :user_id => "4ceede9b5e6f991aef000007"
=> #<Account _id: 4ceedf1b5e6f991aef000006, created_at: 2010-11-25 22:11:39 UTC, updated_at: 2010-11-25 22:11:39 UTC, user_id: BSON::ObjectId('4ceede9b5e6f991aef000007')>

1 Ответ

2 голосов
/ 25 ноября 2010

Это может решить ваши проблемы:

Given /^the following accounts:$/ do |class_name, table|
  table.hashes.each do |attributes|
    User.create(attributes).create_account
  end
end

Используете ли вы пользовательский первичный ключ для User? Кажется, что Mongoid ожидает нормальный BSON :: ObjectId, такой как BSON :: ObjectId ('4ceeaf282b2d3a2ab0000001', но вы передаете простую строку, такую ​​как 1123322131. В общем, вы должны быть осторожны при попытке создать запись и ее ассоциации на в то же время

...