# frozen_string_literal: true

require 'rails_helper'
require 'highline/import'
require 'highline/simulate'

RSpec.describe "Post rake tasks" do
  fab!(:post) { Fabricate(:post, raw: 'The quick brown fox jumps over the lazy dog') }
  fab!(: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

    it 'should skip all the posts with "ignored" custom field' do
      post = Fabricate(:post, raw: "A sample post <img src='#{url}'>")
      post.custom_fields[Post::MISSING_UPLOADS_IGNORED] = true
      post.save_custom_fields
      upload.destroy!

      Rake::Task['posts:missing_uploads'].invoke

      post.reload
      expect(post.custom_fields[Post::MISSING_UPLOADS]).to be_nil
    end
  end
end