Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Source Zendesk Support: Fix wrong types for schemas, add Transformer #8050

Conversation

yevhenii-ldv
Copy link
Contributor

What

resolves #7441.
The problem was that the types were not specified for some of the fields in the schemas.

How

Describe the solution

Recommended reading order

  1. x.java
  2. y.python

🚨 User Impact 🚨

Are there any breaking changes? If yes, please make sure to include it here and in any changelogs with the 🚨🚨 emoji
What is the end result perceived by the user?

Pre-merge Checklist

Community member or Airbyter

  • Grant edit access to maintainers (instructions)
  • Secrets in the connector's spec are annotated with airbyte_secret
  • Unit & integration tests added and passing. Community members, please provide proof of success locally e.g: screenshot or copy-paste unit, integration, and acceptance test output. To run acceptance tests for a Python connector, follow instructions in the README. For java connectors run ./gradlew :airbyte-integrations:connectors:<name>:integrationTest.
  • Code reviews completed
  • Documentation updated
    • Connector's README.md
    • Connector's bootstrap.md. See description and examples
    • Changelog updated in docs/integrations/<source or destination>/<name>.md including changelog. See changelog example
  • PR name follows PR naming conventions

Airbyter

If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.

  • Create a non-forked branch based on this PR and test the below items on it
  • Build is successful
  • Credentials added to Github CI. Instructions.
  • /test connector=connectors/<name> command is passing.
  • New Connector version released on Dockerhub by running the /publish command described here
  • After the new connector version is published, connector version bumped in the seed directory as described here
  • Seed specs have been re-generated by building the platform and committing the changes to the seed spec files, as described here

@github-actions github-actions bot added area/connectors Connector related issues area/documentation Improvements or additions to documentation labels Nov 17, 2021
@yevhenii-ldv
Copy link
Contributor Author

yevhenii-ldv commented Nov 17, 2021

/test connector=connectors/source-zendesk-support

🕑 connectors/source-zendesk-support https://github.com/airbytehq/airbyte/actions/runs/1471764479
❌ connectors/source-zendesk-support https://github.com/airbytehq/airbyte/actions/runs/1471764479
🐛 https://gradle.com/s/taryx4npw2h2a

@jrhizor jrhizor temporarily deployed to more-secrets November 17, 2021 13:23 Inactive
@yevhenii-ldv
Copy link
Contributor Author

yevhenii-ldv commented Nov 17, 2021

/test connector=connectors/source-zendesk-support

🕑 connectors/source-zendesk-support https://github.com/airbytehq/airbyte/actions/runs/1471853659
✅ connectors/source-zendesk-support https://github.com/airbytehq/airbyte/actions/runs/1471853659
Python tests coverage:

	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                                 Stmts   Miss  Cover
	 ------------------------------------------------------------------------
	 source_acceptance_test/__init__.py                       2      0   100%
	 source_acceptance_test/base.py                          10      4    60%
	 source_acceptance_test/config.py                        75      8    89%
	 source_acceptance_test/conftest.py                     108    108     0%
	 source_acceptance_test/plugin.py                        47     47     0%
	 source_acceptance_test/tests/__init__.py                 4      0   100%
	 source_acceptance_test/tests/test_core.py              200     94    53%
	 source_acceptance_test/tests/test_full_refresh.py       38     27    29%
	 source_acceptance_test/tests/test_incremental.py        69     38    45%
	 source_acceptance_test/utils/__init__.py                 6      0   100%
	 source_acceptance_test/utils/asserts.py                 37      2    95%
	 source_acceptance_test/utils/common.py                  41     24    41%
	 source_acceptance_test/utils/compare.py                 62     25    60%
	 source_acceptance_test/utils/connector_runner.py        82     49    40%
	 source_acceptance_test/utils/json_schema_helper.py     115     14    88%
	 ------------------------------------------------------------------------
	 TOTAL                                                  896    440    51%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                 Stmts   Miss  Cover
	 --------------------------------------------------------
	 source_zendesk_support/__init__.py       2      0   100%
	 source_zendesk_support/source.py        38     15    61%
	 source_zendesk_support/streams.py      277     78    72%
	 --------------------------------------------------------
	 TOTAL                                  317     93    71%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                 Stmts   Miss  Cover
	 --------------------------------------------------------
	 source_zendesk_support/__init__.py       2      0   100%
	 source_zendesk_support/source.py        38     15    61%
	 source_zendesk_support/streams.py      277     87    69%
	 --------------------------------------------------------
	 TOTAL                                  317    102    68%

@jrhizor jrhizor temporarily deployed to more-secrets November 17, 2021 13:39 Inactive
)
def test_transform_for_tickets_stream(prepare_stream_args, input_data, expected_data):
"""Checks Transform in case when records come with invalid fields data types"""
stream = Tickets(**prepare_stream_args)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What the point of testing it on stream level and manualy calling transorm method? Please test it on Source level like here connectors/source-iterable/unit_tests/test_source.py

Copy link
Contributor

@avida avida left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please update CDK version to 0.1.35 where false warning were fixed

@yevhenii-ldv
Copy link
Contributor Author

yevhenii-ldv commented Nov 17, 2021

/test connector=connectors/source-zendesk-support

🕑 connectors/source-zendesk-support https://github.com/airbytehq/airbyte/actions/runs/1472289443
✅ connectors/source-zendesk-support https://github.com/airbytehq/airbyte/actions/runs/1472289443
Python tests coverage:

	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                                 Stmts   Miss  Cover
	 ------------------------------------------------------------------------
	 source_acceptance_test/__init__.py                       2      0   100%
	 source_acceptance_test/base.py                          10      4    60%
	 source_acceptance_test/config.py                        75      8    89%
	 source_acceptance_test/conftest.py                     108    108     0%
	 source_acceptance_test/plugin.py                        47     47     0%
	 source_acceptance_test/tests/__init__.py                 4      0   100%
	 source_acceptance_test/tests/test_core.py              200     94    53%
	 source_acceptance_test/tests/test_full_refresh.py       38     27    29%
	 source_acceptance_test/tests/test_incremental.py        69     38    45%
	 source_acceptance_test/utils/__init__.py                 6      0   100%
	 source_acceptance_test/utils/asserts.py                 37      2    95%
	 source_acceptance_test/utils/common.py                  41     24    41%
	 source_acceptance_test/utils/compare.py                 62     25    60%
	 source_acceptance_test/utils/connector_runner.py        82     49    40%
	 source_acceptance_test/utils/json_schema_helper.py     115     14    88%
	 ------------------------------------------------------------------------
	 TOTAL                                                  896    440    51%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                 Stmts   Miss  Cover
	 --------------------------------------------------------
	 source_zendesk_support/__init__.py       2      0   100%
	 source_zendesk_support/source.py        38     15    61%
	 source_zendesk_support/streams.py      277     77    72%
	 --------------------------------------------------------
	 TOTAL                                  317     92    71%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                 Stmts   Miss  Cover
	 --------------------------------------------------------
	 source_zendesk_support/__init__.py       2      0   100%
	 source_zendesk_support/source.py        38     13    66%
	 source_zendesk_support/streams.py      277     86    69%
	 --------------------------------------------------------
	 TOTAL                                  317     99    69%

@yevhenii-ldv yevhenii-ldv temporarily deployed to more-secrets November 17, 2021 15:07 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets November 17, 2021 15:08 Inactive
@@ -97,6 +97,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces

| Version | Date | Pull Request | Subject |
| :------ | :-------- | :----- | :------ |
| `0.1.5` | 2021-11-?? | [????](https://github.com/airbytehq/airbyte/pull/????) | Fix wrong types for schemas, add Transformer |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

forgot to update this

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am going to request review from Airbyte team for this PR, and update the changeogs before publishing.

@sherifnada sherifnada removed the request for review from Phlair November 18, 2021 00:34
@yevhenii-ldv
Copy link
Contributor Author

yevhenii-ldv commented Nov 18, 2021

/publish connector=connectors/source-zendesk-support

🕑 connectors/source-zendesk-support https://github.com/airbytehq/airbyte/actions/runs/1476678415
✅ connectors/source-zendesk-support https://github.com/airbytehq/airbyte/actions/runs/1476678415

@yevhenii-ldv yevhenii-ldv temporarily deployed to more-secrets November 18, 2021 13:48 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets November 18, 2021 13:49 Inactive
@yevhenii-ldv yevhenii-ldv merged commit 006c34c into master Nov 18, 2021
@yevhenii-ldv yevhenii-ldv deleted the ykurochkin/custom-fields-not-extracted-properly-after-normalization branch November 18, 2021 14:07
@yevhenii-ldv yevhenii-ldv temporarily deployed to more-secrets November 18, 2021 14:08 Inactive
schlattk pushed a commit to schlattk/airbyte that referenced this pull request Jan 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/connectors Connector related issues area/documentation Improvements or additions to documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Zendesk Support: Ticket custom fields not extracted properly after normalization
5 participants