Skip to content
Extraits de code Groupes Projets
notification_serializer_spec.rb 1,54 Kio
require "spec_helper"

describe NotificationSerializer do
  let(:notifications_controller) { NotificationsController.new }

  before do
    allow(notifications_controller).to receive(:current_user).and_return(notification.recipient)
    notifications_controller.request = ActionController::TestRequest.new(host: AppConfig.pod_uri)
  end

  let(:notification) { FactoryGirl.create(:notification) }
  let(:json_output) {
    NotificationSerializer.new(notification, context: notifications_controller).to_json
  }

  subject(:parsed_hash) {
    JSON.parse json_output
  }

  it { is_expected.to have_key(notification.type.demodulize.underscore.to_s) }

  context "typed object" do
    let(:object) {
      parsed_hash[notification.type.demodulize.underscore]
    }

    it "have all properties set" do
      %w(id target_id recipient_id unread target_type).each do |key|
        expect(object[key]).to eq(notification.send(key))
      end

      %w(created_at updated_at).each do |key|
        expect(object[key]).to eq(notification.send(key).strftime("%FT%T.%LZ"))
      end

      expect(object).to have_key("note_html")
    end

    context "note_html" do
      before do
        # Nokogiri issue, see https://github.com/sparklemotion/nokogiri/issues/800
        # TODO: remove when the above issue is fixed
        expect_any_instance_of(ApplicationHelper).to receive(:timeago).and_return("")
      end

      let(:note_html) { object["note_html"] }

      it "contains valid html" do
        expect(Nokogiri::HTML(note_html).errors).to eq([])
      end
    end
  end
end