-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
5 changed files
with
153 additions
and
2 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
providers/src/airflow/providers/amazon/aws/links/datasync.py
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,37 @@ | ||
# 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. | ||
from __future__ import annotations | ||
|
||
from airflow.providers.amazon.aws.links.base_aws import BASE_AWS_CONSOLE_LINK, BaseAwsLink | ||
|
||
|
||
class DataSyncTaskLink(BaseAwsLink): | ||
"""Helper class for constructing AWS DataSync Task console link.""" | ||
|
||
name = "DataSync Task" | ||
key = "datasync_task" | ||
format_str = BASE_AWS_CONSOLE_LINK + "/datasync/home?region={region_name}#" + "/tasks/{task_id}" | ||
|
||
|
||
class DataSyncTaskExecutionLink(BaseAwsLink): | ||
"""Helper class for constructing AWS DataSync TaskExecution console link.""" | ||
|
||
name = "DataSync Task Execution" | ||
key = "datasync_task_execution" | ||
format_str = ( | ||
BASE_AWS_CONSOLE_LINK + "/datasync/home?region={region_name}#/history/{task_id}/{task_execution_id}" | ||
) |
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
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,52 @@ | ||
# 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. | ||
from __future__ import annotations | ||
|
||
from airflow.providers.amazon.aws.links.datasync import DataSyncTaskExecutionLink, DataSyncTaskLink | ||
|
||
from providers.tests.amazon.aws.links.test_base_aws import BaseAwsLinksTestCase | ||
|
||
TASK_ID = "task-0b36221bf94ad2bdd" | ||
EXECUTION_ID = "exec-00000000000000004" | ||
|
||
|
||
class TestDataSyncTaskLink(BaseAwsLinksTestCase): | ||
link_class = DataSyncTaskLink | ||
|
||
def test_extra_link(self): | ||
task_id = TASK_ID | ||
self.assert_extra_link_url( | ||
expected_url=(f"https://console.aws.amazon.com/datasync/home?region=us-east-1#/tasks/{TASK_ID}"), | ||
region_name="us-east-1", | ||
aws_partition="aws", | ||
task_id=task_id, | ||
) | ||
|
||
|
||
class TestDataSyncTaskExecutionLink(BaseAwsLinksTestCase): | ||
link_class = DataSyncTaskExecutionLink | ||
|
||
def test_extra_link(self): | ||
self.assert_extra_link_url( | ||
expected_url=( | ||
f"https://console.aws.amazon.com/datasync/home?region=us-east-1#/history/{TASK_ID}/{EXECUTION_ID}" | ||
), | ||
region_name="us-east-1", | ||
aws_partition="aws", | ||
task_id=TASK_ID, | ||
task_execution_id=EXECUTION_ID, | ||
) |
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