Observer not calling inside a spec

OK, I can’t figure this out.
RSpec 1.1.8
RSpecRails 1.1.8
Rails 2.1.1

I have a model

#app/models/person.rb
class Person < ActiveRecord::Base

The model has a lot of code in it, but even deleting

all the contents down to an empty model like this

still produces the error

end

#app/observers/person_observer.rb
class PersonObserver < ActiveRecord::Observer
def before_save(person)
Note.update_associated(person)
end
end

#config/environment.rb

config.activerecord.observers = [:person_observer, …]

The observer is not being called using

#spec/observers/person_observer_spec.rb
describe PersonObserver do
it “should call the observer”
person = Person.generate
Note.should_receive(:update_associated)
person.save
end

it “should not call the observer”
person = Person.generate
Note.should_receive(:update_associated)
person.save
end
end

This fails, and I can not figure out why.

If I fire up the console and modify a person and save it, the observer
fires
and the Note class updates what it needs to.

But the cracker is… I have other observers that work fine… I’m at
wits
end on this.

Any ideas why the observer might not be called?

On Wed, Nov 26, 2008 at 4:08 AM, Mikel L. [email protected]
wrote:

end
#spec/observers/person_observer_spec.rb
end
end
This fails, and I can not figure out why.

I see two examples with identical code. Do they both fail, or just the
2nd one? If so, there was a bug in which mocked inherited class
methods were not properly restored after the example. This is fixed in
git, but not released.

Would you mind building the gem from the latest and see if it resolves
your issue?

Thanks,
David

If I fire up the console and modify a person and save it, the observer fires
and the Note class updates what it needs to.
But the cracker is… I have other observers that work fine… I’m at wits
end on this.
Any ideas why the observer might not be called?

I see two examples with identical code. Do they both fail, or just the
2nd one? If so, there was a bug in which mocked inherited class
methods were not properly restored after the example. This is fixed in
git, but not released.

Would you mind building the gem from the latest and see if it resolves

Sorry David, stupid typo. I am duplicating the text from another screen
that is not on the 'net directly. The second spec does not exist.
#spec/observers/person_observer_spec.rb
describe PersonObserver do
it “should call the observer”
person = Person.generate
Note.should_receive(:update_associated)
person.save
end
end

I’ll get the git version anyway and try it out.

On Wed, Nov 26, 2008 at 4:32 AM, Mikel L. [email protected]
wrote:

that is not on the 'net directly. The second spec does not exist.
I’ll get the git version anyway and try it out.
Feel free, but now that I know there is only one example, I doubt that
it will solve your problem. But who knows? Couldn’t hurt to try :slight_smile:

On Wed, Nov 26, 2008 at 10:10 PM, Mikel L. [email protected]
wrote:

Am I missing a load path somewhere?

OK, I’ve ruled this out. I did:

class PersonObserver < ActiveRecord::Observer
raise

end

$ ruby spec/observers/person_observer.rb

Throws an exception as expected… so load path is fine.

Mikel

On Wed, Nov 26, 2008 at 9:41 PM, David C.
[email protected]wrote:

On Wed, Nov 26, 2008 at 4:32 AM, Mikel L. [email protected]
wrote:

Sorry David, stupid typo. I am duplicating the text from another screen
that is not on the 'net directly. The second spec does not exist.

You are right… doesn’t make a lick of difference :slight_smile:

Although, the new gem builds and installs nicely :slight_smile:

Any other ideas? Or things you want me to try?

It feels like the observer is not getting instantiated within the Person
class with the spec. Calling the debugger and putting it inside the
Observer class and then running the spec from the command line with
ruby-debug enabled confirms this as the spec never drops into the
debugger
CLI.

Am I missing a load path somewhere?

Putting the debugger within the specification itself and then calling
ActiveRecord::Base.observers returns [:person_observer, … (other
observers)]

And the following:

(rdb:1) ActiveRecord::Base.observers
[:person_observer, … (other observers)]
(rdb:1) Person.observers
[]
(rdb:1) Person.add_observer(PersonObserver)
[#PersonObserver:0x2322234, PersonObserver]
(rdb:1) Person.observers
[]

So that lead me to try instantiating the observers in the spec with
Person.instantiate_observers… no joy.

Feeling thoroughly clueless at this point.

OK, in the app I have some name spaced classes under a ‘int’ directory.
Some of these classes have observers and they have the same name as the
top
level classes.

If I make a new observer in the top level that shares a name with an
observer inside the namespace, the specs work. If I create an observer
that
does not have a shared name, the specs don’t work.

Strange…

And the weirdness continues…

Making a new observer against a different (empty) model works as
expected.

Deleting the entire person model down to just the class declaration,
still
does not work.