2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2016-12-19 08:59:54 +00:00
|
|
|
require 'rails_helper'
|
2018-12-14 01:59:19 +00:00
|
|
|
require 'lib/import/zendesk/object_attribute/base_examples'
|
2016-12-19 08:59:54 +00:00
|
|
|
|
|
|
|
# required due to some of rails autoloading issues
|
|
|
|
require 'import/zendesk/object_attribute/regexp'
|
|
|
|
|
|
|
|
RSpec.describe Import::Zendesk::ObjectAttribute::Regexp do
|
2018-12-14 01:59:19 +00:00
|
|
|
it_behaves_like Import::Zendesk::ObjectAttribute::Base
|
2016-12-19 08:59:54 +00:00
|
|
|
|
|
|
|
it 'imports input object attribute from regexp object field' do
|
|
|
|
|
|
|
|
regex = '.+?'
|
|
|
|
attribute = double(
|
|
|
|
title: 'Example attribute',
|
|
|
|
description: 'Example attribute description',
|
|
|
|
removable: false,
|
|
|
|
active: true,
|
|
|
|
position: 12,
|
|
|
|
visible_in_portal: true,
|
|
|
|
required_in_portal: true,
|
|
|
|
required: true,
|
|
|
|
type: 'regexp',
|
|
|
|
regexp_for_validation: regex
|
|
|
|
)
|
|
|
|
|
|
|
|
expected_structure = {
|
2018-12-19 17:31:51 +00:00
|
|
|
object: 'Ticket',
|
|
|
|
name: 'example_field',
|
|
|
|
display: 'Example attribute',
|
|
|
|
data_type: 'input',
|
|
|
|
data_option: {
|
2016-12-19 08:59:54 +00:00
|
|
|
null: false,
|
|
|
|
note: 'Example attribute description',
|
|
|
|
type: 'text',
|
|
|
|
maxlength: 255,
|
|
|
|
regex: regex,
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
editable: true,
|
|
|
|
active: true,
|
|
|
|
screens: {
|
2016-12-19 08:59:54 +00:00
|
|
|
edit: {
|
|
|
|
Customer: {
|
|
|
|
shown: true,
|
2018-12-19 17:31:51 +00:00
|
|
|
null: false
|
2016-12-19 08:59:54 +00:00
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
view: {
|
2016-12-19 08:59:54 +00:00
|
|
|
'-all-' => {
|
|
|
|
shown: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
position: 12,
|
|
|
|
created_by_id: 1,
|
|
|
|
updated_by_id: 1
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(ObjectManager::Attribute).to receive(:add).with(expected_structure)
|
|
|
|
expect(ObjectManager::Attribute).to receive(:migration_execute)
|
|
|
|
|
|
|
|
described_class.new('Ticket', 'example_field', attribute)
|
|
|
|
end
|
|
|
|
end
|