Skip to content

Commit

Permalink
Improve documentation and examples in example_asana.py (#15959)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmelot committed Jul 25, 2021
1 parent f81ba62 commit e7bd82a
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 12 deletions.
46 changes: 34 additions & 12 deletions airflow/providers/asana/example_dags/example_asana.py
Expand Up @@ -15,8 +15,10 @@
# specific language governing permissions and limitations
# under the License.
"""
Example showing how to use Asana CreateTaskOperator.
Example DAG showing how to use Asana TaskOperators.
"""
import os
from datetime import datetime, timedelta

from airflow import DAG
from airflow.providers.asana.operators.asana_tasks import (
Expand All @@ -31,46 +33,66 @@
"owner": "airflow",
}

ASANA_TASK_TO_UPDATE = os.environ.get("ASANA_TASK_TO_UPDATE")
ASANA_TASK_TO_DELETE = os.environ.get("ASANA_TASK_TO_DELETE")
# This example assumes a default project ID has been specified in the connection. If you
# provide a different id in ASANA_PROJECT_ID_OVERRIDE, it will override this default
# project ID in the AsanaFindTaskOperator example below
ASANA_PROJECT_ID_OVERRIDE = os.environ.get("ASANA_PROJECT_ID_OVERRIDE")
# This connection should specify a personal access token and a default project ID
CONN_ID = os.environ.get("ASANA_CONNECTION_ID")


with DAG(
"example_asana",
default_args=default_args,
start_date=days_ago(1),
tags=["example"],
) as dag:
conn_id = "asana_test"

# [START run_asana_create_task_operator]
# Create a task. `task_parameters` is used to specify attributes the new task should have.
# You must specify at least one of 'workspace', 'projects', or 'parent' in `task_parameters`
# unless these are specified in the connection. Any attributes you specify in
# `task_parameters` will override values from the connection.
create = AsanaCreateTaskOperator(
task_id="run_asana_create_task",
task_parameters={"projects": "your_project"},
conn_id=conn_id,
name="Test Task Create",
task_parameters={"notes": "Some notes about the task."},
conn_id=CONN_ID,
name="New Task Name",
)
# [END run_asana_create_task_operator]

# [START run_asana_find_task_operator]
# Find tasks matching search criteria. `search_parameters` is used to specify these criteria.
# You must specify `project`, `section`, `tag`, `user_task_list`, or both
# `assignee` and `workspace` in `search_parameters` or in the connection.
# This example shows how you can override a project specified in the connection by
# passing a different value for project into `search_parameters`
one_week_ago = (datetime.now() - timedelta(days=7)).strftime("%Y-%m-%d")
find = AsanaFindTaskOperator(
task_id="run_asana_find_task",
search_parameters={"project": "your_project"},
conn_id=conn_id,
search_parameters={"project": ASANA_PROJECT_ID_OVERRIDE, "modified_since": one_week_ago},
conn_id=CONN_ID,
)
# [END run_asana_find_task_operator]

# [START run_asana_update_task_operator]
# Update a task. `task_parameters` is used to specify the new values of
# task attributes you want to update.
update = AsanaUpdateTaskOperator(
task_id="run_asana_update_task",
asana_task_gid="your_task_id",
asana_task_gid=ASANA_TASK_TO_UPDATE,
task_parameters={"notes": "This task was updated!", "completed": True},
conn_id=conn_id,
conn_id=CONN_ID,
)
# [END run_asana_update_task_operator]

# [START run_asana_delete_task_operator]
# Delete a task. This task will complete successfully even if `asana_task_gid` does not exist.
delete = AsanaDeleteTaskOperator(
task_id="run_asana_delete_task",
conn_id=conn_id,
asana_task_gid="your_task_id",
conn_id=CONN_ID,
asana_task_gid=ASANA_TASK_TO_DELETE,
)
# [END run_asana_delete_task_operator]

Expand Down
31 changes: 31 additions & 0 deletions tests/providers/asana/operators/test_asana_system.py
@@ -0,0 +1,31 @@
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import os

import pytest

from tests.test_utils import AIRFLOW_MAIN_FOLDER
from tests.test_utils.system_tests_class import SystemTest

DAG_FOLDER = os.path.join(AIRFLOW_MAIN_FOLDER, "airflow", "providers", "asana", "example_dags")


@pytest.mark.system("asana")
class AsanaExampleDagsSystemTest(SystemTest):
def test_run_example_dag_asana(self):
self.run_dag("example_asana", DAG_FOLDER)

0 comments on commit e7bd82a

Please sign in to comment.