Module: PublishingPlatformApi::TestHelpers::Organisations
- Includes:
- CommonResponses
- Defined in:
- lib/publishing_platform_api/test_helpers/organisations.rb
Constant Summary collapse
- WEBSITE_ROOT =
PublishingPlatformLocation.new.website_root
Instance Method Summary collapse
-
#organisation_details_for_slug(slug, content_id = SecureRandom.uuid) ⇒ Object
Constructs a sample organisation.
- #organisation_for_slug(slug) ⇒ Object
- #stub_organisations_api_does_not_have_organisation(organisation_slug) ⇒ Object
- #stub_organisations_api_has_organisation(organisation_slug, details = nil) ⇒ Object
- #stub_organisations_api_has_organisations(organisation_slugs) ⇒ Object
-
#stub_organisations_api_has_organisations_with_bodies(organisation_bodies) ⇒ Object
Sets up the index endpoints for the given organisation slugs The stubs are setup to paginate in chunks of 20.
Methods included from CommonResponses
#acronymize_slug, #plural_response_base, #response_base, #titleize_slug
Instance Method Details
#organisation_details_for_slug(slug, content_id = SecureRandom.uuid) ⇒ Object
Constructs a sample organisation
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/publishing_platform_api/test_helpers/organisations.rb', line 86 def organisation_details_for_slug(slug, content_id = SecureRandom.uuid) { "id" => "#{WEBSITE_ROOT}/api/organisations/#{slug}", "title" => titleize_slug(slug, title_case: true), "format" => "Department", "updated_at" => "2013-03-25T13:06:42+00:00", "web_url" => "#{WEBSITE_ROOT}/government/organisations/#{slug}", "details" => { "slug" => slug, "abbreviation" => acronymize_slug(slug), "status" => "live", "content_id" => content_id, }, } end |
#organisation_for_slug(slug) ⇒ Object
81 82 83 |
# File 'lib/publishing_platform_api/test_helpers/organisations.rb', line 81 def organisation_for_slug(slug) singular_response_base.merge(organisation_details_for_slug(slug)) end |
#stub_organisations_api_does_not_have_organisation(organisation_slug) ⇒ Object
77 78 79 |
# File 'lib/publishing_platform_api/test_helpers/organisations.rb', line 77 def stub_organisations_api_does_not_have_organisation(organisation_slug) stub_request(:get, "#{WEBSITE_ROOT}/api/organisations/#{organisation_slug}").to_return(status: 404) end |
#stub_organisations_api_has_organisation(organisation_slug, details = nil) ⇒ Object
71 72 73 74 75 |
# File 'lib/publishing_platform_api/test_helpers/organisations.rb', line 71 def stub_organisations_api_has_organisation(organisation_slug, details = nil) details ||= organisation_for_slug(organisation_slug) stub_request(:get, "#{WEBSITE_ROOT}/api/organisations/#{organisation_slug}") .to_return(status: 200, body: details.to_json) end |
#stub_organisations_api_has_organisations(organisation_slugs) ⇒ Object
13 14 15 16 |
# File 'lib/publishing_platform_api/test_helpers/organisations.rb', line 13 def stub_organisations_api_has_organisations(organisation_slugs) bodies = organisation_slugs.map { |slug| organisation_for_slug(slug) } stub_organisations_api_has_organisations_with_bodies(bodies) end |
#stub_organisations_api_has_organisations_with_bodies(organisation_bodies) ⇒ Object
Sets up the index endpoints for the given organisation slugs The stubs are setup to paginate in chunks of 20
This also sets up the individual endpoints for each slug by calling organisations_api_has_organisation below
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/publishing_platform_api/test_helpers/organisations.rb', line 23 def stub_organisations_api_has_organisations_with_bodies(organisation_bodies) # Stub API call to the endpoint for an individual organisation organisation_bodies.each do |body| slug = body["details"]["slug"] stub_organisations_api_has_organisation(slug, body) end pages = [] organisation_bodies.each_slice(20) do |bodies| pages << bodies end pages.each_with_index do |page, i| page_details = plural_response_base.merge( "results" => page, "total" => organisation_bodies.size, "pages" => pages.size, "current_page" => i + 1, "page_size" => 20, "start_index" => i * 20 + 1, ) links = { self: "#{WEBSITE_ROOT}/api/organisations?page=#{i + 1}" } links[:next] = "#{WEBSITE_ROOT}/api/organisations?page=#{i + 2}" if pages[i + 1] links[:previous] = "#{WEBSITE_ROOT}/api/organisations?page=#{i}" unless i.zero? page_details["_response_info"]["links"] = [] link_headers = [] links.each do |rel, href| page_details["_response_info"]["links"] << { "rel" => rel, "href" => href } link_headers << "<#{href}>; rel=\"#{rel}\"" end stub_request(:get, links[:self]) .to_return(status: 200, body: page_details.to_json, headers: { "Link" => link_headers.join(", ") }) next unless i.zero? # First page exists at URL with and without page param stub_request(:get, links[:self].sub(/\?page=1/, "")) .to_return(status: 200, body: page_details.to_json, headers: { "Link" => link_headers.join(", ") }) end if pages.empty? # If there are no pages - and so no organisations specified - then stub /api/organisations. stub_request(:get, "#{WEBSITE_ROOT}/api/organisations").to_return(status: 200, body: plural_response_base.to_json, headers: {}) end end |