Skip to content

Commit

Permalink
515 SaaS connector Logi ID (#1074)
Browse files Browse the repository at this point in the history
  • Loading branch information
HamzaWaseemOnBench authored Aug 12, 2022
1 parent f1a3e61 commit 3174d64
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The types of changes are:
### Added

* Access support for Datadog Logs [#1060](https://github.com/ethyca/fidesops/pull/1060)
""
### Fixed

* HTTP headers are now preserved in requests generated from SaaS connector pagination [#1069](https://github.com/ethyca/fidesops/pull/1069)
Expand Down
1 change: 1 addition & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ markers =
integration_auth0
integration_outreach
integration_salesforce

integration_adobe_campaign
unit_saas

Expand Down
Empty file removed saas_config.toml
Empty file.
1 change: 1 addition & 0 deletions src/fidesops/ops/schemas/saas/saas_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ class SaaSType(Enum):

adobe_campaign = "adobe_campaign"
auth0 = "auth0"

mailchimp = "mailchimp"
hubspot = "hubspot"
outreach = "outreach"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_get_connection_types(
resp = api_client.get(url, headers=auth_header)
data = resp.json()["items"]
assert resp.status_code == 200
assert len(data) == 20
assert len(data) == 21

assert {
"identifier": ConnectionType.postgres.value,
Expand Down Expand Up @@ -94,7 +94,7 @@ def test_search_system_type(self, api_client, generate_auth_header, url):
resp = api_client.get(url + "?system_type=saas", headers=auth_header)
assert resp.status_code == 200
data = resp.json()["items"]
assert len(data) == 12
assert len(data) == 13

resp = api_client.get(url + "?system_type=database", headers=auth_header)
assert resp.status_code == 200
Expand Down
1 change: 1 addition & 0 deletions tests/ops/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
from .fixtures.saas.auth0_fixtures import *
from .fixtures.saas.datadog_fixtures import *
from .fixtures.saas.hubspot_fixtures import *

from .fixtures.saas.mailchimp_fixtures import *
from .fixtures.saas.outreach_fixtures import *
from .fixtures.saas.request_override.mailchimp_override_fixtures import *
Expand Down

0 comments on commit 3174d64

Please sign in to comment.