-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate Nuage CloudSubnet default type to new subclass
Nuage inventory was recently updated to fetch two types of CloudSubnets: ``` - ManageIQ::Providers::Nuage::NetworkManager::CloudSubnetL3 - ManageIQ::Providers::Nuage::NetworkManager::CloudSubnetL2 ``` Before only CloudSubnetL3 were inventoried using default type CloudSubnet. With this migration we make sure that this default type is converted to CloudSubnetL3 type because persister won't modify STI type per se. Signed-off-by: Miha Pleško <[email protected]>
- Loading branch information
1 parent
d0bdf22
commit 57fd653
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
db/migrate/20180607084710_nuage_subclass_l3_cloud_subnet.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
class NuageSubclassL3CloudSubnet < ActiveRecord::Migration[5.0] | ||
class CloudSubnet < ActiveRecord::Base | ||
self.inheritance_column = :_type_disabled | ||
end | ||
|
||
def up | ||
say_with_time('Migrating Nuage default subnet type to L3 subnet subclass') do | ||
CloudSubnet.where(:type => 'ManageIQ::Providers::Nuage::NetworkManager::CloudSubnet') | ||
.update_all(:type => 'ManageIQ::Providers::Nuage::NetworkManager::CloudSubnetL3') | ||
end | ||
end | ||
|
||
def down | ||
say_with_time('Reverting Nuage L3 subnet subclass to default subnet type') do | ||
CloudSubnet.where(:type => 'ManageIQ::Providers::Nuage::NetworkManager::CloudSubnetL3') | ||
.update_all(:type => 'ManageIQ::Providers::Nuage::NetworkManager::CloudSubnet') | ||
end | ||
end | ||
end |
45 changes: 45 additions & 0 deletions
45
spec/migrations/20180607084710_nuage_subclass_l3_cloud_subnet_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
require_migration | ||
|
||
describe NuageSubclassL3CloudSubnet do | ||
let(:subnet_stub) { migration_stub :CloudSubnet } | ||
|
||
migration_context :up do | ||
it 'migrates base Nuage type' do | ||
subnet = subnet_stub.create!(:type => 'ManageIQ::Providers::Nuage::NetworkManager::CloudSubnet') | ||
|
||
migrate | ||
subnet.reload | ||
|
||
expect(subnet.type).to eql('ManageIQ::Providers::Nuage::NetworkManager::CloudSubnetL3') | ||
end | ||
|
||
it 'doesnt modify other subnets' do | ||
subnet = subnet_stub.create!(:type => 'CloudSubnet') | ||
|
||
migrate | ||
subnet.reload | ||
|
||
expect(subnet.type).to eql('CloudSubnet') | ||
end | ||
end | ||
|
||
migration_context :down do | ||
it 'restores base Nuage type' do | ||
subnet = subnet_stub.create!(:type => 'ManageIQ::Providers::Nuage::NetworkManager::CloudSubnetL3') | ||
|
||
migrate | ||
subnet.reload | ||
|
||
expect(subnet.type).to eql('ManageIQ::Providers::Nuage::NetworkManager::CloudSubnet') | ||
end | ||
|
||
it 'doesnt modify other subnets' do | ||
subnet = subnet_stub.create!(:type => 'CloudSubnet') | ||
|
||
migrate | ||
subnet.reload | ||
|
||
expect(subnet.type).to eql('CloudSubnet') | ||
end | ||
end | ||
end |