2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-07 20:57:01 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
require_dependency 'db_helper'
|
|
|
|
|
|
|
|
RSpec.describe DbHelper do
|
|
|
|
describe '.remap' do
|
|
|
|
it 'should remap columns properly' do
|
|
|
|
post = Fabricate(:post, cooked: "this is a specialcode that I included")
|
|
|
|
post_attributes = post.reload.attributes
|
|
|
|
post2 = Fabricate(:post, image_url: "/testing/specialcode")
|
|
|
|
post2_attributes = post2.reload.attributes
|
|
|
|
|
|
|
|
badge = Fabricate(:badge, query: "specialcode")
|
|
|
|
badge_attributes = badge.reload.attributes
|
|
|
|
|
|
|
|
DbHelper.remap("specialcode", "codespecial")
|
|
|
|
|
|
|
|
post.reload
|
|
|
|
|
|
|
|
expect(post.cooked).to include("codespecial")
|
|
|
|
|
|
|
|
post2.reload
|
|
|
|
|
|
|
|
expect(post2.image_url).to eq("/testing/codespecial")
|
|
|
|
|
|
|
|
expect(post2_attributes.except("image_url"))
|
|
|
|
.to eq(post2.attributes.except("image_url"))
|
|
|
|
|
|
|
|
badge.reload
|
|
|
|
|
|
|
|
expect(badge.query).to eq("codespecial")
|
|
|
|
|
|
|
|
expect(badge_attributes.except("query"))
|
|
|
|
.to eq(badge.attributes.except("query"))
|
|
|
|
end
|
2018-11-07 23:28:50 -05:00
|
|
|
|
|
|
|
it 'allows tables to be excluded from scanning' do
|
|
|
|
post = Fabricate(:post, cooked: "test")
|
|
|
|
|
2018-12-26 11:34:49 -05:00
|
|
|
DbHelper.remap("test", "something else", excluded_tables: %w{posts})
|
2018-11-07 23:28:50 -05:00
|
|
|
|
|
|
|
expect(post.reload.cooked).to eq('test')
|
|
|
|
end
|
2018-11-07 20:57:01 -05:00
|
|
|
end
|
2019-03-22 04:21:43 -04:00
|
|
|
|
|
|
|
describe ".regexp_replace" do
|
|
|
|
it "should remap columns correctly" do
|
|
|
|
post = Fabricate(:post, raw: "this is a [img]test[/img] post")
|
|
|
|
|
|
|
|
DbHelper.regexp_replace("\\[img\\]test\\[/img\\]", "[img]something[/img]")
|
|
|
|
|
|
|
|
expect(post.reload.raw).to include("[img]something[/img]")
|
|
|
|
end
|
|
|
|
end
|
2018-11-07 20:57:01 -05:00
|
|
|
end
|