aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/reply.rb
blob: f340b6fb1478c2e7621535f5629dbd5406452d10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

require "models/topic"

class Reply < Topic
  validate :errors_on_empty_content
  validate :title_is_wrong_create,  on: :create

  validate :check_empty_title
  validate :check_content_mismatch, on: :create
  validate :check_wrong_update,     on: :update

  def check_empty_title
    errors.add(:title, "is Empty") unless title && title.size > 0
  end

  def errors_on_empty_content
    errors.add(:content, "is Empty") unless content && content.size > 0
  end

  def check_content_mismatch
    if title && content && content == "Mismatch"
      errors.add(:title, "is Content Mismatch")
    end
  end

  def title_is_wrong_create
    errors.add(:title, "is Wrong Create") if title && title == "Wrong Create"
  end

  def check_wrong_update
    errors.add(:title, "is Wrong Update") if title && title == "Wrong Update"
  end
end