Module: GdsApi::TestHelpers::LocalLinksManager

Extended by:
AliasDeprecated
Defined in:
lib/gds_api/test_helpers/local_links_manager.rb

Constant Summary collapse

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

Instance Method Summary collapse

Methods included from AliasDeprecated

alias_deprecated

Instance Method Details



124
125
126
127
128
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 124

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


118
119
120
121
122
# File 'lib/gds_api/test_helpers/local_links_manager.rb', line 118

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