Sha256: 14771343c8cb958ea01294b710b85aa107995fecf2feed48cb81690c013ee3df

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

# Copyright (c) 2011, SoundCloud Ltd., Rany Keddo, Tobias Bielohlawek, Tobias
# Schmidt

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

require 'lhm/table'
require 'lhm/migration'
require 'lhm/atomic_switcher'

describe Lhm::AtomicSwitcher do
  include IntegrationHelper

  before(:each) { connect_master! }

  describe "switching" do
    before(:each) do
      @origin = table_create("origin")
      @destination = table_create("destination")
      @migration = Lhm::Migration.new(@origin, @destination)
    end

    it "rename origin to archive" do
      switcher = Lhm::AtomicSwitcher.new(@migration, connection)
      switcher.run

      slave do
        table_exists?(@origin).must_equal true
        table_read(@migration.archive_name).columns.keys.must_include "origin"
      end
    end

    it "rename destination to origin" do
      switcher = Lhm::AtomicSwitcher.new(@migration, connection)
      switcher.run

      slave do
        table_exists?(@destination).must_equal false
        table_read(@origin.name).columns.keys.must_include "destination"
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
sbader-lhm-1.1.0 spec/integration/atomic_switcher_spec.rb
lhm-1.1.0 spec/integration/atomic_switcher_spec.rb