# 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) { { '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(: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) { { name: '', short_name: '', country: '' } } end end