discourse/spec/tasks/posts_spec.rb
Sam Saffron 4ea21fa2d0 DEV: use #frozen_string_literal: true on all spec
This change both speeds up specs (less strings to allocate) and helps catch
cases where methods in Discourse are mutating inputs.

Overall we will be migrating everything to use #frozen_string_literal: true
it will take a while, but this is the first and safest move in this direction
2019-04-30 10:27:42 +10:00

75 lines
2.0 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
require 'highline/import'
require 'highline/simulate'
RSpec.describe "Post rake tasks" do
let!(:post) { Fabricate(:post, raw: 'The quick brown fox jumps over the lazy dog') }
let!(:tricky_post) { Fabricate(:post, raw: 'Today ^Today') }
before do
Rake::Task.clear
Discourse::Application.load_tasks
STDOUT.stubs(:write)
end
describe 'remap' do
it 'should remap posts' do
HighLine::Simulate.with('y') do
Rake::Task['posts:remap'].invoke("brown", "red")
end
post.reload
expect(post.raw).to eq('The quick red fox jumps over the lazy dog')
end
context 'when type == string' do
it 'remaps input as string' do
HighLine::Simulate.with('y') do
Rake::Task['posts:remap'].invoke('^Today', 'Yesterday', 'string')
end
expect(tricky_post.reload.raw).to eq('Today Yesterday')
end
end
context 'when type == regex' do
it 'remaps input as regex' do
HighLine::Simulate.with('y') do
Rake::Task['posts:remap'].invoke('^Today', 'Yesterday', 'regex')
end
expect(tricky_post.reload.raw).to eq('Yesterday ^Today')
end
end
end
describe 'rebake_match' do
it 'rebakes matched posts' do
post.update(cooked: '')
HighLine::Simulate.with('y') do
Rake::Task['posts:rebake_match'].invoke('brown')
end
expect(post.reload.cooked).to eq('<p>The quick brown fox jumps over the lazy dog</p>')
end
end
describe 'missing_uploads' do
let(:url) { "/uploads/#{RailsMultisite::ConnectionManagement.current_db}/original/1X/d1c2d40ab994e8410c.png" }
let(:upload) { Fabricate(:upload, url: url) }
it 'should create post custom field for missing upload' do
post = Fabricate(:post, raw: "A sample post <img src='#{url}'>")
upload.destroy!
Rake::Task['posts:missing_uploads'].invoke
post.reload
expect(post.custom_fields[Post::MISSING_UPLOADS]).to eq([url])
end
end
end