problem_destroy_spec.rb 2.58 KB
describe ProblemDestroy do
  let(:problem_destroy) do
    ProblemDestroy.new(problem)
  end

  context "in unit way" do
    let(:problem) do
      problem = Problem.new
      allow(problem).to receive(:errs).and_return(double(:criteria, only: [err_1, err_2]))
      allow(problem).to receive(:comments).and_return(double(:criteria, only: [comment_1, comment_2]))
      allow(problem).to receive(:delete)
      problem
    end
    let(:err_1) { Err.new }
    let(:err_2) { Err.new }

    let(:comment_1) { Comment.new }
    let(:comment_2) { Comment.new }

    describe "#initialize" do
      it 'take a problem like args' do
        expect(problem_destroy.problem).to eq problem
      end
    end

    describe "#execute" do
      it 'destroy the problem himself' do
        expect(problem).to receive(:delete).and_return(true)
        problem_destroy.execute
      end

      it 'delete all errs associate' do
        expect(Err).to receive(:delete_all).with(_id: { '$in' => [err_1.id, err_2.id] })
        problem_destroy.execute
      end

      it 'delete all comments associate' do
        expect(Comment).to receive(:delete_all).with(_id: { '$in' => [comment_1.id, comment_2.id] })
        problem_destroy.execute
      end

      it 'delete all notice of associate to this errs' do
        expect(Notice).to receive(:delete_all).with(err_id: { '$in' => [err_1.id, err_2.id] })
        problem_destroy.execute
      end
    end
  end

  context "in integration way" do
    let!(:problem) { Fabricate(:problem) }
    let!(:comment_1) { Fabricate(:comment, err: problem) }
    let!(:comment_2) { Fabricate(:comment, err: problem) }
    let!(:err_1) { Fabricate(:err, problem: problem) }
    let!(:err_2) { Fabricate(:err, problem: problem) }
    let!(:notice_1_1) { Fabricate(:notice, err: err_1) }
    let!(:notice_1_2) { Fabricate(:notice, err: err_1) }
    let!(:notice_2_1) { Fabricate(:notice, err: err_2) }
    let!(:notice_2_2) { Fabricate(:notice, err: err_2) }

    it 'should all destroy' do
      problem_destroy.execute
      expect(Problem.where(_id: problem.id).entries).to be_empty
      expect(Err.where(_id: err_1.id).entries).to be_empty
      expect(Err.where(_id: err_2.id).entries).to be_empty
      expect(Comment.where(_id: comment_1.id).entries).to be_empty
      expect(Comment.where(_id: comment_2.id).entries).to be_empty
      expect(Notice.where(_id: notice_1_1.id).entries).to be_empty
      expect(Notice.where(_id: notice_1_2.id).entries).to be_empty
      expect(Notice.where(_id: notice_2_1.id).entries).to be_empty
      expect(Notice.where(_id: notice_2_2.id).entries).to be_empty
    end
  end
end