require_relative '../spec_helper' describe 'admin/configs', type: :feature do let(:name) { Faker::Lorem.words(rand(2..4)).join(' ') } let(:email) { Faker::Internet.email } describe type: :feature, js: true do let(:admin) { create :admin } before { login admin } it 'has initial value' do FoodsoftConfig[:name] = name visit admin_config_path within('form.config') do expect(find_field('config_name').value).to eq name end end it 'can modify a value' do visit admin_config_path fill_in 'config_name', with: name within('form.config') do find('input[type="submit"]').click expect(find_field('config_name').value).to eq name end expect(FoodsoftConfig[:name]).to eq name end it 'keeps config the same without changes' do orig_values = get_full_config visit admin_config_path within('form.config') do find('input[type="submit"]').click expect(find_field('config_name').value).to eq FoodsoftConfig[:name] end expect(get_full_config).to eq orig_values end it 'can modify a nested value' do visit admin_config_path fill_in 'config_contact_email', with: email within('form.config') do find('input[type="submit"]').click expect(find_field('config_contact_email').value).to eq email end expect(FoodsoftConfig[:contact][:email]).to eq email end def get_full_config cfg = FoodsoftConfig.to_hash.deep_dup cfg.each {|k,v| v.reject! {|k,v| v.blank?} if v.is_a? Hash} cfg.reject! {|k,v| v.blank?} cfg end end end