parent
7aa3233bcb
commit
067c4a7c10
|
@ -1437,18 +1437,18 @@ describe CookedPostProcessor do
|
||||||
|
|
||||||
before do
|
before do
|
||||||
SiteSetting.download_remote_images_to_local = true
|
SiteSetting.download_remote_images_to_local = true
|
||||||
cpp.expects(:available_disk_space).returns(50)
|
SiteSetting.download_remote_images_threshold = 20
|
||||||
|
cpp.stubs(:available_disk_space).returns(50)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "does nothing when there's enough disk space" do
|
it "does nothing when there's enough disk space" do
|
||||||
SiteSetting.expects(:download_remote_images_threshold).returns(20)
|
|
||||||
SiteSetting.expects(:download_remote_images_to_local=).never
|
SiteSetting.expects(:download_remote_images_to_local=).never
|
||||||
expect(cpp.disable_if_low_on_disk_space).to eq(false)
|
expect(cpp.disable_if_low_on_disk_space).to eq(false)
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when there's not enough disk space" do
|
context "when there's not enough disk space" do
|
||||||
|
|
||||||
before { SiteSetting.expects(:download_remote_images_threshold).returns(75) }
|
before { SiteSetting.download_remote_images_threshold = 75 }
|
||||||
|
|
||||||
it "disables download_remote_images_threshold and send a notification to the admin" do
|
it "disables download_remote_images_threshold and send a notification to the admin" do
|
||||||
StaffActionLogger.any_instance.expects(:log_site_setting_change).once
|
StaffActionLogger.any_instance.expects(:log_site_setting_change).once
|
||||||
|
|
Loading…
Reference in New Issue