Sha256: 6754ff8245c8f21c08eb95d56d6cb3e89f2fb522a80e8dc07581294795b72c99

Contents?: true

Size: 1.66 KB

Versions: 4

Compression:

Stored size: 1.66 KB

Contents

require 'spec_helper'

describe MailRoom::MailboxWatcher do
  let(:mailbox) {build_mailbox}

  describe '#running?' do
    it 'is false by default' do
      watcher = MailRoom::MailboxWatcher.new(mailbox)
      expect(watcher.running?).to eq(false)
    end
  end

  describe '#run' do
    let(:imap) {stub(:login => true, :select => true)}
    let(:watcher) {MailRoom::MailboxWatcher.new(mailbox)}

    before :each do
      Net::IMAP.stubs(:new).returns(imap) # prevent connection
    end

    it 'loops over wait while running' do
      connection = MailRoom::Connection.new(mailbox)
      connection.stubs(:on_new_message)
      connection.stubs(:wait)

      MailRoom::Connection.stubs(:new).returns(connection)

      watcher.stubs(:running?).returns(true).then.returns(false)

      watcher.run
      watcher.watching_thread.join # wait for finishing run

      expect(watcher).to have_received(:running?).times(2)
      expect(connection).to have_received(:wait).once
      expect(connection).to have_received(:on_new_message).once
    end
  end

  describe '#quit' do
    let(:imap) {stub(:login => true, :select => true)}
    let(:watcher) {MailRoom::MailboxWatcher.new(mailbox)}

    before :each do
      Net::IMAP.stubs(:new).returns(imap) # prevent connection
    end

    it 'closes and waits for the connection' do
      connection = MailRoom::Connection.new(mailbox)
      connection.stubs(:wait)
      connection.stubs(:quit)

      MailRoom::Connection.stubs(:new).returns(connection)

      watcher.run

      expect(watcher.running?).to eq(true)

      watcher.quit

      expect(connection).to have_received(:quit)
      expect(watcher.running?).to eq(false)
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
gitlab-mail_room-0.0.4 spec/lib/mailbox_watcher_spec.rb
gitlab-mail_room-0.0.3 spec/lib/mailbox_watcher_spec.rb
gitlab-mail_room-0.0.2 spec/lib/mailbox_watcher_spec.rb
mail_room-0.10.0 spec/lib/mailbox_watcher_spec.rb