Am
15. September 2026 erreichen alle Cloud Composer 1- und Cloud Composer 2-Umgebungen der Version 2.0.x das geplante Ende des Lebenszyklus und können nicht mehr verwendet werden. Wir empfehlen, die
Migration zu Cloud Composer 3 zu planen.
Beispiel für einen DAG-Test (Airflow 1)
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Beispiel für einen Einheitentest für einen DAG
Codebeispiel
Nächste Schritte
Wenn Sie nach Codebeispielen für andere Google Cloud -Produkte suchen und filtern möchten, können Sie den Google Cloud -Beispielbrowser verwenden.
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Schwer verständlich","hardToUnderstand","thumb-down"],["Informationen oder Beispielcode falsch","incorrectInformationOrSampleCode","thumb-down"],["Benötigte Informationen/Beispiele nicht gefunden","missingTheInformationSamplesINeed","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],[],[[["\u003cp\u003eThis page provides a sample unit test for a DAG (Directed Acyclic Graph) within the context of Google Cloud Composer.\u003c/p\u003e\n"],["\u003cp\u003eIt emphasizes the importance of setting up Application Default Credentials (ADC) for authenticating with Cloud Composer.\u003c/p\u003e\n"],["\u003cp\u003eThe provided code sample demonstrates how to verify a DAG module for syntax errors and the absence of cycles.\u003c/p\u003e\n"],["\u003cp\u003eThe page directs users to the Google Cloud sample browser for further code samples related to Google Cloud products.\u003c/p\u003e\n"]]],[],null,["# Example DAG test (Airflow 1)\n\nAn example unit test for a DAG\n\nCode sample\n-----------\n\n### Python\n\n\nTo authenticate to Cloud Composer, set up Application Default Credentials.\nFor more information, see\n\n[Set up authentication for a local development environment](/docs/authentication/set-up-adc-local-dev-environment).\n\n def test_dag_with_variables(set_variables):\n # Importing the module verifies that there are no syntax errors.\n from . import unit_testing_variables as module\n\n # The assert_has_valid_dag verifies that the module contains an Airflow DAG\n # and that the DAG contains no cycles.\n internal_unit_testing.assert_has_valid_dag(module)\n\nWhat's next\n-----------\n\n\nTo search and filter code samples for other Google Cloud products, see the\n[Google Cloud sample browser](/docs/samples?product=composer)."]]