12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- 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,
- client_id: '123',
- 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_kind_of(Hash)
- expect(json_response['client_id']).to eq('123')
- expect(json_response['user_id']).to eq(agent.id)
- expect(json_response['params']['ticket_id']).to eq(5)
- expect(json_response['params']['shown']).to eq(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_kind_of(Hash)
- expect(json_response['client_id']).to eq('123')
- expect(json_response['user_id']).to eq(agent.id)
- expect(json_response['params']['ticket_id']).to eq(5)
- expect(json_response['params']['shown']).to eq(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_kind_of(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_kind_of(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_kind_of(Hash)
- expect(json_response).to be_blank
- end
- end
- end
|