require 'test_helper' class CustomFieldTest < ActiveSupport::TestCase def setup @custom_field = custom_fields(:volume) end should validate_presence_of(:name) should validate_length_of(:name).is_at_most(Constants::NAME_MAX_LENGTH) should validate_exclusion_of(:name) .in_array(['Assigned', 'Sample name', 'Sample type', 'Sample group', 'Added on', 'Added by']) test "should validate with correct data" do assert @custom_field.valid? end test "should not validate with non existent user" do @custom_field.user_id = 11231231 assert_not @custom_field.valid? @custom_field.user = nil assert_not @custom_field.valid? end test "should not validate with non existent organization" do @custom_field.organization_id = 1231231 assert_not @custom_field.valid? @custom_field.organization = nil assert_not @custom_field.valid? end end