Skip to content

Commit

Permalink
Create EVSSClaim even when using lighthouse
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonhoc committed Apr 15, 2024
1 parent 209b1d7 commit d9e288e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 20 additions & 2 deletions modules/mobile/app/services/mobile/v0/lighthouse_claims/proxy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,14 @@ def request_decision(id)
claims_service.submit5103(@user, id)
end

# Temporary: We're adding the claims to the EVSSClaim table until decision letters switch over to lighthouse
def get_all_claims
lambda {
begin
claims_list = claims_service.get_claims
claims_list = claims_service.get_claims['data']
claims_list.each { |claim| create_or_update_claim(claim) }
{
list: claims_list['data'],
list: claims_list,
errors: nil
}
rescue => e
Expand All @@ -33,6 +35,22 @@ def get_all_claims
def claims_service
@claims_service ||= BenefitsClaims::Service.new(@user.icn)
end

def claims_scope
@claims_scope ||= EVSSClaim.for_user(@user)
end

def create_or_update_claim(raw_claim)
claim = claims_scope.where(evss_id: raw_claim['id']).first
if claim.blank?
claim = EVSSClaim.new(user_uuid: @user.uuid,
user_account: @user.user_account,
evss_id: raw_claim['id'],
data: {})
end
claim.update(list_data: raw_claim)
claim
end
end
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@
it 'and a result that matches our schema is successfully returned with the 200 status ' do
VCR.use_cassette(good_claims_response_vcr_path) do
VCR.use_cassette('mobile/appeals/appeals') do
original_evss_claims_count = EVSSClaim.count
get('/mobile/v0/claims-and-appeals-overview', headers: sis_headers, params:)
expect(EVSSClaim.count).not_to eq(original_evss_claims_count)
expect(response).to have_http_status(:ok)
# check a couple entries to make sure the data is correct
parsed_response_contents = response.parsed_body['data']
Expand Down

0 comments on commit d9e288e

Please sign in to comment.