vote up 0 vote down star

This issue is really losing me.

I have a model for authentication : user. I have a model for comments : comment. I have a model that is commentable : weburl.

Weburl 1..* Comment Weburl *..1 User Comment *..1 User

The issue I have is not testable (my tests are all passing), and does not happen all the time. Usually it happens the second time I generate the same controller action.

Issue is my user associated to my comment, and retrieve through comment.user become NOT EQUAL to current_user, even if the attributes are the same. For example :

(comment.user.login == current_user.login == User.find(1).login)
     ==> True
(comment.user.id)
     ==> Unknown in the current context
(comment.user.class == User == current_user.class)
     ==> True

I doubled check the relationships belongs_to and has_one has_many in my models

My guess is that is something to do with caching, I'm experiencing this on my development environment, but not in my automated tests nor in production.

I'd like to understand what is the issue.

Thanks

EDIT Adding my development.rb init file

config.cache_classes = false                                    #Set to true for prod
config.whiny_nils = true
config.action_controller.consider_all_requests_local = true     #Set to false for prod
config.action_view.debug_rjs                         = true
config.action_controller.perform_caching             = false    #Set to true for prod

EDIT #2 If config.cache_classes is true, the error is not happenning

Doc says : # In the development environment your application's code is reloaded on every request. This slows down response time but is perfect for development since you dont have to restart the webserver when you make code changes.

found the following ticket, might be interrelated http://dev.rubyonrails.org/ticket/10722 Also, issue happens with Mongrel and WebRick.

flag

17% accept rate
what version of rails? (gem list --local). Also, poke around your models using 'script/console RAILS_ENV=production' and let me know if you can duplicate the problems there. – Lolindrath Feb 5 at 12:45
Can you set config.cache_classes=false in your test environment and re-run your tests? – Srdjan Pejic Feb 5 at 15:23
Srdjan Pejic : Good idea, but tests are passing. I've added a new test which call 10x the same model... not sure if a functionnal test could reproduce this issue, or if I would need an integration test. – xlash Feb 5 at 18:21
Lolindrath: Rails 2.2.2 – xlash Feb 5 at 18:24
bumping this thread – xlash Feb 9 at 16:45

2 Answers

vote up 1 vote down

I think what you mean from your question is: why doesn't this work: comment.user == current_user.

When you compare two Ruby objects to each other i.e. comment.user == current_user you are comparing their references, since they are two unique objects and sit in different areas of memory this is the correct behavior.

Instead you'll have to compare some other unique field like login or id.

link|flag
This make sense except, why wouldn't I be able to call comment.user.id ? And why would this behaviour be any different between prod and dev? Finally, I was under the impression that I could use the == operator to do instance comparison... not sure how much of my code is impacted by this... – xlash Feb 4 at 21:54
Tested by replacing == by .eql? (which compares type and value) with no success – xlash Feb 4 at 22:17
Ifconfig.cache_classes is true, the error is not happenning Doc says : # In the development environment your application's code is reloaded on every request. This slows down response time but is perfect for development since you dont have to restart the webserver when you make code changes – xlash Feb 4 at 22:58
Really, I think this is the answer. The object retrieved from a db is not the same as the object saved to it. It just has the same attributes. Object-relational systems like rails can be confusing in this way. – Joe Soul-bringer Feb 5 at 5:03
vote up 0 vote down

What's exactly the error thrown here: (comment.user.id)? If you can't access the User object from the Comment object, you might be missing something in the model. I'm not close to a console to verify this, though

link|flag
I triple checked my comment and user models, they are valid. .user method is correctly added, it's its content which doesn't work – xlash Feb 4 at 22:27

Your Answer

Get an OpenID
or

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