|
1 |
| -import os |
| 1 | +from unittest import mock |
| 2 | +from unittest.mock import call |
2 | 3 |
|
3 | 4 | import pytest
|
4 |
| -from django.test import override_settings |
| 5 | +from django.test import TestCase |
| 6 | +from shared.django_apps.codecov_auth.models import Service |
5 | 7 | from shared.django_apps.codecov_auth.tests.factories import (
|
6 | 8 | OrganizationLevelTokenFactory,
|
| 9 | + OwnerFactory, |
7 | 10 | )
|
8 | 11 |
|
9 | 12 |
|
10 |
| -@override_settings( |
11 |
| - SHELTER_PUBSUB_PROJECT_ID="test-project-id", |
12 |
| - SHELTER_PUBSUB_SYNC_REPO_TOPIC_ID="test-topic-id", |
13 |
| -) |
14 | 13 | @pytest.mark.django_db
|
15 | 14 | def test_shelter_org_token_sync(mocker):
|
16 |
| - # this prevents the pubsub SDK from trying to load credentials |
17 |
| - os.environ["PUBSUB_EMULATOR_HOST"] = "localhost" |
18 |
| - |
19 | 15 | publish = mocker.patch("google.cloud.pubsub_v1.PublisherClient.publish")
|
20 | 16 |
|
21 | 17 | # this triggers the publish via Django signals
|
22 |
| - OrganizationLevelTokenFactory(id=91728376) |
| 18 | + OrganizationLevelTokenFactory(id=91728376, owner=OwnerFactory(ownerid=111)) |
23 | 19 |
|
24 |
| - publish.assert_called_once_with( |
25 |
| - "projects/test-project-id/topics/test-topic-id", |
26 |
| - b'{"type": "org_token", "sync": "one", "id": 91728376}', |
| 20 | + publish.assert_has_calls( |
| 21 | + [ |
| 22 | + call( |
| 23 | + "projects/test-project-id/topics/test-topic-id", |
| 24 | + b'{"type": "owner", "sync": "one", "id": 111}', |
| 25 | + ), |
| 26 | + call( |
| 27 | + "projects/test-project-id/topics/test-topic-id", |
| 28 | + b'{"type": "org_token", "sync": "one", "id": 91728376}', |
| 29 | + ), |
| 30 | + ] |
27 | 31 | )
|
| 32 | + |
| 33 | + |
| 34 | +@mock.patch("google.cloud.pubsub_v1.PublisherClient.publish") |
| 35 | +class TestCodecovAuthSignals(TestCase): |
| 36 | + def test_sync_on_create(self, mock_publish): |
| 37 | + OwnerFactory(ownerid=12345) |
| 38 | + mock_publish.assert_called_once_with( |
| 39 | + "projects/test-project-id/topics/test-topic-id", |
| 40 | + b'{"type": "owner", "sync": "one", "id": 12345}', |
| 41 | + ) |
| 42 | + |
| 43 | + def test_sync_on_update_upload_token_required_for_public_repos(self, mock_publish): |
| 44 | + owner = OwnerFactory(ownerid=12345, upload_token_required_for_public_repos=True) |
| 45 | + owner.upload_token_required_for_public_repos = False |
| 46 | + owner.save() |
| 47 | + mock_publish.assert_has_calls( |
| 48 | + [ |
| 49 | + call( |
| 50 | + "projects/test-project-id/topics/test-topic-id", |
| 51 | + b'{"type": "owner", "sync": "one", "id": 12345}', |
| 52 | + ), |
| 53 | + call( |
| 54 | + "projects/test-project-id/topics/test-topic-id", |
| 55 | + b'{"type": "owner", "sync": "one", "id": 12345}', |
| 56 | + ), |
| 57 | + ] |
| 58 | + ) |
| 59 | + |
| 60 | + def test_sync_on_update_username(self, mock_publish): |
| 61 | + owner = OwnerFactory(ownerid=12345, username="hello") |
| 62 | + owner.username = "world" |
| 63 | + owner.save() |
| 64 | + mock_publish.assert_has_calls( |
| 65 | + [ |
| 66 | + call( |
| 67 | + "projects/test-project-id/topics/test-topic-id", |
| 68 | + b'{"type": "owner", "sync": "one", "id": 12345}', |
| 69 | + ), |
| 70 | + call( |
| 71 | + "projects/test-project-id/topics/test-topic-id", |
| 72 | + b'{"type": "owner", "sync": "one", "id": 12345}', |
| 73 | + ), |
| 74 | + ] |
| 75 | + ) |
| 76 | + |
| 77 | + def test_sync_on_update_service(self, mock_publish): |
| 78 | + owner = OwnerFactory(ownerid=12345, service=Service.GITHUB.value) |
| 79 | + owner.service = Service.BITBUCKET.value |
| 80 | + owner.save() |
| 81 | + mock_publish.assert_has_calls( |
| 82 | + [ |
| 83 | + call( |
| 84 | + "projects/test-project-id/topics/test-topic-id", |
| 85 | + b'{"type": "owner", "sync": "one", "id": 12345}', |
| 86 | + ), |
| 87 | + call( |
| 88 | + "projects/test-project-id/topics/test-topic-id", |
| 89 | + b'{"type": "owner", "sync": "one", "id": 12345}', |
| 90 | + ), |
| 91 | + ] |
| 92 | + ) |
| 93 | + |
| 94 | + def test_no_sync_on_update_other_fields(self, mock_publish): |
| 95 | + owner = OwnerFactory(ownerid=12345, name="hello") |
| 96 | + owner.name = "world" |
| 97 | + owner.save() |
| 98 | + mock_publish.assert_called_once_with( |
| 99 | + "projects/test-project-id/topics/test-topic-id", |
| 100 | + b'{"type": "owner", "sync": "one", "id": 12345}', |
| 101 | + ) |
| 102 | + |
| 103 | + @mock.patch("logging.Logger.warning") |
| 104 | + def test_sync_error(self, mock_log, mock_publish): |
| 105 | + mock_publish.side_effect = Exception("publish error") |
| 106 | + |
| 107 | + OwnerFactory(ownerid=12345) |
| 108 | + |
| 109 | + # publish is still called, raises an Exception |
| 110 | + mock_publish.assert_called_once_with( |
| 111 | + "projects/test-project-id/topics/test-topic-id", |
| 112 | + b'{"type": "owner", "sync": "one", "id": 12345}', |
| 113 | + ) |
| 114 | + |
| 115 | + mock_log.assert_called_once_with( |
| 116 | + "Failed to publish a message", |
| 117 | + extra=dict( |
| 118 | + data_to_publish={"type": "owner", "sync": "one", "id": 12345}, |
| 119 | + error=mock_publish.side_effect, |
| 120 | + ), |
| 121 | + ) |
0 commit comments