I'm having trouble in defining fixtures for self referencing relations in Doctrine 1.2, suppose I use the code from the manual, how to write fixtures for that?

I tried with this fixture file

User:
  JohnDoe:
    username: "john doe"
  MarkSmith:
    username: "mark smith"
    Friends: [ JohnDoe ]

but when I run doctrine load task I obtain this error message:

Catchable fatal error: Argument 2 passed to Doctrine_Record::setFriends() must be an instance of Doctrine_Access, none given

I would try by passing users in FriendReference fixture, but I don't know how to do that, because FriendReference has not relations explicitly declared so I can not do something like this

FriendReference:
  First:
    ???: [ JohnDoe, MarkSmith ]

or

FriendReference:
  First:
    User1: JohnDoe
    User2: MarkSmith

Update

Here is the example schema taken from the manual

---
# schema.yml

# ...
User:
# ...
  relations:
    # ...
    Friends:
      class: User
      local: user1
      foreign: user2
      refClass: FriendReference
      equal: true

FriendReference:
  columns:
    user1:
      type: integer
      primary: true
    user2:
      type: integer
      primary: true
link|improve this question

78% accept rate
Could you post your schema YAML file? – J0HN Aug 26 '11 at 13:09
@J0HN sure, I posted the schema. Hope you can help me. It's not urgent, but I still need that and I'd be very happy to solve this issue. – Fabio Aug 26 '11 at 13:35
Well, how do you expect Users will load to Question? Update fixture sample as well. :) – J0HN Aug 26 '11 at 13:38
@J0HN my initial fixture example was intended for Doctrine manual example. I've added it instead of my actual scheme, because the concept is the same. If I solve the issue for the manual example I can adapt it to my actual schema (which is the same with different names) – Fabio Aug 26 '11 at 13:49
Well, maybe that's stupid, but have you tried adding Friends declaration to first User? – J0HN Aug 26 '11 at 14:01
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

I've just found the solution for this issue, I needed to introduce two redundant relations in my schema file. The reference table in the schema become

FriendReference:
  columns:
    user1:
      type: integer
      primary: true
    user2:
      type: integer
      primary: true
  relations: # <-- ADDED RELATIONS
    User1:
      class: User
      local: user1
    User2:
      class: User
      local: user2

With this definition I can specify fixtures in this way

FriendReference:
  First:
    User1: JohnDoe
    User2: MarkSmith

It was so simple...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.