2023-02-09 03:21:39 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
RSpec.describe FormTemplate, type: :model do
|
|
|
|
it "can't have duplicate names" do
|
2023-08-30 05:41:33 +08:00
|
|
|
Fabricate(:form_template, name: "Bug Report", template: "- type: input\n id: name")
|
|
|
|
t = Fabricate.build(:form_template, name: "Bug Report", template: "- type: input\n id: name")
|
2023-02-09 03:21:39 +08:00
|
|
|
expect(t.save).to eq(false)
|
2023-08-30 05:41:33 +08:00
|
|
|
t = Fabricate.build(:form_template, name: "Bug Report", template: "- type: input\n id: name")
|
2023-02-09 03:21:39 +08:00
|
|
|
expect(t.save).to eq(false)
|
2023-08-30 05:41:33 +08:00
|
|
|
expect(t.errors.full_messages.first).to include(I18n.t("errors.messages.taken"))
|
2023-02-09 03:21:39 +08:00
|
|
|
expect(described_class.count).to eq(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can't have an invalid yaml template" do
|
2023-03-02 03:07:13 +08:00
|
|
|
template = "- type: checkbox\nattributes; bad"
|
2023-02-09 03:21:39 +08:00
|
|
|
t = Fabricate.build(:form_template, name: "Feature Request", template: template)
|
|
|
|
expect(t.save).to eq(false)
|
2023-08-30 05:41:33 +08:00
|
|
|
expect(t.errors.full_messages.first).to include(I18n.t("form_templates.errors.invalid_yaml"))
|
2023-02-09 03:21:39 +08:00
|
|
|
end
|
2023-03-02 03:07:13 +08:00
|
|
|
|
|
|
|
it "must have a supported type" do
|
2023-08-30 05:41:33 +08:00
|
|
|
template = "- type: fancy\n id: something"
|
2023-03-02 03:07:13 +08:00
|
|
|
t = Fabricate.build(:form_template, name: "Fancy Template", template: template)
|
|
|
|
expect(t.save).to eq(false)
|
2023-08-30 05:41:33 +08:00
|
|
|
expect(t.errors.full_messages.first).to include(
|
|
|
|
I18n.t(
|
|
|
|
"form_templates.errors.invalid_type",
|
|
|
|
type: "fancy",
|
|
|
|
valid_types: FormTemplateYamlValidator::ALLOWED_TYPES.join(", "),
|
|
|
|
),
|
|
|
|
)
|
2023-03-02 03:07:13 +08:00
|
|
|
end
|
|
|
|
|
2023-06-14 04:02:21 +08:00
|
|
|
it "must have a type property" do
|
2023-08-30 05:41:33 +08:00
|
|
|
template = "- hello: world\n id: something"
|
2023-03-02 03:07:13 +08:00
|
|
|
t = Fabricate.build(:form_template, name: "Basic Template", template: template)
|
|
|
|
expect(t.save).to eq(false)
|
2023-08-30 05:41:33 +08:00
|
|
|
expect(t.errors.full_messages.first).to include(I18n.t("form_templates.errors.missing_type"))
|
|
|
|
end
|
|
|
|
|
|
|
|
it "must have a id property" do
|
|
|
|
template = "- type: checkbox"
|
|
|
|
t = Fabricate.build(:form_template, name: "Basic Template", template: template)
|
|
|
|
expect(t.save).to eq(false)
|
|
|
|
expect(t.errors.full_messages.first).to include(I18n.t("form_templates.errors.missing_id"))
|
2023-03-02 03:07:13 +08:00
|
|
|
end
|
2023-02-09 03:21:39 +08:00
|
|
|
end
|