mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-08 18:34:24 -04:00
97 lines
4.1 KiB
HTML
97 lines
4.1 KiB
HTML
{% extends "withoutnav_template.html" %}
|
||
|
||
{% block page_title %}
|
||
Integration testing - GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
<h1 class="heading-large">Integration testing</h1>
|
||
|
||
<p>
|
||
Service teams should do all their testing within the GOV.UK Notify production environment, https://api.notifications.service.gov.uk.
|
||
</p>
|
||
<p>
|
||
You don’t need different Notify accounts or access to other Notify environments. Instead, there are different types of API keys that let you do functional or performance integration testing.
|
||
</p>
|
||
|
||
<h2 class="heading-medium">Types of API Keys</h2>
|
||
<p>
|
||
There are 3 types of API key available within GOV.UK Notify:
|
||
</p>
|
||
<ul class="list list-bullet">
|
||
<li>live key - “Send messages to anyone”</li>
|
||
<li>team key - “Send messages to anyone on my whitelist”</li>
|
||
<li>test key - “Pretend to send messages to anyone"</li>
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">Live key</h2>
|
||
<p>
|
||
Once your service is live you are able to create Live keys. You can then use these keys to send messages to anyone.
|
||
</p>
|
||
<p>
|
||
Messages sent with a live key show up on your dashboard and count against your text message and email allowances.
|
||
</p>
|
||
<p>
|
||
You should plan to rotate these keys on a regular basis. You can have more than one active key at a time. To revoke a key click the revoke button on the API Key page.
|
||
</p>
|
||
|
||
<h2 class="heading-medium">Team key</h2>
|
||
<p>
|
||
Use a team key for end-to-end functional testing.
|
||
</p>
|
||
<p>
|
||
A team key lets you send real messages to members of your team and address/numbers that you have added to your whitelist. You will get an error if you use these keys to send messages to anyone else.
|
||
</p>
|
||
<p>
|
||
Messages sent with a team key show up on your dashboard and count against your text message and email allowances.
|
||
</p>
|
||
|
||
<h2 class="heading-medium">Test key</h2>
|
||
<p>
|
||
Use a test key to test the performance of your service and its integration with GOV.UK Notify under load.
|
||
</p>
|
||
<p>
|
||
Test keys don’t send real messages but do generates realistic responses. There’s no restriction on who you can send to or how many messages you can send per day.
|
||
</p>
|
||
<p>
|
||
Messages sent using a test key don’t show up on your dashboard or count against your text message and email allowances.
|
||
</p>
|
||
<p>
|
||
By default, all messages sent with a test key will result in a delivered status.
|
||
</p>
|
||
<p>
|
||
If you want to test failure statuses with a test key, use the following phone numbers and email addresses:
|
||
|
||
<li>"07700900003" => temporary failure</li>
|
||
<li>"07700900002" => permanent failure</li>
|
||
<li>"temp-fail@simulator.notify" => temporary failure</li>
|
||
<li>"perm-fail@simulator.notify" => permanent failure</li>
|
||
</p>
|
||
|
||
<h2 class="heading-medium">Smoke testing your integration</h2>
|
||
<p>
|
||
If you need to smoke test your integration with Notify on a regular basis, you should use the smoke test numbers and addresses below.
|
||
<li>“07700900000”</li>
|
||
<li>“07700900111”</li>
|
||
<li>“07700900222”</li>
|
||
<li>“simulate-delivered@notifications.service.gov.uk”</li>
|
||
<li>“simulate-delivered-2@notifications.service.gov.uk”</li>
|
||
<li>“simulate-delivered-3@notifications.service.gov.uk”</li>
|
||
</p>
|
||
<p>
|
||
The smoke test numbers and addresses will immediately return a successful response, but won’t send a real message and won’t produce a delivery receipt.
|
||
The notification ID is not a real ID, you will not be able to fetch the notification by ID.
|
||
</p>
|
||
<p>
|
||
You can use the smoke test numbers and addresses with any type of key.
|
||
If your smoke tests need to fetch a delivery receipt, then use a test key - and don’t use these numbers and addresses.
|
||
</p>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|