Rebecca Law
f0772fe06b
Updates for review comments.
...
Simplify mocker in parameterised tests.
Fix duplicate test name.
2016-10-03 14:26:36 +01:00
Rebecca Law
9e7a7b1857
Merge branch 'master' into refactor-send_notifications
...
Conflicts:
tests/app/notifications/rest/test_send_notification.py
2016-10-03 11:40:31 +01:00
Rebecca Law
e3d418506a
Create query to sum notificaitons for the message limit check, this is a bit more efficient.
...
Refactored send_notifications method so that it is more readible.
Refectored the test_send_notificaitons so that it uses parametrized test to avoid duplication.
2016-10-03 10:57:10 +01:00
Martyn Inglis
ad5222442a
Fixed build
...
- passing a single param to a celery task must be done as a list not a tuple.
2016-09-30 13:34:44 +01:00
Martyn Inglis
e3ed8fad1a
Merge branch 'master' into research-mode-csv-file-queues
...
Conflicts:
tests/app/celery/test_tasks.py
tests/app/notifications/rest/test_send_notification.py
2016-09-30 11:07:32 +01:00
Martyn Inglis
4e03f81fcf
Updated mock import
2016-09-30 10:31:50 +01:00
imdadahad
c2b57b79ee
Merge pull request #689 from alphagov/service-whitelist
...
Service whitelist
2016-09-28 17:20:06 +01:00
Imdad Ahad
a7d42896cd
Refactor tests
2016-09-28 17:03:17 +01:00
Imdad Ahad
8f74d9a122
Fix issue with test where team key does not check sending elegibility
2016-09-28 17:02:57 +01:00
Martyn Inglis
b9f0659eaa
Ensure that when an API call is made on
...
- a TEST key
- a research-mode service
We put the task into the research-mode queue NOT the production delivery queue.
2016-09-28 15:48:12 +01:00
Martyn Inglis
3618a3967c
Creating notification tasks should write send tasks to the research-mode queue if research mode service.
2016-09-28 15:29:10 +01:00
Martyn Inglis
20ccdab3bd
Contract tests mock the new deliver_email|sms tasks
2016-09-28 15:28:45 +01:00
Martyn Inglis
c13ead77e4
Ensures that both the CSV processing and the API both use the new deliver_email and deliver_sms tasks not the old ones with the redundant parameter.
2016-09-28 15:05:50 +01:00
Martyn Inglis
9233ffa3d4
When processing a CSV file don't put the DB tasks into the live queue when service is in research mode.
2016-09-28 13:53:05 +01:00
Martyn Inglis
a4b5b486c4
Merge branch 'master' into rationalise-queues
2016-09-28 08:57:59 +01:00
Imdad Ahad
f9b539d71e
Fix conflict
2016-09-27 16:54:00 +01:00
minglis
b1654c8808
Merge pull request #686 from alphagov/refactor-send-tasks-into-shared-code
...
Refactor send tasks into shared code
2016-09-27 16:46:34 +01:00
minglis
7b69a4e53e
Merge pull request #692 from alphagov/job-status-filter
...
add statuses filter to GET /service/{}/job
2016-09-27 15:31:50 +01:00
minglis
8dd93b350f
Merge pull request #691 from alphagov/fix-template-type-bug
...
Fix template type bug
2016-09-27 14:51:43 +01:00
Imdad Ahad
af2cbaa9c5
Fix PEP8 issues
2016-09-27 14:16:35 +01:00
Imdad Ahad
d258e29edc
Fix conflict
2016-09-27 14:05:29 +01:00
Imdad Ahad
99cfa7bae2
Fix url to get from whitelist endpoint
2016-09-27 13:51:43 +01:00
Imdad Ahad
3b592c8619
Update creating a sample service whitelist based on new data model
2016-09-27 13:50:23 +01:00
Imdad Ahad
7b0cbca89b
Enable sending to whitelist users if using a normal api key
2016-09-27 13:48:51 +01:00
Imdad Ahad
fbf266be87
Update ServiceWhitelist dao to conform to new data model
2016-09-27 13:45:36 +01:00
Imdad Ahad
8184eff15a
Update ServiceWhitelist to conform to new data model
2016-09-27 13:44:29 +01:00
Martyn Inglis
ce5b5fbf4c
Rationalised the queues.
...
- the internal notify activites (send sms code, forgotten passwords etc) all not in a "notify" queue.
- deleted all unused queues
2016-09-26 12:35:59 +01:00
Chris Hill-Scott
76d3f08b46
Merge pull request #690 from alphagov/add-key-name-notifications
...
Add details of API key to notifications
2016-09-26 08:41:02 +01:00
Chris Hill-Scott
592b0d15da
Merge pull request #687 from alphagov/optionally-get-test-notifications
...
Optionally get notifications created with a test key
2016-09-26 08:40:54 +01:00
Leo Hemsted
fb6cb5f236
add statuses filter to GET /service/{}/job
...
can now pass in a query string `?statuses=x,y,z` to filter jobs based on
`Job.job_status`. Not passing in a status or passing in an empty string is
equivalent to selecting every filter type at once.
2016-09-23 16:34:13 +01:00
Rebecca Law
0ef43ab1dc
Fix the wording on the message a little bit.
2016-09-23 16:03:11 +01:00
Martyn Inglis
6f7dd149e2
Tidied up pull request comments
2016-09-23 15:59:23 +01:00
Rebecca Law
09e6e6198b
Fixing a bug that allows a sms notification to be sent with an email template and vice versa.
...
This has been resolved for the post notifications endpoint
2016-09-23 15:46:48 +01:00
Chris Hill-Scott
130f42fed2
Add details of API key to notifications
...
We want to show developers a log of notifications they’ve sent using the
API in the admin app. In order to indentify a notification it’s probably
helpful to know:
- who the notification was sent to (which we expose)
- when the notification was created (which we expose)
- which key was used to create the notification (which we expose, but
only as the `id` of the key)
Developers don’t see the `id` of the API key in the app anywhere, so
this isn’t useful information. Much more useful is the `type` and `name`
of the key. So this commit changes the schema to also return these.
This commit does some slightly hacky stuff with conftest because it
breaks a lot of other tests if the sample notification has a real API
key or an API key with a non-unique name.
2016-09-23 14:44:15 +01:00
Leo Hemsted
eedc1f2093
tests for service whitelist rest
2016-09-23 12:24:53 +01:00
Rebecca Law
f5aac5796c
Improve the error message when the service id is not the right data type.
...
Improve the error message is the api key is not valid.
2016-09-23 11:07:49 +01:00
Leo Hemsted
0b8c385de1
add remove_whitelist tests
2016-09-23 10:45:12 +01:00
Chris Hill-Scott
21f3448fbc
Use client fixture
2016-09-23 10:41:37 +01:00
Chris Hill-Scott
ba71079f22
Reduce indentation
2016-09-23 10:41:37 +01:00
Chris Hill-Scott
d7bb83fadf
Optionally get notifications created w/ test key
...
This is only for the method that the admin app uses; it doesn’t affect
the public get notifications endpoint.
2016-09-23 10:40:33 +01:00
Chris Hill-Scott
f9f3bb8370
Make DAO optionally return test key notifications
...
Developers need visibility of what their integration is doing within
the app. This includes notifications sent with a test key.
This commit adds an optional, defaults-to-false parameter to include
notifications sent from a test API key when getting notifications.
2016-09-23 10:37:26 +01:00
Leo Hemsted
2e16be18bc
Merge branch 'master' of github.com:alphagov/notifications-api into service-whitelist
2016-09-23 10:14:42 +01:00
Martyn Inglis
137aa1e2d2
Merge branch 'master' into refactor-send-tasks-into-shared-code
...
Conflicts:
app/celery/provider_tasks.py
tests/app/celery/test_provider_tasks.py
2016-09-23 09:54:53 +01:00
Leo Hemsted
281323b435
Merge pull request #683 from alphagov/paginate-dashboard
...
Paginate `GET /service/{}/job` query
2016-09-23 09:54:47 +01:00
Martyn Inglis
376f8355cb
Updated clients to have a more robust error handling
...
- fire text and omg much more similar. Ready to be combined.
- Error handling now for JSON valid responses
2016-09-22 17:18:05 +01:00
Leo Hemsted
af0dbd14be
correct service_whitelist dao/rest functionality
...
additionally added dao tests
2016-09-22 17:17:34 +01:00
Rebecca Law
e757c6463c
Merge pull request #682 from alphagov/remove-provider_statistics
...
Remove provider_statistics_dao.get_provider_statistics
2016-09-22 15:23:14 +01:00
Martyn Inglis
37a2dc7925
Implemented the REST endpoint to communicate with the new send-to-provider code
...
- this allows us to send a notification to a provider by means of an API call
- This is in addition to the celery code.
- idea is that we can use this method to help speed up throughput by generating API traffic by node/lambda etc to supplement the celery code in times of high load.
2016-09-22 14:01:25 +01:00
Leo Hemsted
5c5ca26630
Add ServiceWhiteList model with corresponding tests
2016-09-22 11:58:51 +01:00
Rebecca Law
30dd602dfb
Merge branch 'master' into remove-provider_statistics
...
Conflicts:
tests/app/notifications/rest/test_callbacks.py
2016-09-22 11:20:19 +01:00