|
|
|
@ -137,4 +137,49 @@ RSpec.describe CaseLogsController, type: :request do
|
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
# We don't really have any meaningful distinction between PUT and PATCH here since you can update some or all |
|
|
|
|
# fields in both cases, and both route to #Update. Rails generally recommends PATCH as it more closely matches |
|
|
|
|
# what actually happens to an ActiveRecord object and what we're doing here, but either is allowed. |
|
|
|
|
describe "PUT" do |
|
|
|
|
let(:case_log) do |
|
|
|
|
FactoryBot.create(:case_log, :in_progress, tenant_code: "Old Value", property_postcode: "Old Value") |
|
|
|
|
end |
|
|
|
|
let(:params) do |
|
|
|
|
{ tenant_code: "New Value" } |
|
|
|
|
end |
|
|
|
|
let(:id) { case_log.id } |
|
|
|
|
|
|
|
|
|
before do |
|
|
|
|
put "/case_logs/#{id}", headers: headers, params: params.to_json |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "returns http success" do |
|
|
|
|
expect(response).to have_http_status(:success) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "updates the case log with the given fields and keeps original values where none are passed" do |
|
|
|
|
case_log.reload |
|
|
|
|
expect(case_log.tenant_code).to eq("New Value") |
|
|
|
|
expect(case_log.property_postcode).to eq("Old Value") |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
context "invalid case log id" do |
|
|
|
|
let(:id) { (CaseLog.order(:id).last&.id || 0) + 1 } |
|
|
|
|
|
|
|
|
|
it "returns 404" do |
|
|
|
|
expect(response).to have_http_status(:not_found) |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
context "request with invalid credentials" do |
|
|
|
|
let(:basic_credentials) do |
|
|
|
|
ActionController::HttpAuthentication::Basic.encode_credentials(api_username, "Oops") |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "returns 401" do |
|
|
|
|
expect(response).to have_http_status(:unauthorized) |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|