-
Notifications
You must be signed in to change notification settings - Fork 897
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17167 from cben/quota-purging
Purging of ContainerQuota & ContainerQuotaItem (cherry picked from commit 388f266) https://bugzilla.redhat.com/show_bug.cgi?id=1559544
- Loading branch information
Showing
8 changed files
with
183 additions
and
0 deletions.
There are no files selected for viewing
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
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,25 @@ | ||
class ContainerQuota < ApplicationRecord | ||
module Purging | ||
extend ActiveSupport::Concern | ||
include PurgingMixin | ||
|
||
module ClassMethods | ||
def purge_date | ||
::Settings.container_entities.history.keep_archived_quotas.to_i_with_method.seconds.ago.utc | ||
end | ||
|
||
def purge_window_size | ||
::Settings.container_entities.history.purge_window_size | ||
end | ||
|
||
def purge_scope(older_than) | ||
where(arel_table[:deleted_on].lteq(older_than)) | ||
end | ||
|
||
def purge_associated_records(ids) | ||
ContainerQuotaScope.where(:container_quota_id => ids).delete_all | ||
ContainerQuotaItem.where(:container_quota_id => ids).delete_all | ||
end | ||
end | ||
end | ||
end |
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
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,20 @@ | ||
class ContainerQuotaItem < ApplicationRecord | ||
module Purging | ||
extend ActiveSupport::Concern | ||
include PurgingMixin | ||
|
||
module ClassMethods | ||
def purge_date | ||
::Settings.container_entities.history.keep_archived_quotas.to_i_with_method.seconds.ago.utc | ||
end | ||
|
||
def purge_window_size | ||
::Settings.container_entities.history.purge_window_size | ||
end | ||
|
||
def purge_scope(older_than) | ||
where(arel_table[:deleted_on].lteq(older_than)) | ||
end | ||
end | ||
end | ||
end |
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
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
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,63 @@ | ||
describe ContainerQuota do | ||
context "::Purging" do | ||
context ".purge_queue" do | ||
before do | ||
EvmSpecHelper.create_guid_miq_server_zone | ||
end | ||
let(:purge_time) { (Time.zone.now + 10).round } | ||
|
||
it "submits to the queue" do | ||
expect(described_class).to receive(:purge_date).and_return(purge_time) | ||
described_class.purge_timer | ||
|
||
q = MiqQueue.all | ||
expect(q.length).to eq(1) | ||
expect(q.first).to have_attributes( | ||
:class_name => described_class.name, | ||
:method_name => "purge_by_date", | ||
:args => [purge_time] | ||
) | ||
end | ||
end | ||
|
||
context ".purge" do | ||
let(:deleted_date) { 6.months.ago } | ||
|
||
before do | ||
@old_quota = FactoryGirl.create(:container_quota, :deleted_on => deleted_date - 1.day) | ||
@old_quota_scope = FactoryGirl.create(:container_quota_scope, :container_quota => @old_quota) | ||
@old_quota_old_item = FactoryGirl.create(:container_quota_item, :container_quota => @old_quota, | ||
:deleted_on => deleted_date - 1.day) | ||
@old_quota_active_item = FactoryGirl.create(:container_quota_item, :container_quota => @old_quota, | ||
:deleted_on => nil) | ||
|
||
@purge_date_quota = FactoryGirl.create(:container_quota, :deleted_on => deleted_date) | ||
|
||
@new_quota = FactoryGirl.create(:container_quota, :deleted_on => deleted_date + 1.day) | ||
@new_quota_scope = FactoryGirl.create(:container_quota_scope, :container_quota => @new_quota) | ||
@new_quota_old_item = FactoryGirl.create(:container_quota_item, :container_quota => @new_quota, | ||
:deleted_on => deleted_date - 1.day) | ||
end | ||
|
||
def assert_unpurged_ids(model, unpurged_ids) | ||
expect(model.order(:id).pluck(:id)).to eq(Array(unpurged_ids).sort) | ||
end | ||
|
||
it "purge_date and older" do | ||
described_class.purge(deleted_date) | ||
assert_unpurged_ids(ContainerQuota, @new_quota.id) | ||
assert_unpurged_ids(ContainerQuotaScope, @new_quota_scope.id) | ||
# This quota item is itself due for purging, but not as part of ContainerQuota::Purging. | ||
assert_unpurged_ids(ContainerQuotaItem, @new_quota_old_item.id) | ||
end | ||
|
||
it "with a window" do | ||
described_class.purge(deleted_date, 1) | ||
assert_unpurged_ids(ContainerQuota, @new_quota.id) | ||
assert_unpurged_ids(ContainerQuotaScope, @new_quota_scope.id) | ||
# This quota item is itself due for purging, but not as part of ContainerQuota::Purging. | ||
assert_unpurged_ids(ContainerQuotaItem, @new_quota_old_item.id) | ||
end | ||
end | ||
end | ||
end |
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,70 @@ | ||
describe ContainerQuotaItem do | ||
context "::Purging" do | ||
context ".purge_queue" do | ||
before do | ||
EvmSpecHelper.create_guid_miq_server_zone | ||
end | ||
let(:purge_time) { (Time.zone.now + 10).round } | ||
|
||
it "submits to the queue" do | ||
expect(described_class).to receive(:purge_date).and_return(purge_time) | ||
described_class.purge_timer | ||
|
||
q = MiqQueue.all | ||
expect(q.length).to eq(1) | ||
expect(q.first).to have_attributes( | ||
:class_name => described_class.name, | ||
:method_name => "purge_by_date", | ||
:args => [purge_time] | ||
) | ||
end | ||
end | ||
|
||
context ".purge" do | ||
let(:deleted_date) { 6.months.ago } | ||
|
||
before do | ||
@old_quota = FactoryGirl.create(:container_quota, :deleted_on => deleted_date - 1.day) | ||
@old_quota_scope = FactoryGirl.create(:container_quota_scope, :container_quota => @old_quota) | ||
@old_quota_old_item = FactoryGirl.create(:container_quota_item, :container_quota => @old_quota, | ||
:deleted_on => deleted_date - 1.day) | ||
@old_quota_purge_date_item = FactoryGirl.create(:container_quota_item, :container_quota => @old_quota, | ||
:deleted_on => deleted_date) | ||
@old_quota_new_item = FactoryGirl.create(:container_quota_item, :container_quota => @old_quota, | ||
:deleted_on => deleted_date + 1.day) | ||
|
||
# Quota items may get archived as result of quota edits, while parent quota remains active. | ||
@active_quota = FactoryGirl.create(:container_quota, :deleted_on => nil) | ||
@active_quota_scope = FactoryGirl.create(:container_quota_scope, :container_quota => @active_quota) | ||
@active_quota_old_item = FactoryGirl.create(:container_quota_item, :container_quota => @active_quota, | ||
:deleted_on => deleted_date - 1.day) | ||
@active_quota_purge_date_item = FactoryGirl.create(:container_quota_item, :container_quota => @active_quota, | ||
:deleted_on => deleted_date) | ||
@active_quota_new_item = FactoryGirl.create(:container_quota_item, :container_quota => @active_quota, | ||
:deleted_on => deleted_date + 1.day) | ||
@active_quota_active_item = FactoryGirl.create(:container_quota_item, :container_quota => @active_quota, | ||
:deleted_on => nil) | ||
end | ||
|
||
def assert_unpurged_ids(model, unpurged_ids) | ||
expect(model.order(:id).pluck(:id)).to eq(Array(unpurged_ids).sort) | ||
end | ||
|
||
it "purge_date and older" do | ||
described_class.purge(deleted_date) | ||
# @old_quota is itself due for purging, but not as part of ContainerQuotaItem::Purging. | ||
assert_unpurged_ids(ContainerQuota, [@old_quota.id, @active_quota.id]) | ||
assert_unpurged_ids(ContainerQuotaScope, [@old_quota_scope.id, @active_quota_scope.id]) | ||
assert_unpurged_ids(ContainerQuotaItem, [@old_quota_new_item.id, @active_quota_new_item.id, @active_quota_active_item.id]) | ||
end | ||
|
||
it "with a window" do | ||
described_class.purge(deleted_date, 1) | ||
# @old_quota is itself due for purging, but not as part of ContainerQuotaItem::Purging. | ||
assert_unpurged_ids(ContainerQuota, [@old_quota.id, @active_quota.id]) | ||
assert_unpurged_ids(ContainerQuotaScope, [@old_quota_scope.id, @active_quota_scope.id]) | ||
assert_unpurged_ids(ContainerQuotaItem, [@old_quota_new_item.id, @active_quota_new_item.id, @active_quota_active_item.id]) | ||
end | ||
end | ||
end | ||
end |