blob: 66fae8df990dc978bd9c953bb9f12805f5b7411e [file]
# coding: utf-8
"""
Airflow API
Airflow API. All endpoints located under ``/api/v2`` can be used safely, are stable and backward compatible. Endpoints located under ``/ui`` are dedicated to the UI and are subject to breaking change depending on the need of the frontend. Users should not rely on those but use the public ones instead. **Filtering with pattern parameters.** Many list endpoints accept ``*_pattern`` and ``*_prefix_pattern`` query parameters. Unless a parameter's own description says otherwise, ``*_pattern`` is a case-insensitive substring match (SQL ``ILIKE '%term%'``) where ``%`` matches any sequence and ``_`` matches any single character (e.g. ``%customer_%``) — convenient, but it cannot use B-tree indexes, so it is slow on large tables. ``*_prefix_pattern`` matches the start of the value, is case-sensitive and index-friendly (prefer it at scale); there ``%`` and ``_`` are literal and trailing non-alphanumeric characters are stripped so the range scan stays index-compatible under locale-aware collations (e.g. ``test_`` matches values starting with ``test``, and ``s3://`` matches ``s3``). In both, ``|`` means OR (e.g. ``dag1|dag2``) and ``~`` matches everything. Regular expressions are not supported by these parameters; regex-capable endpoints expose a separate parameter.
The version of the OpenAPI document: 2
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from airflow_client.client.api.task_instance_api import TaskInstanceApi
class TestTaskInstanceApi(unittest.TestCase):
"""TaskInstanceApi unit test stubs"""
def setUp(self) -> None:
self.api = TaskInstanceApi()
def tearDown(self) -> None:
pass
def test_bulk_task_instances(self) -> None:
"""Test case for bulk_task_instances
Bulk Task Instances
"""
pass
def test_delete_task_instance(self) -> None:
"""Test case for delete_task_instance
Delete Task Instance
"""
pass
def test_get_external_log_url(self) -> None:
"""Test case for get_external_log_url
Get External Log Url
"""
pass
def test_get_extra_links(self) -> None:
"""Test case for get_extra_links
Get Extra Links
"""
pass
def test_get_hitl_detail(self) -> None:
"""Test case for get_hitl_detail
Get Hitl Detail
"""
pass
def test_get_hitl_detail_try_detail(self) -> None:
"""Test case for get_hitl_detail_try_detail
Get Hitl Detail Try Detail
"""
pass
def test_get_hitl_details(self) -> None:
"""Test case for get_hitl_details
Get Hitl Details
"""
pass
def test_get_log(self) -> None:
"""Test case for get_log
Get Log
"""
pass
def test_get_mapped_task_instance(self) -> None:
"""Test case for get_mapped_task_instance
Get Mapped Task Instance
"""
pass
def test_get_mapped_task_instance_tries(self) -> None:
"""Test case for get_mapped_task_instance_tries
Get Mapped Task Instance Tries
"""
pass
def test_get_mapped_task_instance_try_details(self) -> None:
"""Test case for get_mapped_task_instance_try_details
Get Mapped Task Instance Try Details
"""
pass
def test_get_mapped_task_instances(self) -> None:
"""Test case for get_mapped_task_instances
Get Mapped Task Instances
"""
pass
def test_get_task_instance(self) -> None:
"""Test case for get_task_instance
Get Task Instance
"""
pass
def test_get_task_instance_dependencies(self) -> None:
"""Test case for get_task_instance_dependencies
Get Task Instance Dependencies
"""
pass
def test_get_task_instance_dependencies_by_map_index(self) -> None:
"""Test case for get_task_instance_dependencies_by_map_index
Get Task Instance Dependencies
"""
pass
def test_get_task_instance_tries(self) -> None:
"""Test case for get_task_instance_tries
Get Task Instance Tries
"""
pass
def test_get_task_instance_try_details(self) -> None:
"""Test case for get_task_instance_try_details
Get Task Instance Try Details
"""
pass
def test_get_task_instances(self) -> None:
"""Test case for get_task_instances
Get Task Instances
"""
pass
def test_get_task_instances_batch(self) -> None:
"""Test case for get_task_instances_batch
Get Task Instances Batch
"""
pass
def test_patch_task_group_instances(self) -> None:
"""Test case for patch_task_group_instances
Patch Task Group Instances
"""
pass
def test_patch_task_group_instances_dry_run(self) -> None:
"""Test case for patch_task_group_instances_dry_run
Patch Task Group Instances Dry Run
"""
pass
def test_patch_task_instance(self) -> None:
"""Test case for patch_task_instance
Patch Task Instance
"""
pass
def test_patch_task_instance_by_map_index(self) -> None:
"""Test case for patch_task_instance_by_map_index
Patch Task Instance
"""
pass
def test_patch_task_instance_dry_run(self) -> None:
"""Test case for patch_task_instance_dry_run
Patch Task Instance Dry Run
"""
pass
def test_patch_task_instance_dry_run_by_map_index(self) -> None:
"""Test case for patch_task_instance_dry_run_by_map_index
Patch Task Instance Dry Run
"""
pass
def test_post_clear_task_instances(self) -> None:
"""Test case for post_clear_task_instances
Post Clear Task Instances
"""
pass
def test_update_hitl_detail(self) -> None:
"""Test case for update_hitl_detail
Update Hitl Detail
"""
pass
if __name__ == '__main__':
unittest.main()