Module: GdsApi::TestHelpers::NeedApi

Includes:
CommonResponses
Defined in:
lib/gds_api/test_helpers/need_api.rb

Constant Summary collapse

NEED_API_ENDPOINT =
Plek.current.find('need-api')

Instance Method Summary collapse

Methods included from CommonResponses

#acronymize_slug, #plural_response_base, #response_base, #titleize_slug

Instance Method Details

#need_api_has_content_id_for_need(need) ⇒ Object



56
57
58
59
60
61
# File 'lib/gds_api/test_helpers/need_api.rb', line 56

def need_api_has_content_id_for_need(need)
  need_id = need["id"] || need[:id]

  url = NEED_API_ENDPOINT + "/needs/#{need_id}/content_id"
  stub_request(:get, url).to_return(body: need[:content_id])
end

#need_api_has_need(need) ⇒ Object

Raises:

  • (ArgumentError)


48
49
50
51
52
53
54
# File 'lib/gds_api/test_helpers/need_api.rb', line 48

def need_api_has_need(need)
  need_id = need["id"] || need[:id]
  raise ArgumentError, "Test need is missing an ID" unless need_id

  url = NEED_API_ENDPOINT + "/needs/#{need_id}"
  stub_request(:get, url).to_return(status: 200, body: need.to_json, headers: {})
end

#need_api_has_need_ids(needs) ⇒ Object



38
39
40
41
42
43
44
45
46
# File 'lib/gds_api/test_helpers/need_api.rb', line 38

def need_api_has_need_ids(needs)
  ids = needs.map { |need| (need["id"] || need[:id]).to_i }.sort.join(',')
  url = NEED_API_ENDPOINT + "/needs?ids=#{ids}"

  body = response_base.merge(
    "results" => needs
  )
  stub_request(:get, url).to_return(status: 200, body: body.to_json, headers: {})
end

#need_api_has_needs(needs) ⇒ Object



29
30
31
32
33
34
35
36
# File 'lib/gds_api/test_helpers/need_api.rb', line 29

def need_api_has_needs(needs)
  url = NEED_API_ENDPOINT + "/needs"

  body = response_base.merge(
    "results" => needs
  )
  stub_request(:get, url).to_return(status: 200, body: body.to_json, headers: {})
end

#need_api_has_needs_for_organisation(organisation, needs) ⇒ Object



11
12
13
14
15
16
17
18
# File 'lib/gds_api/test_helpers/need_api.rb', line 11

def need_api_has_needs_for_organisation(organisation, needs)
  url = NEED_API_ENDPOINT + "/needs?organisation_id=#{organisation}"

  body = response_base.merge(
    "results" => needs
  )
  stub_request(:get, url).to_return(status: 200, body: body.to_json, headers: {})
end

#need_api_has_needs_for_search(search_term, needs) ⇒ Object



20
21
22
23
24
25
26
27
# File 'lib/gds_api/test_helpers/need_api.rb', line 20

def need_api_has_needs_for_search(search_term, needs)
  url = NEED_API_ENDPOINT + "/needs?q=#{search_term}"

  body = response_base.merge(
    "results" => needs
  )
  stub_request(:get, url).to_return(status: 200, body: body.to_json, headers: {})
end

#need_api_has_no_need(need_id) ⇒ Object



70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/gds_api/test_helpers/need_api.rb', line 70

def need_api_has_no_need(need_id)
  url = NEED_API_ENDPOINT + "/needs/#{need_id}"
  not_found_body = {
    "_response_info" => { "status" => "not_found" },
    "error" => "No need exists with this ID"
  }
  stub_request(:get, url).to_return(
    status: 404,
    body: not_found_body.to_json,
    headers: {}
  )
end

#need_api_has_raw_response_for_page(response, page = nil) ⇒ Object



63
64
65
66
67
68
# File 'lib/gds_api/test_helpers/need_api.rb', line 63

def need_api_has_raw_response_for_page(response, page = nil)
  url = NEED_API_ENDPOINT + "/needs"
  url << "?page=#{page}" unless page.nil?

  stub_request(:get, url).to_return(status: 200, body: response, headers: {})
end

#stub_create_note(note_details = nil) ⇒ Object



83
84
85
86
87
# File 'lib/gds_api/test_helpers/need_api.rb', line 83

def stub_create_note(note_details = nil)
  post_stub = stub_request(:post, NEED_API_ENDPOINT + "/notes")
  post_stub.with(body: note_details.to_json) unless note_details.nil?
  post_stub.to_return(status: 201)
end