123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- RSpec.describe 'Taskbars', type: :request do
- let(:agent) do
- create(:agent)
- end
- let(:customer) do
- create(:customer)
- end
- describe 'request handling' do
- it 'does task ownership' do
- params = {
- user_id: customer.id,
- key: 'Ticket-5',
- callback: 'TicketZoom',
- state: {
- ticket: {
- owner_id: agent.id,
- },
- article: {},
- },
- params: {
- ticket_id: 5,
- shown: true,
- },
- prio: 3,
- notify: false,
- active: false,
- }
- authenticated_as(agent)
- post '/api/v1/taskbar', params: params, as: :json
- expect(response).to have_http_status(:created)
- expect(json_response).to be_a(Hash)
- expect(json_response['user_id']).to eq(agent.id)
- expect(json_response['params']['ticket_id']).to eq(5)
- expect(json_response['params']['shown']).to be(true)
- taskbar_id = json_response['id']
- params[:user_id] = customer.id
- params[:params] = {
- ticket_id: 5,
- shown: false,
- }
- put "/api/v1/taskbar/#{taskbar_id}", params: params, as: :json
- expect(response).to have_http_status(:ok)
- expect(json_response).to be_a(Hash)
- expect(json_response['user_id']).to eq(agent.id)
- expect(json_response['params']['ticket_id']).to eq(5)
- expect(json_response['params']['shown']).to be(false)
- # try to access with other user
- params = {
- active: true,
- }
- authenticated_as(customer)
- put "/api/v1/taskbar/#{taskbar_id}", params: params, as: :json
- expect(response).to have_http_status(:unprocessable_entity)
- expect(json_response).to be_a(Hash)
- expect(json_response['error']).to eq('Not allowed to access this task.')
- delete "/api/v1/taskbar/#{taskbar_id}", params: {}, as: :json
- expect(response).to have_http_status(:unprocessable_entity)
- expect(json_response).to be_a(Hash)
- expect(json_response['error']).to eq('Not allowed to access this task.')
- # delete with correct user
- authenticated_as(agent)
- delete "/api/v1/taskbar/#{taskbar_id}", params: {}, as: :json
- expect(response).to have_http_status(:ok)
- expect(json_response).to be_a(Hash)
- expect(json_response).to be_blank
- end
- end
- end
|