Merge pull request #3110 from alphagov/test-channel

Set the default broadcast channel to test
This commit is contained in:
David McDonald
2021-02-01 10:18:35 +00:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

View File

@@ -210,6 +210,7 @@ class CBCProxyEE(CBCProxyClientBase):
'sent': sent,
'expires': expires,
'language': self.infer_language_from(description),
'channel': 'test',
}
self._invoke_lambda_with_failover(payload=payload)
@@ -270,6 +271,7 @@ class CBCProxyThree(CBCProxyClientBase):
'sent': sent,
'expires': expires,
'language': self.infer_language_from(description),
'channel': 'test',
}
self._invoke_lambda_with_failover(payload=payload)
@@ -329,6 +331,7 @@ class CBCProxyO2(CBCProxyClientBase):
'sent': sent,
'expires': expires,
'language': self.infer_language_from(description),
'channel': 'test',
}
self._invoke_lambda_with_failover(payload=payload)
@@ -391,6 +394,7 @@ class CBCProxyVodafone(CBCProxyClientBase):
'sent': sent,
'expires': expires,
'language': self.infer_language_from(description),
'channel': 'test',
}
self._invoke_lambda_with_failover(payload=payload)

View File

@@ -133,6 +133,7 @@ def test_cbc_proxy_one_2_many_create_and_send_invokes_function(
assert payload['sent'] == sent
assert payload['expires'] == expires
assert payload['language'] == expected_language
assert payload['channel'] == 'test'
@pytest.mark.parametrize('cbc', ['ee', 'three', 'o2'])
@@ -249,6 +250,7 @@ def test_cbc_proxy_vodafone_create_and_send_invokes_function(
assert payload['sent'] == sent
assert payload['expires'] == expires
assert payload['language'] == expected_language
assert payload['channel'] == 'test'
def test_cbc_proxy_vodafone_cancel_invokes_function(mocker, cbc_proxy_vodafone):