-
Notifications
You must be signed in to change notification settings - Fork 14.5k
/
test_filesystem.py
218 lines (195 loc) · 7.38 KB
/
test_filesystem.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#
# 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
import os
import shutil
import tempfile
import pytest
from airflow.exceptions import AirflowSensorTimeout
from airflow.models.dag import DAG
from airflow.sensors.filesystem import FileSensor
from airflow.utils.timezone import datetime
TEST_DAG_ID = "unit_tests_file_sensor"
DEFAULT_DATE = datetime(2015, 1, 1)
class TestFileSensor:
def setup_method(self):
from airflow.hooks.filesystem import FSHook
hook = FSHook()
args = {"owner": "airflow", "start_date": DEFAULT_DATE}
dag = DAG(TEST_DAG_ID + "test_schedule_dag_once", default_args=args)
self.hook = hook
self.dag = dag
def test_simple(self):
with tempfile.NamedTemporaryFile() as tmp:
task = FileSensor(
task_id="test",
filepath=tmp.name[1:],
fs_conn_id="fs_default",
dag=self.dag,
timeout=0,
)
task._hook = self.hook
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
def test_file_in_nonexistent_dir(self):
temp_dir = tempfile.mkdtemp()
task = FileSensor(
task_id="test",
filepath=temp_dir[1:] + "/file",
fs_conn_id="fs_default",
dag=self.dag,
timeout=0,
poke_interval=1,
)
task._hook = self.hook
try:
with pytest.raises(AirflowSensorTimeout):
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
finally:
shutil.rmtree(temp_dir)
def test_empty_dir(self):
temp_dir = tempfile.mkdtemp()
task = FileSensor(
task_id="test",
filepath=temp_dir[1:],
fs_conn_id="fs_default",
dag=self.dag,
timeout=0,
poke_interval=1,
)
task._hook = self.hook
try:
with pytest.raises(AirflowSensorTimeout):
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
finally:
shutil.rmtree(temp_dir)
def test_file_in_dir(self):
temp_dir = tempfile.mkdtemp()
task = FileSensor(
task_id="test",
filepath=temp_dir[1:],
fs_conn_id="fs_default",
dag=self.dag,
timeout=0,
)
task._hook = self.hook
try:
# `touch` the dir
open(temp_dir + "/file", "a").close()
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
finally:
shutil.rmtree(temp_dir)
def test_default_fs_conn_id(self):
with tempfile.NamedTemporaryFile() as tmp:
task = FileSensor(
task_id="test",
filepath=tmp.name[1:],
dag=self.dag,
timeout=0,
)
task._hook = self.hook
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
def test_wildcard_file(self):
suffix = ".txt"
with tempfile.NamedTemporaryFile(suffix=suffix) as tmp:
fileglob = os.path.join(os.path.dirname(tmp.name), "*" + suffix)
task = FileSensor(
task_id="test",
filepath=fileglob,
fs_conn_id="fs_default",
dag=self.dag,
timeout=0,
)
task._hook = self.hook
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
def test_wildcard_empty_directory(self):
with tempfile.TemporaryDirectory() as temp_dir:
with tempfile.TemporaryDirectory(suffix="subdir", dir=temp_dir):
task = FileSensor(
task_id="test",
filepath=os.path.join(temp_dir, "*dir"),
fs_conn_id="fs_default",
dag=self.dag,
timeout=0,
)
task._hook = self.hook
# No files in dir
with pytest.raises(AirflowSensorTimeout):
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
def test_wildcard_directory_with_files(self):
with tempfile.TemporaryDirectory() as temp_dir:
with tempfile.TemporaryDirectory(suffix="subdir", dir=temp_dir) as subdir:
task = FileSensor(
task_id="test",
filepath=os.path.join(temp_dir, "*dir"),
fs_conn_id="fs_default",
dag=self.dag,
timeout=0,
)
task._hook = self.hook
# `touch` the file in subdir
open(os.path.join(subdir, "file"), "a").close()
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
def test_wildcared_directory(self):
temp_dir = tempfile.mkdtemp()
subdir = tempfile.mkdtemp(dir=temp_dir)
task = FileSensor(
task_id="test",
filepath=temp_dir + "/**",
fs_conn_id="fs_default",
dag=self.dag,
timeout=0,
poke_interval=1,
recursive=True,
)
task._hook = self.hook
try:
# `touch` the file in subdir
open(subdir + "/file", "a").close()
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
finally:
shutil.rmtree(temp_dir)
def test_subdirectory_not_empty(self):
suffix = ".txt"
temp_dir = tempfile.mkdtemp()
subdir = tempfile.mkdtemp(dir=temp_dir)
with tempfile.NamedTemporaryFile(suffix=suffix, dir=subdir):
task = FileSensor(
task_id="test",
filepath=temp_dir,
fs_conn_id="fs_default",
dag=self.dag,
timeout=0,
)
task._hook = self.hook
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
shutil.rmtree(temp_dir)
def test_subdirectory_empty(self):
temp_dir = tempfile.mkdtemp()
tempfile.mkdtemp(dir=temp_dir)
task = FileSensor(
task_id="test",
filepath=temp_dir,
fs_conn_id="fs_default",
dag=self.dag,
timeout=0,
poke_interval=1,
)
task._hook = self.hook
with pytest.raises(AirflowSensorTimeout):
task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, ignore_ti_state=True)
shutil.rmtree(temp_dir)