Module: GdsApi::TestHelpers::LocalLinksManager

Defined in:
lib/gds_api/test_helpers/local_links_manager.rb

Constant Summary collapse

Plek.current.find('local-links-manager')

Instance Method Summary collapse

Instance Method Details



122
123
124
125
126
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 122

def stub_local_links_manager_does_not_have_an_authority(authority_slug)
  stub_request(:get, "#{LOCAL_LINKS_MANAGER_ENDPOINT}/api/local-authority")
  .with(query: { authority_slug: authority_slug })
  .to_return(body: {}.to_json, status: 404)
end


71
72
73
74
75
76
77
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 71

def stub_local_links_manager_does_not_have_required_objects(authority_slug, lgsl, lgil)
  params = { authority_slug: authority_slug, lgsl: lgsl, lgil: lgil }

  stub_request(:get, "#{LOCAL_LINKS_MANAGER_ENDPOINT}/api/link")
    .with(query: params)
    .to_return(body: {}.to_json, status: 404)
end


95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 95

def stub_local_links_manager_has_a_district_and_county_local_authority(district_slug, county_slug)
  response = {
    "local_authorities" => [
      {
        "name" => district_slug.capitalize,
        "homepage_url" => "http://#{district_slug}.example.com",
        "tier" => "district"
      },
      {
        "name" => county_slug.capitalize,
        "homepage_url" => "http://#{county_slug}.example.com",
        "tier" => "county"
      }
    ]
  }

  stub_request(:get, "#{LOCAL_LINKS_MANAGER_ENDPOINT}/api/local-authority")
    .with(query: { authority_slug: district_slug })
    .to_return(body: response.to_json, status: 200)
end


8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 8

def stub_local_links_manager_has_a_link(authority_slug:, lgsl:, lgil:, url:)
  response = {
    "local_authority" => {
      "name" => authority_slug.capitalize,
      "snac" => "00AG",
      "tier" => "unitary",
      "homepage_url" => "http://#{authority_slug}.example.com",
    },
    "local_interaction" => {
      "lgsl_code" => lgsl,
      "lgil_code" => lgil,
      "url" => url,
    }
  }

  stub_request(:get, "#{LOCAL_LINKS_MANAGER_ENDPOINT}/api/link")
    .with(query: { authority_slug: authority_slug, lgsl: lgsl, lgil: lgil })
    .to_return(body: response.to_json, status: 200)
end


79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 79

def stub_local_links_manager_has_a_local_authority(authority_slug)
  response = {
    "local_authorities" => [
      {
        "name" => authority_slug.capitalize,
        "homepage_url" => "http://#{authority_slug}.example.com",
        "tier" => "unitary"
      }
    ]
  }

  stub_request(:get, "#{LOCAL_LINKS_MANAGER_ENDPOINT}/api/local-authority")
    .with(query: { authority_slug: authority_slug })
    .to_return(body: response.to_json, status: 200)
end


128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 128

def stub_local_links_manager_has_a_local_authority_without_homepage(authority_slug)
  response = {
    "local_authorities" => [
      {
        "name" => authority_slug.capitalize,
        "homepage_url" => "",
        "tier" => "unitary"
      }
    ]
  }

  stub_request(:get, "#{LOCAL_LINKS_MANAGER_ENDPOINT}/api/local-authority")
    .with(query: { authority_slug: authority_slug })
    .to_return(body: response.to_json, status: 200)
end


28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 28

def stub_local_links_manager_has_no_link(authority_slug:, lgsl:, lgil:)
  response = {
    "local_authority" => {
      "name" => authority_slug.capitalize,
      "snac" => "00AG",
      "tier" => "unitary",
      "homepage_url" => "http://#{authority_slug}.example.com",
    },
  }

  stub_request(:get, "#{LOCAL_LINKS_MANAGER_ENDPOINT}/api/link")
    .with(query: { authority_slug: authority_slug, lgsl: lgsl, lgil: lgil })
    .to_return(body: response.to_json, status: 200)
end


43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 43

def stub_local_links_manager_has_no_link_and_no_homepage_url(authority_slug:, lgsl:, lgil:)
  response = {
    "local_authority" => {
      "name" => authority_slug.capitalize,
      "snac" => "00AG",
      "tier" => "unitary",
      "homepage_url" => nil,
    },
  }

  stub_request(:get, "#{LOCAL_LINKS_MANAGER_ENDPOINT}/api/link")
    .with(query: { authority_slug: authority_slug, lgsl: lgsl, lgil: lgil })
    .to_return(body: response.to_json, status: 200)
end


58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 58

def stub_local_links_manager_request_with_missing_parameters(authority_slug, lgsl, lgil)
  # convert nil to an empty string, otherwise query param is not expressed correctly
  params = {
    authority_slug: authority_slug || "",
    lgsl: lgsl || "",
    lgil: lgil || "",
  }

  stub_request(:get, "#{LOCAL_LINKS_MANAGER_ENDPOINT}/api/link")
    .with(query: params)
    .to_return(body: {}.to_json, status: 400)
end


116
117
118
119
120
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 116

def stub_local_links_manager_request_without_local_authority_slug
  stub_request(:get, "#{LOCAL_LINKS_MANAGER_ENDPOINT}/api/local-authority")
  .with(query: { authority_slug: '' })
  .to_return(body: {}.to_json, status: 400)
end