/cloud/sip-servlets/steamcannon/spec/models/event_spec.rb

http://mobicents.googlecode.com/ · Ruby · 45 lines · 22 code · 6 blank · 17 comment · 3 complexity · c117aa6795172ac38a8cca192f8896b1 MD5 · raw file

  1. #
  2. # Copyright 2010 Red Hat, Inc.
  3. #
  4. # This is free software; you can redistribute it and/or modify it
  5. # under the terms of the GNU Lesser General Public License as
  6. # published by the Free Software Foundation; either version 3 of
  7. # the License, or (at your option) any later version.
  8. #
  9. # This software is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. # Lesser General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Lesser General Public
  15. # License along with this software; if not, write to the Free
  16. # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  17. # 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  18. require 'spec_helper'
  19. describe Event do
  20. before(:each) do
  21. @event = Factory.build(:event)
  22. end
  23. it { should belong_to :event_subject }
  24. describe "error" do
  25. it "should return error as hash of :type, :message, :backtrace" do
  26. error = mock(Exception, :message => 'the message', :backtrace => %w{ line_1 line_2 })
  27. @event.error = error
  28. @event.error.should == { :type => error.class.name, :message => error.message, :backtrace => error.backtrace.join("\n") }
  29. end
  30. it "should handle nil properly" do
  31. @event.error = nil
  32. @event.error.should be_nil
  33. end
  34. it "should return :type and :backtrace as empty strings if only a message is provided" do
  35. @event.error = 'the error'
  36. @event.error.should == { :message => 'the error', :type => '', :backtrace => '' }
  37. end
  38. end
  39. end