DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
*Test Case ID* | *Test Objective* | *Test Steps* | *Expected Outcome* | *Test Type* | Execution status |
|---|---|---|---|---|---|
TC-001 | Verify task execution through the Task SDK interface | 1. Implement a sample DAG using Task SDK. | Task should execute successfully using the SDK without direct database access. | Integration Test | Pass |
TC-002 | Ensure compatibility of Task SDK with existing Airflow hooks and operators | 1. Implement a DAG with existing Airflow operators and hooks. | Task should execute successfully. | Regression Test | Pass |
TC-003 | Measure the performance of tasks executed via Task SDK | 1. Create a DAG with multiple tasks. | Execution times should be within acceptable limits, with minimal overhead introduced by the SDK interface. | Performance Test | Pass |
TC-004 | Verify error handling and task retries within the Task SDK | 1. Create a task that is designed to fail (e.g., a division by zero error). | Task should fail and automatically retry according to configured retry logic, with proper error messages logged by the Task SDK. | Functional/Negative Test | Pass |
TC-005 | Verify Task SDK can run "the same" DAGs as on v2.x (*with minimal to no DAG file-level changes). Ensure all the important features like: - Dynamic Mapping - Datasets - Setup & Teardown - Async Operators - Timetables - XCom Validation - Variable Usage - Using Context Variables( https://airflow.apache.org/docs/apache-airflow/stable/templates-ref.html). | 1. Use the same regression DAGs of 2.x. | DAGs should be executed without any issues. | Compatibility Test | Pass |
TC-006 | Validate task metadata and event tracking through the Task SDK | 1. Create a sample DAG with tasks using the Task SDK. | Task metadata and events (e.g., start time, end time, status) should be accurately captured and accessible through the Task SDK interface. | Functional Test | Pass |
TC-007 | Direct DB access from workers will not be allowed at all. <br> Note: Any custom operators that access the database directly will need rewriting. | 1. Use any existing V2.x task which used to connect with the database. | Task will not be permitted to connect to the Airflow metadata database. | Negative Test | Pass |
TC-008 | Pre-declare task variables, connections, and only allow those in one mode. | 1. Create a task which can pre-declare variables and connections to use. | Only declared variables and connections should be allowed to be accessed. | Positive Test | Pass |
TC-009 | Verify Task logs are visible correctly. | 1. Create a DAG which prints huge task logs. | Task log should be visible properly. | Positive Test | Pass |
TC-010 | Verify running CLI commands. | 1. Execute CLI commands. | All the CLI commands should execute successfully. | Positive Test | Pass |
TC-011 | Verify executing API endpoint. | 1. Execute all API endpoints. | All the API endpoints should execute successfully. | Positive Test | Pass |
TC-012 | Verify DAG-parsing performance. | 1. Import a large number of DAGs. | DAG-parsing performance and functionality should work as expected. | Positive Test | Pass |
TC-013 | Validate language-agnostic task execution. | 1. Install the Golang Task SDK. | Tasks should execute successfully, confirming language-agnostic support in the Task SDK. | Positive Test | Pass |