1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'PUT /api/companies/company_id', type: :request do
let(:user) { create(:user_account, role: 'master') }
let(:company) { create(:company) }
let(:new_company) { build(:company) }
let(:logo) { fixture_file_upload('tres castillos-2.png', 'image/png') }
let(:token) { jwt(user) }
it_behaves_like 'a PUT request' do
let(:headers) { { 'CONTENT_TYPE' => 'application/json', 'Authorization' => "Bearer #{token['token']}" } }
let(:route) { "/api/companies/#{company.short_name}" }
let(:wrong_route) { "/api/companies/#{SecureRandom.hex(8)}" }
let(:expected_error_messages) do
["Name can't be blank", "Short name can't be blank", "Country can't be blank"]
end
let(:desired_error_status) { 422 }
let(:expected_text) { [new_company.name, new_company.short_name, new_company.country, 'logo', 'http'] }
let(:params) do
{ name: new_company.name, short_name: new_company.short_name, country: new_company.country,
logo: fixture_file_upload('tres castillos-2.png', 'image/png') }
end
let(:wrong_params) { JSON.generate({ name: '', short_name: '', country: '' }) }
end
end
|