Sha256: 350f67ecd25c0e87d54602230d9d983929a9f0076fb2f076da72b6ff829fd49a

Contents?: true

Size: 1.55 KB

Versions: 2

Compression:

Stored size: 1.55 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

describe Pupa::Processor::Persistence do
  before :all do
    Pupa.session = Moped::Session.new(['localhost:27017'], database: 'pupa_test')
    Pupa.session.collections.each(&:drop)

    Pupa::Processor::Persistence.new(Pupa::Person.new(name: 'existing')).save

    Pupa.session[:people].insert(_type: 'pupa/person', name: 'non-unique')
    Pupa.session[:people].insert(_type: 'pupa/person', name: 'non-unique')
  end

  describe '.find' do
    it 'should return nil if no matches' do
      Pupa::Processor::Persistence.find(_type: 'pupa/person', name: 'nonexistent').should == nil
    end

    it 'should return a document if one match' do
      Pupa::Processor::Persistence.find(_type: 'pupa/person', name: 'existing').should be_a(Hash)
    end

    it 'should raise an error if many matches' do
      expect{Pupa::Processor::Persistence.find(_type: 'pupa/person', name: 'non-unique')}.to raise_error(Pupa::Errors::TooManyMatches)
    end
  end

  describe '#save' do
    it 'should insert a document if no matches' do
      Pupa::Processor::Persistence.new(Pupa::Person.new(_id: 'new', name: 'new')).save.should == 'new'
    end

    it 'should update a document if one match' do
      Pupa::Processor::Persistence.new(Pupa::Person.new(_id: 'existing', name: 'existing')).save.should_not == 'existing'
    end

    it 'should raise an error if many matches' do
      expect{Pupa::Processor::Persistence.new(Pupa::Person.new(name: 'non-unique')).save}.to raise_error(Pupa::Errors::TooManyMatches)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pupa-0.0.9 spec/processor/persistence_spec.rb
pupa-0.0.8 spec/processor/persistence_spec.rb