Sha256: 992c676d8bc4d5768cb56596a26326e2e6c63672bca01c779c7462bfd65cb24d

Contents?: true

Size: 1.94 KB

Versions: 1

Compression:

Stored size: 1.94 KB

Contents

require 'spec_helper'

describe Hipbot::Message do
  subject { Hipbot::Message }
  let(:sender) { double }
  let(:room) { double }

  before(:all) do
    Hipbot::Bot.instance.setup
  end

  before do
    Hipbot.configuration.user.stub(mention: 'dave')
  end

  after do
    Hipbot.configuration.user.unstub(:mention)
  end

  it "should have a body" do
    message = subject.new('this is a message', room, sender)
    message.body.should == 'this is a message'
  end

  it "should have a sender" do
    message = subject.new('this is a message', room, sender)
    message.sender.should == sender
  end

  it "should have no recipients" do
    message = subject.new('this is a message', room, sender)
    message.recipients.should be_empty
  end

  it "should have one recipient" do
    message = subject.new('this is a message for @tom', room, sender)
    message.recipients.should include('tom')
  end

  it "should have two recipients" do
    message = subject.new('@dave, this is a message for @tom', room, sender)
    message.recipients.should include('tom')
    message.recipients.should include('dave')
  end

  it "should strip bot mention from message" do
    message = subject.new('@dave this is a message for @tom', room, sender)
    message.body.should == 'this is a message for @tom'
  end

  it "should strip bot mention from message with commma" do
    message = subject.new('@dave, this is a message for @tom', room, sender)
    message.body.should == 'this is a message for @tom'
  end

  it "should be for bot" do
    user = double(mention: 'robot')
    message = subject.new('hello @robot!', room, sender)
    message.for?(user).should be_truthy
  end

  it "should not be for bot" do
    user = double(mention: 'robot')
    message = subject.new('hello @tom!', room, sender)
    message.for?(user).should be_falsy
  end

  it 'knows its recipients' do
    message = subject.new('@tom, @dave: @mike')
    message.recipients.should == ['tom', 'dave', 'mike']
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hipbot-1.0.4 spec/unit/message_spec.rb