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

Chore: add new test using source-pokeapi and custom components.py #317

Merged
merged 4 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# PokeAPI with Custom `components.py` API Tests

This test connector is a modified version of `source-pokeapi`. It has been modified to use custom `components.py` so we have a test case the completes quickly and _does not_ require any credentials.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
"""A sample implementation of custom components that does nothing but will cause syncs to fail if missing."""

from typing import Any, Mapping

import requests

from airbyte_cdk.sources.declarative.extractors import DpathExtractor


class IntentionalException(Exception):
"""This exception is raised intentionally in order to test error handling."""


class MyCustomExtractor(DpathExtractor):
"""Dummy class, directly implements DPatchExtractor.

Used to prove that SDM can find the custom class by name.
"""

pass
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
"""A sample implementation of custom components that does nothing but will cause syncs to fail if missing."""

from collections.abc import Iterable, MutableMapping
from dataclasses import InitVar, dataclass
from typing import Any, Mapping, Optional, Union

import requests

from airbyte_cdk.sources.declarative.extractors import DpathExtractor


class IntentionalException(Exception):
"""This exception is raised intentionally in order to test error handling."""


class MyCustomExtractor(DpathExtractor):
def extract_records(
self,
response: requests.Response,
) -> Iterable[MutableMapping[Any, Any]]:
raise IntentionalException
Loading
Loading