563d2d1e3d
Bumps [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) from 2.8.0 to 2.9.0. - [Release notes](https://github.com/rubocop/rubocop-rspec/releases) - [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop-rspec/compare/v2.8.0...v2.9.0)
84 lines
2.6 KiB
Ruby
84 lines
2.6 KiB
Ruby
# Copyright (C) 2012-2022 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,
|
|
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 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_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 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_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
|