discourse/spec/components/site_settings/db_provider_spec.rb
Krzysztof Kotlarek 427d54b2b0 DEV: Upgrading Discourse to Zeitwerk (#8098)
Zeitwerk simplifies working with dependencies in dev and makes it easier reloading class chains. 

We no longer need to use Rails "require_dependency" anywhere and instead can just use standard 
Ruby patterns to require files.

This is a far reaching change and we expect some followups here.
2019-10-02 14:01:53 +10:00

52 lines
1.3 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe SiteSettings::DbProvider do
def expect_same_setting(actual, expected)
expect(actual.name).to eq(expected.name)
expect(actual.value).to eq(expected.value)
expect(actual.data_type).to eq(expected.data_type)
end
let :provider do
SiteSettings::DbProvider.new(SiteSetting)
end
# integration test, requires db access
it "acts correctly" do
setting = Struct.new(:name, :value, :data_type)
SiteSetting.destroy_all
expect(provider.all.length).to eq(0)
expect(provider.find("test")).to eq(nil)
provider.save("test", "one", 1)
found = provider.find("test")
expect_same_setting(found, setting.new("test", "one", 1))
provider.save("test", "two", 2)
found = provider.find("test")
expect_same_setting(found, setting.new("test", "two", 2))
provider.save("test2", "three", 3)
all = provider.all.sort { |a, b| a.name <=> b.name }
expect_same_setting(all[0], setting.new("test", "two", 2))
expect_same_setting(all[1], setting.new("test2", "three", 3))
expect(all.length).to eq(2)
provider.destroy("test")
expect(provider.all.length).to eq(1)
end
it "returns the correct site name" do
expect(provider.current_site).to eq(RailsMultisite::ConnectionManagement.current_db)
end
end