Sha256: fb75ae76302fd60cfc336e2b405b1b6d6d56498928e4a37ab09247002ec58cd0
Contents?: true
Size: 1.88 KB
Versions: 1
Compression:
Stored size: 1.88 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "pg_upsert from file with CSV format" do before(:each) do ActiveRecord::Base.connection.execute %{ TRUNCATE TABLE composite_key_models; SELECT setval('composite_key_models_id_seq', 1, false); } end before do DateTime.stub_chain(:now, :utc).and_return (DateTime.parse("2012-01-01").utc) end def timestamp DateTime.now.utc end context 'composite_key_support' do it 'inserts records if the passed match composite key doesnt exist' do file = File.open(File.expand_path('spec/fixtures/composite_key_with_header.csv'), 'r') PostgresUpsert.write(CompositeKeyModel, file, :unique_key => ["comp_key_1", "comp_key_2"]) expect( CompositeKeyModel.last.attributes ).to include("data" => "test data 2") end it 'updates records if the passed composite key exists' do file = File.open(File.expand_path('spec/fixtures/composite_key_with_header.csv'), 'r') existing = CompositeKeyModel.create(comp_key_1: 2, comp_key_2:3, data: "old stuff") PostgresUpsert.write(CompositeKeyModel, file, :unique_key => ["comp_key_1", "comp_key_2"]) expect( CompositeKeyModel.find_by({comp_key_1: 2, comp_key_2:3}).attributes ).to include("data" => "test data 2") expect( CompositeKeyModel.find_by({comp_key_1: 1, comp_key_2:2}).attributes ).to include("data" => "test data 1") end it 'fails if composite keys are not unique.' do file = File.open(File.expand_path('spec/fixtures/composite_nonkey_with_header.csv'), 'r') existing = CompositeKeyModel.create(comp_key_1: 1, comp_key_2:2, data: "old stuff") expect{ PostgresUpsert.write(CompositeKeyModel, file, :unique_key => ["comp_key_1", "comp_key_2"]) }.to raise_error(/Check to make sure your key is unique/) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
postgres_upsert-5.0.0 | spec/composite_key_spec.rb |