blob: 63dc13a874e63af4f53d3ebccedffba790d92ae2 [file] [log] [blame]
# -*- coding: utf-8 -*-
#
# Licensed 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 imaplib
import unittest
from mock import Mock, patch, mock_open
from airflow import configuration, models
from airflow.contrib.hooks.imap_hook import ImapHook
from airflow.utils import db
imaplib_string = 'airflow.contrib.hooks.imap_hook.imaplib'
open_string = 'airflow.contrib.hooks.imap_hook.open'
def _create_fake_imap(mock_imaplib, with_mail=False, attachment_name='test1.csv'):
mock_conn = Mock(spec=imaplib.IMAP4_SSL)
mock_imaplib.IMAP4_SSL.return_value = mock_conn
mock_conn.login.return_value = ('OK', [])
if with_mail:
mock_conn.select.return_value = ('OK', [])
mock_conn.search.return_value = ('OK', [b'1'])
mail_string = \
'Content-Type: multipart/mixed; boundary=123\r\n--123\r\n' \
'Content-Disposition: attachment; filename="{}";' \
'Content-Transfer-Encoding: base64\r\nSWQsTmFtZQoxLEZlbGl4\r\n--123--'.format(attachment_name)
mock_conn.fetch.return_value = ('OK', [(b'', mail_string.encode('utf-8'))])
mock_conn.close.return_value = ('OK', [])
mock_conn.logout.return_value = ('OK', [])
return mock_conn
class TestImapHook(unittest.TestCase):
def setUp(self):
configuration.load_test_config()
db.merge_conn(
models.Connection(
conn_id='imap_default',
host='imap_server_address',
login='imap_user',
password='imap_password'
)
)
@patch(imaplib_string)
def test_connect_and_disconnect(self, mock_imaplib):
mock_conn = _create_fake_imap(mock_imaplib)
with ImapHook():
pass
mock_imaplib.IMAP4_SSL.assert_called_once_with('imap_server_address')
mock_conn.login.assert_called_once_with('imap_user', 'imap_password')
mock_conn.logout.assert_called_once()
@patch(imaplib_string)
def test_has_mail_attachments_found(self, mock_imaplib):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
has_attachment_in_inbox = imap_hook.has_mail_attachment('test1.csv')
self.assertTrue(has_attachment_in_inbox)
@patch(imaplib_string)
def test_has_mail_attachments_not_found(self, mock_imaplib):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
has_attachment_in_inbox = imap_hook.has_mail_attachment('test1.txt')
self.assertFalse(has_attachment_in_inbox)
@patch(imaplib_string)
def test_has_mail_attachments_with_regex_found(self, mock_imaplib):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
has_attachment_in_inbox = imap_hook.has_mail_attachment(
name='test(\d+).csv',
check_regex=True
)
self.assertTrue(has_attachment_in_inbox)
@patch(imaplib_string)
def test_has_mail_attachments_with_regex_not_found(self, mock_imaplib):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
has_attachment_in_inbox = imap_hook.has_mail_attachment(
name='test_(\d+).csv',
check_regex=True
)
self.assertFalse(has_attachment_in_inbox)
@patch(imaplib_string)
def test_retrieve_mail_attachments_found(self, mock_imaplib):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
attachments_in_inbox = imap_hook.retrieve_mail_attachments('test1.csv')
self.assertEquals(attachments_in_inbox, [('test1.csv', b'SWQsTmFtZQoxLEZlbGl4')])
@patch(imaplib_string)
def test_retrieve_mail_attachments_not_found(self, mock_imaplib):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
attachments_in_inbox = imap_hook.retrieve_mail_attachments('test1.txt')
self.assertEquals(attachments_in_inbox, [])
@patch(imaplib_string)
def test_retrieve_mail_attachments_with_regex_found(self, mock_imaplib):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
attachments_in_inbox = imap_hook.retrieve_mail_attachments(
name='test(\d+).csv',
check_regex=True
)
self.assertEquals(attachments_in_inbox, [('test1.csv', b'SWQsTmFtZQoxLEZlbGl4')])
@patch(imaplib_string)
def test_retrieve_mail_attachments_with_regex_not_found(self, mock_imaplib):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
attachments_in_inbox = imap_hook.retrieve_mail_attachments(
name='test_(\d+).csv',
check_regex=True
)
self.assertEquals(attachments_in_inbox, [])
@patch(imaplib_string)
def test_retrieve_mail_attachments_latest_only(self, mock_imaplib):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
attachments_in_inbox = imap_hook.retrieve_mail_attachments(
name='test1.csv',
latest_only=True
)
self.assertEquals(attachments_in_inbox, [('test1.csv', b'SWQsTmFtZQoxLEZlbGl4')])
@patch(open_string, new_callable=mock_open)
@patch(imaplib_string)
def test_download_mail_attachments_found(self, mock_imaplib, mock_open_method):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
imap_hook.download_mail_attachments('test1.csv', 'test_directory')
mock_open_method.assert_called_once_with('test_directory/test1.csv', 'wb')
mock_open_method().write.assert_called_once_with(b'SWQsTmFtZQoxLEZlbGl4')
@patch(open_string, new_callable=mock_open)
@patch(imaplib_string)
def test_download_mail_attachments_not_found(self, mock_imaplib, mock_open_method):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
imap_hook.download_mail_attachments('test1.txt', 'test_directory')
mock_open_method.assert_not_called()
mock_open_method().write.assert_not_called()
@patch(open_string, new_callable=mock_open)
@patch(imaplib_string)
def test_download_mail_attachments_with_regex_found(self, mock_imaplib, mock_open_method):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
imap_hook.download_mail_attachments(
name='test(\d+).csv',
local_output_directory='test_directory',
check_regex=True
)
mock_open_method.assert_called_once_with('test_directory/test1.csv', 'wb')
mock_open_method().write.assert_called_once_with(b'SWQsTmFtZQoxLEZlbGl4')
@patch(open_string, new_callable=mock_open)
@patch(imaplib_string)
def test_download_mail_attachments_with_regex_not_found(self, mock_imaplib, mock_open_method):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
imap_hook.download_mail_attachments(
name='test_(\d+).csv',
local_output_directory='test_directory',
check_regex=True
)
mock_open_method.assert_not_called()
mock_open_method().write.assert_not_called()
@patch(open_string, new_callable=mock_open)
@patch(imaplib_string)
def test_download_mail_attachments_with_latest_only(self, mock_imaplib, mock_open_method):
_create_fake_imap(mock_imaplib, with_mail=True)
with ImapHook() as imap_hook:
imap_hook.download_mail_attachments(
name='test1.csv',
local_output_directory='test_directory',
latest_only=True
)
mock_open_method.assert_called_once_with('test_directory/test1.csv', 'wb')
mock_open_method().write.assert_called_once_with(b'SWQsTmFtZQoxLEZlbGl4')
@patch(open_string, new_callable=mock_open)
@patch(imaplib_string)
def test_download_mail_attachments_with_escaping_chars(self, mock_imaplib, mock_open_method):
_create_fake_imap(mock_imaplib, with_mail=True, attachment_name='../test1.csv')
with ImapHook() as imap_hook:
imap_hook.download_mail_attachments(
name='test1.csv',
local_output_directory='test_directory'
)
mock_open_method.assert_not_called()
mock_open_method().write.assert_not_called()
@patch(open_string, new_callable=mock_open)
@patch(imaplib_string)
def test_download_mail_attachments_with_symlink(self, mock_imaplib, mock_open_method):
_create_fake_imap(mock_imaplib, with_mail=True, attachment_name='initrd.img')
with ImapHook() as imap_hook:
imap_hook.download_mail_attachments(
name='test1.csv',
local_output_directory='test_directory'
)
mock_open_method.assert_not_called()
mock_open_method().write.assert_not_called()
if __name__ == '__main__':
unittest.main()