1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- RSpec.describe 'ObjectManager Attributes', type: :request do
- let(:admin) do
- create(:admin)
- end
- describe 'request handling' do
- it 'does add new ticket text object' do
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: {}, as: :json
- # token based on headers
- params = {
- name: 'test1',
- object: 'Ticket',
- display: 'Test 1',
- active: true,
- data_type: 'input',
- data_option: {
- default: 'test',
- type: 'text',
- maxlength: 120
- },
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- },
- id: 'c-196'
- }
- post '/api/v1/object_manager_attributes', params: params, as: :json
- expect(response).to have_http_status(:created)
- expect(json_response).to be_truthy
- expect(json_response['data_option']['null']).to be_truthy
- expect(json_response['data_option']['null']).to be(true)
- expect(json_response['name']).to eq('test1')
- end
- it 'does add new ticket text object - no default' do
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: {}, as: :json
- # token based on headers
- params = {
- name: 'test2',
- object: 'Ticket',
- display: 'Test 2',
- active: true,
- data_type: 'input',
- data_option: {
- type: 'text',
- maxlength: 120
- },
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- },
- id: 'c-196'
- }
- post '/api/v1/object_manager_attributes', params: params, as: :json
- expect(response).to have_http_status(:created)
- expect(json_response).to be_truthy
- expect(json_response['data_option']['null']).to be_truthy
- expect(json_response['data_option']['null']).to be(true)
- expect(json_response['name']).to eq('test2')
- end
- it 'does update ticket text object', db_strategy: :reset do
- # add a new object
- object = create(:object_manager_attribute_text)
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- authenticated_as(admin)
- post "/api/v1/object_manager_attributes/#{object.id}", params: {}, as: :json
- # parameters for updating
- params = {
- name: object.name,
- object: 'Ticket',
- display: 'Test 4',
- active: true,
- data_type: 'input',
- data_option: {
- default: 'test',
- type: 'text',
- maxlength: 120
- },
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- },
- id: 'c-196'
- }
- # update the object
- put "/api/v1/object_manager_attributes/#{object.id}", params: params, as: :json
- expect(response).to have_http_status(:ok)
- expect(json_response).to be_truthy
- expect(json_response['data_option']['null']).to be_truthy
- expect(json_response['name']).to eq(object.name)
- expect(json_response['display']).to eq('Test 4')
- end
- it 'does add new ticket boolean object' do
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: {}, as: :json
- # token based on headers
- params = {
- active: true,
- data_option: {
- options: {
- false: 'no',
- true: 'yes'
- }
- },
- data_type: 'boolean',
- display: 'Boolean 2',
- id: 'c-200',
- name: 'bool2',
- object: 'Ticket',
- screens: {
- create_middle: {
- 'ticket.agent' => {
- item_class: 'column',
- shown: true
- },
- 'ticket.customer' => {
- item_class: 'column',
- shown: true
- }
- },
- edit: {
- 'ticket.agent' => {
- shown: true
- },
- 'ticket.customer' => {
- shown: true
- }
- }
- }
- }
- post '/api/v1/object_manager_attributes', params: params, as: :json
- expect(response).to have_http_status(:created)
- expect(json_response).to be_truthy
- expect(json_response['data_option']['null']).to be_truthy
- expect(json_response['data_option']['null']).to be(true)
- expect(json_response['name']).to eq('bool2')
- end
- it 'does add new user select object' do
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: {}, as: :json
- # token based on headers
- params = {
- active: true,
- data_option: {
- options: {
- key1: 'foo'
- }
- },
- data_type: 'select',
- display: 'Test 5',
- id: 'c-204',
- name: 'test5',
- object: 'User',
- screens: {
- create: {
- 'admin.user' => {
- shown: true
- },
- 'ticket.agent' => {
- shown: true
- },
- 'ticket.customer' => {
- shown: true
- }
- },
- edit: {
- 'admin.user' => {
- shown: true
- },
- 'ticket.agent' => {
- shown: true
- }
- },
- view: {
- 'admin.user' => {
- shown: true
- },
- 'ticket.agent' => {
- shown: true
- },
- 'ticket.customer' => {
- shown: true
- }
- }
- }
- }
- post '/api/v1/object_manager_attributes', params: params, as: :json
- expect(response).to have_http_status(:created)
- expect(json_response).to be_truthy
- expect(json_response['data_option']['null']).to be_truthy
- expect(json_response['data_option']['null']).to be(true)
- expect(json_response['name']).to eq('test5')
- end
- it 'does update user select object', authenticated_as: -> { admin }, db_strategy: :reset do
- # add a new object
- object = create(:object_manager_attribute_text, object_name: 'User')
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- post "/api/v1/object_manager_attributes/#{object.id}", params: {}, as: :json
- # parameters for updating
- params = {
- active: true,
- data_option: {
- options: {
- key1: 'foo',
- key2: 'bar'
- }
- },
- data_type: 'select',
- display: 'Test 7',
- id: 'c-204',
- name: object.name,
- object: 'User',
- screens: {
- create: {
- 'admin.user' => {
- shown: true
- },
- 'ticket.agent' => {
- shown: true
- },
- 'ticket.customer' => {
- shown: true
- }
- },
- edit: {
- 'admin.user' => {
- shown: true
- },
- 'ticket.agent' => {
- shown: true
- }
- },
- view: {
- 'admin.user' => {
- shown: true
- },
- 'ticket.agent' => {
- shown: true
- },
- 'ticket.customer' => {
- shown: true
- }
- }
- }
- }
- # update the object
- put "/api/v1/object_manager_attributes/#{object.id}", params: params, as: :json
- expect(response).to have_http_status(:ok)
- expect(json_response).to be_truthy
- expect(json_response['data_option']['options']).to be_truthy
- expect(json_response['name']).to eq(object.name)
- expect(json_response['display']).to eq('Test 7')
- end
- it 'does converts string to boolean for default value for boolean data type with true (01)', db_strategy: :reset do
- params = {
- name: "customerdescription#{SecureRandom.uuid.tr('-', '_')}",
- object: 'Ticket',
- display: "custom description#{SecureRandom.uuid.tr('-', '_')}",
- active: true,
- data_type: 'boolean',
- data_option: {
- options: {
- true: '',
- false: '',
- },
- default: 'true',
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- }
- },
- id: 'c-201'
- }
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: params, as: :json
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- expect(response).to have_http_status(:created) # created
- expect(json_response).to be_truthy
- expect(json_response['data_option']['default']).to be_truthy
- expect(json_response['data_option']['default']).to be(true)
- expect(json_response['data_type']).to eq('boolean')
- end
- it 'does converts string to boolean for default value for boolean data type with false (02)', db_strategy: :reset do
- params = {
- name: "customerdescription_#{SecureRandom.uuid.tr('-', '_')}",
- object: 'Ticket',
- display: "custom description #{SecureRandom.uuid.tr('-', '_')}",
- active: true,
- data_type: 'boolean',
- data_option: {
- options: {
- true: '',
- false: '',
- },
- default: 'false',
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- }
- },
- }
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: params, as: :json
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- expect(response).to have_http_status(:created) # created
- expect(json_response).to be_truthy
- expect(json_response['data_option']['default']).to be_falsey
- expect(json_response['data_option']['default']).to be(false)
- expect(json_response['data_type']).to eq('boolean')
- end
- it 'does ticket attributes cannot be removed when it is referenced by an overview (03)', db_strategy: :reset do
- # 1. create a new ticket attribute and execute migration
- ObjectManager::Attribute.migration_execute
- params = {
- name: 'test_attribute_referenced_by_an_overview',
- object: 'Ticket',
- display: 'Test Attribute',
- active: true,
- data_type: 'input',
- data_option: {
- default: '',
- type: 'text',
- maxlength: 120,
- null: true,
- options: {},
- relation: ''
- },
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- },
- }
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: params, as: :json
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- # 2. create an overview that uses the attribute
- params = {
- name: 'test_overview',
- roles: Role.where(name: 'Agent').pluck(:name),
- condition: {
- 'ticket.state_id': {
- operator: 'is',
- value: Ticket::State.pluck(:id),
- },
- 'ticket.test_attribute_referenced_by_an_overview': {
- operator: 'contains',
- value: 'DUMMY'
- },
- },
- order: {
- by: 'created_at',
- direction: 'DESC',
- },
- view: {
- d: %w[title customer state created_at],
- s: %w[number title customer state created_at],
- m: %w[number title customer state created_at],
- view_mode_default: 's',
- },
- user_ids: [ '1' ],
- }
- if Overview.where('name like ?', '%test%').empty?
- post '/api/v1/overviews', params: params, as: :json
- expect(response).to have_http_status(:created)
- expect(Hash).to eq(json_response.class)
- expect(json_response['name']).to eq('test_overview')
- end
- # 3. attempt to delete the ticket attribute
- get '/api/v1/object_manager_attributes', as: :json
- expect(response).to have_http_status(:ok)
- target_attribute = json_response.select { |x| x['name'] == 'test_attribute_referenced_by_an_overview' && x['object'] == 'Ticket' }
- expect(target_attribute.size).to eq(1)
- target_id = target_attribute[0]['id']
- delete "/api/v1/object_manager_attributes/#{target_id}", as: :json
- expect(response).to have_http_status(:unprocessable_entity)
- expect(response.body).to include('Overview')
- expect(response.body).to include('test_overview')
- expect(response.body).to include('cannot be deleted!')
- end
- it 'does ticket attributes cannot be removed when it is referenced by a trigger (04)', db_strategy: :reset do
- # 1. create a new ticket attribute and execute migration
- ObjectManager::Attribute.migration_execute
- params = {
- name: 'test_attribute_referenced_by_a_trigger',
- object: 'Ticket',
- display: 'Test Attribute',
- active: true,
- data_type: 'input',
- data_option: {
- default: '',
- type: 'text',
- maxlength: 120,
- null: true,
- options: {},
- relation: ''
- },
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- },
- }
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: params, as: :json
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- # 2. create an trigger that uses the attribute
- params = {
- name: 'test_trigger',
- condition: {
- 'ticket.test_attribute_referenced_by_a_trigger': {
- operator: 'contains',
- value: 'DUMMY'
- }
- },
- perform: {
- 'ticket.state_id': {
- value: '2'
- }
- },
- active: true,
- id: 'c-3'
- }
- if Trigger.where('name like ?', '%test%').empty?
- post '/api/v1/triggers', params: params, as: :json
- expect(response).to have_http_status(:created)
- expect(Hash).to eq(json_response.class)
- expect(json_response['name']).to eq('test_trigger')
- end
- # 3. attempt to delete the ticket attribute
- get '/api/v1/object_manager_attributes', as: :json
- expect(response).to have_http_status(:ok)
- target_attribute = json_response.select { |x| x['name'] == 'test_attribute_referenced_by_a_trigger' && x['object'] == 'Ticket' }
- expect(target_attribute.size).to eq(1)
- target_id = target_attribute[0]['id']
- delete "/api/v1/object_manager_attributes/#{target_id}", as: :json
- expect(response).to have_http_status(:unprocessable_entity)
- expect(response.body).to include('Trigger')
- expect(response.body).to include('test_trigger')
- expect(response.body).to include('cannot be deleted!')
- end
- it 'does ticket attributes cannot be removed when it is referenced by a scheduler (05)', db_strategy: :reset do
- # 1. create a new ticket attribute and execute migration
- ObjectManager::Attribute.migration_execute
- params = {
- name: 'test_attribute_referenced_by_a_scheduler',
- object: 'Ticket',
- display: 'Test Attribute',
- active: true,
- data_type: 'input',
- data_option: {
- default: '',
- type: 'text',
- maxlength: 120,
- null: true,
- options: {},
- relation: ''
- },
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- },
- }
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: params, as: :json
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- # 2. create a scheduler that uses the attribute
- params = {
- name: 'test_scheduler',
- object: 'Ticket',
- timeplan: {
- days: {
- Mon: true,
- Tue: false,
- Wed: false,
- Thu: false,
- Fri: false,
- Sat: false,
- Sun: false
- },
- hours: {
- '0': true,
- '1': false,
- '2': false,
- '3': false,
- '4': false,
- '5': false,
- '6': false,
- '7': false,
- '8': false,
- '9': false,
- '10': false,
- '11': false,
- '12': false,
- '13': false,
- '14': false,
- '15': false,
- '16': false,
- '17': false,
- '18': false,
- '19': false,
- '20': false,
- '21': false,
- '22': false,
- '23': false
- },
- minutes: {
- '0': true,
- '10': false,
- '20': false,
- '30': false,
- '40': false,
- '50': false
- }
- },
- condition: {
- 'ticket.test_attribute_referenced_by_a_scheduler': {
- operator: 'contains',
- value: 'DUMMY'
- }
- },
- perform: {
- 'ticket.state_id': {
- value: '2'
- }
- },
- disable_notification: true,
- note: '',
- active: true,
- id: 'c-0'
- }
- if Job.where('name like ?', '%test%').empty?
- post '/api/v1/jobs', params: params, as: :json
- expect(response).to have_http_status(:created)
- expect(Hash).to eq(json_response.class)
- expect(json_response['name']).to eq('test_scheduler')
- end
- # 3. attempt to delete the ticket attribute
- get '/api/v1/object_manager_attributes', as: :json
- expect(response).to have_http_status(:ok)
- target_attribute = json_response.select { |x| x['name'] == 'test_attribute_referenced_by_a_scheduler' && x['object'] == 'Ticket' }
- expect(target_attribute.size).to eq(1)
- target_id = target_attribute[0]['id']
- delete "/api/v1/object_manager_attributes/#{target_id}", as: :json
- expect(response).to have_http_status(:unprocessable_entity)
- expect(response.body).to include('Job')
- expect(response.body).to include('test_scheduler')
- expect(response.body).to include('cannot be deleted!')
- end
- it 'does ticket attributes can be removed when it is referenced by an overview but by user object (06)', db_strategy: :reset do
- # 1. create a new ticket attribute and execute migration
- ObjectManager::Attribute.migration_execute
- params = {
- name: 'test_attribute_referenced_by_an_overview',
- object: 'Ticket',
- display: 'Test Attribute',
- active: true,
- data_type: 'input',
- data_option: {
- default: '',
- type: 'text',
- maxlength: 120,
- null: true,
- options: {},
- relation: ''
- },
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- },
- }
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: params, as: :json
- params = {
- name: 'test_attribute_referenced_by_an_overview',
- object: 'User',
- display: 'Test Attribute',
- active: true,
- data_type: 'input',
- data_option: {
- default: '',
- type: 'text',
- maxlength: 120,
- null: true,
- options: {},
- relation: ''
- },
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- },
- }
- post '/api/v1/object_manager_attributes', params: params, as: :json
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- # 2. create an overview that uses the attribute
- params = {
- name: 'test_overview',
- roles: Role.where(name: 'Agent').pluck(:name),
- condition: {
- 'ticket.state_id': {
- operator: 'is',
- value: Ticket::State.pluck(:id),
- },
- 'ticket.test_attribute_referenced_by_an_overview': {
- operator: 'contains',
- value: 'DUMMY'
- },
- },
- order: {
- by: 'created_at',
- direction: 'DESC',
- },
- view: {
- d: %w[title customer state created_at],
- s: %w[number title customer state created_at],
- m: %w[number title customer state created_at],
- view_mode_default: 's',
- },
- user_ids: [ '1' ],
- }
- if Overview.where('name like ?', '%test%').empty?
- post '/api/v1/overviews', params: params, as: :json
- expect(response).to have_http_status(:created)
- expect(Hash).to eq(json_response.class)
- expect(json_response['name']).to eq('test_overview')
- end
- # 3. attempt to delete the ticket attribute
- get '/api/v1/object_manager_attributes', as: :json
- expect(response).to have_http_status(:ok)
- all_json_response = json_response
- target_attribute = all_json_response.select { |x| x['name'] == 'test_attribute_referenced_by_an_overview' && x['object'] == 'User' }
- expect(target_attribute.size).to eq(1)
- target_id = target_attribute[0]['id']
- delete "/api/v1/object_manager_attributes/#{target_id}", as: :json
- expect(response).to have_http_status(:ok)
- target_attribute = all_json_response.select { |x| x['name'] == 'test_attribute_referenced_by_an_overview' && x['object'] == 'Ticket' }
- expect(target_attribute.size).to eq(1)
- target_id = target_attribute[0]['id']
- delete "/api/v1/object_manager_attributes/#{target_id}", as: :json
- expect(response).to have_http_status(:unprocessable_entity)
- expect(response.body).to include('Overview')
- expect(response.body).to include('test_overview')
- expect(response.body).to include('cannot be deleted!')
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- end
- it 'does verify if attribute type can not be changed (07)', db_strategy: :reset do
- params = {
- name: "customerdescription_#{SecureRandom.uuid.tr('-', '_')}",
- object: 'Ticket',
- display: "custom description #{SecureRandom.uuid.tr('-', '_')}",
- active: true,
- data_type: 'boolean',
- data_option: {
- options: {
- true: '',
- false: '',
- },
- default: 'false',
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- }
- }
- },
- }
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: params, as: :json
- expect(response).to have_http_status(:created) # created
- expect(json_response).to be_truthy
- expect(json_response['data_option']['default']).to be_falsey
- expect(json_response['data_option']['default']).to be(false)
- expect(json_response['data_type']).to eq('boolean')
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- params['data_type'] = 'input'
- params['data_option'] = {
- default: 'test',
- type: 'text',
- maxlength: 120
- }
- put "/api/v1/object_manager_attributes/#{json_response['id']}", params: params, as: :json
- expect(response).to have_http_status(:unprocessable_entity)
- expect(json_response).to be_truthy
- expect(json_response['error']).to be_truthy
- end
- it 'does verify if attribute type can be changed (08)', db_strategy: :reset do
- params = {
- name: "customerdescription_#{SecureRandom.uuid.tr('-', '_')}",
- object: 'Ticket',
- display: "custom description #{SecureRandom.uuid.tr('-', '_')}",
- active: true,
- data_type: 'input',
- data_option: {
- default: 'test',
- type: 'text',
- maxlength: 120,
- },
- screens: {
- create_middle: {
- 'ticket.customer': {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent': {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer': {
- shown: true
- },
- 'ticket.agent': {
- shown: true
- }
- },
- },
- }
- authenticated_as(admin)
- post '/api/v1/object_manager_attributes', params: params, as: :json
- expect(response).to have_http_status(:created) # created
- expect(json_response).to be_truthy
- expect(json_response['data_option']['default']).to eq('test')
- expect(json_response['data_type']).to eq('input')
- migration = ObjectManager::Attribute.migration_execute
- expect(migration).to be(true)
- params['data_type'] = 'select'
- params['data_option'] = {
- default: 'fuu',
- options: {
- key1: 'foo',
- key2: 'fuu',
- }
- }
- put "/api/v1/object_manager_attributes/#{json_response['id']}", params: params, as: :json
- expect(response).to have_http_status(:ok)
- expect(json_response).to be_truthy
- expect(json_response['data_option']['default']).to eq('test')
- expect(json_response['data_option_new']['default']).to eq('fuu')
- expect(json_response['data_type']).to eq('select')
- end
- it "doesn't let to update item that doesn't exist", authenticated_as: -> { admin } do
- params = {
- active: true,
- data_option: {
- type: 'text',
- maxlength: 200
- },
- data_type: 'input',
- display: 'Test 7',
- name: 'attribute_that_doesnt_exist',
- object: 'User',
- }
- # update the object
- put '/api/v1/object_manager_attributes/abc', params: params, as: :json
- expect(response).to have_http_status(:unprocessable_entity)
- end
- context 'position handling', authenticated_as: -> { admin } do
- let(:base_params) do
- {
- name: "customerdescription_#{SecureRandom.uuid.tr('-', '_')}",
- object: 'Ticket',
- display: "custom description #{SecureRandom.uuid.tr('-', '_')}",
- active: true,
- data_type: 'input',
- data_option: {
- default: 'test',
- type: 'text',
- maxlength: 120,
- },
- }
- end
- let(:new_attribute_id) { json_response['id'] }
- let(:new_attribute_object) { ObjectManager::Attribute.find new_attribute_id }
- before { post '/api/v1/object_manager_attributes', params: params, as: :json }
- context 'when creating a new attribute' do
- let(:params) { base_params }
- context 'with no position attribute provided' do
- let(:maximum_position) do
- ObjectManager::Attribute
- .for_object(params[:object])
- .maximum(:position)
- end
- it 'defaults to the maximum available position' do
- expect(new_attribute_object.position).to eq maximum_position
- end
- end
- context 'with a position attribute given' do
- let(:position) { 50 }
- let(:params) { base_params.merge(position: position) }
- it 'defaults to given position' do
- expect(new_attribute_object.position).to eq position
- end
- end
- end
- context 'when updating an existing attribute' do
- let(:alternative_position) { 123 }
- let(:alternative_display) { 'another description' }
- let(:params) { base_params }
- let(:alternative_params) { base_params.merge(display: alternative_display) }
- before do
- new_attribute_object.update! position: alternative_position
- put "/api/v1/object_manager_attributes/#{new_attribute_id}", params: alternative_params, as: :json
- new_attribute_object.reload
- end
- # confirm that test build up was correct
- it 'request succeeds' do
- expect(new_attribute_object.display).to eq alternative_display
- end
- # https://github.com/zammad/zammad/issues/3044
- it 'position did not reset' do
- expect(new_attribute_object.position).to eq alternative_position
- end
- end
- end
- end
- end
|