-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
173 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
# | ||
# 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. | ||
""" | ||
### Tutorial Documentation | ||
Documentation that goes along with the Airflow tutorial located | ||
[here](https://airflow.apache.org/tutorial.html) | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
# [START tutorial] | ||
# [START import_module] | ||
import textwrap | ||
from datetime import datetime, timedelta | ||
|
||
# The DAG object; we'll need this to instantiate a DAG | ||
from airflow.models.dag import DAG | ||
|
||
# Operators; we need this to operate! | ||
from airflow.operators.bash import BashOperator | ||
|
||
# [END import_module] | ||
|
||
|
||
# [START instantiate_dag] | ||
with DAG( | ||
"tutorial", | ||
# [START default_args] | ||
# These args will get passed on to each operator | ||
# You can override them on a per-task basis during operator initialization | ||
default_args={ | ||
"depends_on_past": False, | ||
"email": ["[email protected]"], | ||
"email_on_failure": False, | ||
"email_on_retry": False, | ||
"retries": 1, | ||
"retry_delay": timedelta(minutes=5), | ||
# 'queue': 'bash_queue', | ||
# 'pool': 'backfill', | ||
# 'priority_weight': 10, | ||
# 'end_date': datetime(2016, 1, 1), | ||
# 'wait_for_downstream': False, | ||
# 'sla': timedelta(hours=2), | ||
# 'execution_timeout': timedelta(seconds=300), | ||
# 'on_failure_callback': some_function, # or list of functions | ||
# 'on_success_callback': some_other_function, # or list of functions | ||
# 'on_retry_callback': another_function, # or list of functions | ||
# 'sla_miss_callback': yet_another_function, # or list of functions | ||
# 'on_skipped_callback': another_function, #or list of functions | ||
# 'trigger_rule': 'all_success' | ||
}, | ||
# [END default_args] | ||
description="A simple tutorial DAG", | ||
schedule=timedelta(days=1), | ||
start_date=datetime(2021, 1, 1), | ||
catchup=False, | ||
tags=["example"], | ||
) as dag: | ||
# [END instantiate_dag] | ||
# t1, t2 and t3 are examples of tasks created by instantiating operators | ||
# [START basic_task] | ||
|
||
t1 = BashOperator( | ||
task_id="print_date", | ||
bash_command="date", | ||
) | ||
|
||
t2 = BashOperator( | ||
task_id="sleep", | ||
depends_on_past=False, | ||
bash_command="sleep 5", | ||
retries=3, | ||
) | ||
# [END basic_task] | ||
|
||
# [START documentation] | ||
t1.doc_md = textwrap.dedent( | ||
"""\ | ||
#### Task Documentation | ||
You can document your task using the attributes `doc_md` (markdown), | ||
`doc` (plain text), `doc_rst`, `doc_json`, `doc_yaml` which gets | ||
rendered in the UI's Task Instance Details page. | ||
 | ||
**Image Credit:** Randall Munroe, [XKCD](https://xkcd.com/license.html) | ||
""" | ||
) | ||
|
||
dag.doc_md = ( | ||
__doc__ # providing that you have a docstring at the beginning of the DAG; OR | ||
) | ||
dag.doc_md = """ | ||
This is a documentation placed anywhere | ||
""" # otherwise, type it like this | ||
# [END documentation] | ||
|
||
# [START jinja_template] | ||
templated_command = textwrap.dedent( | ||
""" | ||
{% for i in range(5) %} | ||
echo "{{ ds }}" | ||
echo "{{ macros.ds_add(ds, 7)}}" | ||
{% endfor %} | ||
""" | ||
) | ||
|
||
t3 = BashOperator( | ||
task_id="templated", | ||
depends_on_past=False, | ||
bash_command=templated_command, | ||
) | ||
# [END jinja_template] | ||
|
||
t1 >> [t2, t3] | ||
# [END tutorial] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
import csv | ||
from pathlib import Path | ||
import pytest | ||
from rialto_airflow.utils import create_snapshot_dir, rialto_authors_orcids | ||
|
||
from rialto_airflow.utils import create_snapshot_dir | ||
|
||
@pytest.fixture | ||
def authors_csv(tmp_path): | ||
# Create a fixture authors CSV file | ||
fixture_file = tmp_path / "authors.csv" | ||
with open(fixture_file, "w", newline="") as csvfile: | ||
writer = csv.writer(csvfile) | ||
writer.writerow(["sunetid", "orcidid"]) | ||
writer.writerow(["author1", "https://orcid.org/0000-0000-0000-0001"]) | ||
writer.writerow(["author2", "https://orcid.org/0000-0000-0000-0002"]) | ||
return fixture_file | ||
|
||
|
||
def test_create_snapshot_dir(tmpdir): | ||
snap_dir = Path(create_snapshot_dir(tmpdir)) | ||
assert snap_dir.is_dir() | ||
|
||
|
||
def test_rialto_authors_orcids(tmp_path, authors_csv): | ||
orcids = rialto_authors_orcids(authors_csv) | ||
assert len(orcids) == 2 | ||
assert "https://orcid.org/0000-0000-0000-0001" in orcids |