Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Azure] Supply guid from django_guid as the correlationId on storage calls #1178

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
33 changes: 28 additions & 5 deletions storages/backends/azure_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,20 @@
from storages.utils import setting
from storages.utils import to_bytes

try:
from django_guid import get_guid
except ImportError:
def get_guid():
return None


def _make_headers():
headers = {}
correlation_id = get_guid()
if correlation_id is not None:
headers["x-ms-client-request-id"] = correlation_id
return headers


@deconstructible
class AzureStorageFile(File):
Expand All @@ -47,7 +61,9 @@ def _get_file(self):

if "r" in self._mode or "a" in self._mode:
download_stream = self._storage.client.download_blob(
self._path, timeout=self._storage.timeout
self._path,
timeout=self._storage.timeout,
headers=_make_headers(),
)
download_stream.readinto(file)
if "r" in self._mode:
Expand Down Expand Up @@ -252,13 +268,17 @@ def exists(self, name):

def delete(self, name):
try:
self.client.delete_blob(self._get_valid_path(name), timeout=self.timeout)
self.client.delete_blob(
self._get_valid_path(name),
timeout=self.timeout,
headers=_make_headers(),
)
except ResourceNotFoundError:
pass

def size(self, name):
blob_client = self.client.get_blob_client(self._get_valid_path(name))
properties = blob_client.get_blob_properties(timeout=self.timeout)
properties = blob_client.get_blob_properties(timeout=self.timeout, headers=_make_headers())
return properties.size

def _save(self, name, content):
Expand All @@ -278,6 +298,7 @@ def _save(self, name, content):
max_concurrency=self.upload_max_conn,
timeout=self.timeout,
overwrite=self.overwrite_files,
headers=_make_headers(),
)
return cleaned_name

Expand Down Expand Up @@ -350,7 +371,7 @@ def get_modified_time(self, name):
USE_TZ is True, otherwise returns a naive datetime in the local timezone.
"""
blob_client = self.client.get_blob_client(self._get_valid_path(name))
properties = blob_client.get_blob_properties(timeout=self.timeout)
properties = blob_client.get_blob_properties(timeout=self.timeout, headers=_make_headers())
if not setting("USE_TZ", False):
return timezone.make_naive(properties.last_modified)

Expand All @@ -372,7 +393,9 @@ def list_all(self, path=""):
return [
blob.name
for blob in self.client.list_blobs(
name_starts_with=path, timeout=self.timeout
name_starts_with=path,
timeout=self.timeout,
headers=_make_headers(),
)
]

Expand Down
159 changes: 152 additions & 7 deletions tests/test_azure.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import datetime
import uuid
from datetime import timedelta
from unittest import mock

Expand All @@ -7,10 +8,21 @@
from django.test import TestCase
from django.test import override_settings
from django.utils.timezone import make_aware
from django_guid import set_guid

from storages.backends import azure_storage


def set_and_expect_guid():
"""
Set a GUID via the django_guid module and expect it to be set in the headers.
"""

guid = str(uuid.uuid4())
set_guid(guid)
return {'x-ms-client-request-id': guid}


class AzureStorageTest(TestCase):
def setUp(self, *args):
self.storage = azure_storage.AzureStorage()
Expand Down Expand Up @@ -254,7 +266,8 @@ def test_container_client_params_connection_string(self):

# From boto3

def test_storage_save(self):
@mock.patch('storages.backends.azure_storage.get_guid', return_value=None)
def test_storage_save(self, mocked_get_guid):
"""
Test saving a file
"""
Expand All @@ -270,17 +283,65 @@ def test_storage_save(self):
max_concurrency=2,
timeout=20,
overwrite=True,
headers={},
)
c_mocked.assert_called_once_with(
content_type="text/plain", content_encoding=None, cache_control=None
)

def test_storage_open_write(self):
def test_storage_save_with_guid(self):
"""
Test saving a file
"""
name = 'test storage save.txt'
content = ContentFile('new content')
headers = set_and_expect_guid()
with mock.patch('storages.backends.azure_storage.ContentSettings') as c_mocked:
c_mocked.return_value = 'content_settings_foo'
self.assertEqual(self.storage.save(name, content), name)
self.storage._client.upload_blob.assert_called_once_with(
name,
content.file,
content_settings='content_settings_foo',
max_concurrency=2,
timeout=20,
overwrite=True,
headers=headers)
c_mocked.assert_called_once_with(
content_type='text/plain',
content_encoding=None,
cache_control=None)
self.storage._custom_client.upload_blob.assert_not_called()

@mock.patch('storages.backends.azure_storage.get_guid', return_value=None)
def test_storage_open_write(self, mocked_get_guid):
"""
Test opening a file in write mode
"""
name = 'test_open_for_writïng.txt'
content = 'new content'

file = self.storage.open(name, 'w')
file.write(content)
written_file = file.file
file.close()
self.storage._client.upload_blob.assert_called_once_with(
name,
written_file,
content_settings=mock.ANY,
max_concurrency=2,
timeout=20,
overwrite=True,
headers={})
self.storage._custom_client.upload_blob.assert_not_called()

def test_storage_open_write_with_guid(self):
"""
Test opening a file in write mode
"""
name = "test_open_for_writïng.txt"
content = "new content"
headers = set_and_expect_guid()

file = self.storage.open(name, "w")
file.write(content)
Expand All @@ -293,9 +354,11 @@ def test_storage_open_write(self):
max_concurrency=2,
timeout=20,
overwrite=True,
headers=headers
)

def test_storage_exists(self):
@mock.patch('storages.backends.azure_storage.get_guid', return_value=None)
def test_storage_exists(self, mocked_get_guid):
overwrite_files = [True, False]
for owf in overwrite_files:
self.storage.overwrite_files = owf
Expand All @@ -306,11 +369,32 @@ def test_storage_exists(self):
assert_(self.storage.exists("blob"))
self.assertEqual(client_mock.exists.call_count, call_count)

def test_delete_blob(self):
def test_storage_exists_with_guid(self):
blob_name = "blob"
headers = set_and_expect_guid()
client_mock = mock.MagicMock()
custom_client_mock = mock.MagicMock()
self.storage._client.get_blob_client.return_value = client_mock
self.storage._custom_client.get_blob_client.return_value = client_mock
self.assertTrue(self.storage.exists(blob_name))
client_mock.get_blob_properties.assert_called_once_with(headers=headers)
self.assertEqual(custom_client_mock.exists.call_count, 0)

@mock.patch('storages.backends.azure_storage.get_guid', return_value=None)
def test_delete_blob(self, mocked_get_guid):
self.storage.delete("name")
self.storage._client.delete_blob.assert_called_once_with(
"name", timeout=20, headers={})

def test_delete_blob_with_guid(self):
headers = set_and_expect_guid()
self.storage.delete("name")
self.storage._client.delete_blob.assert_called_once_with("name", timeout=20)
self.storage._client.delete_blob.assert_called_once_with(
"name", timeout=20, headers=headers)
self.storage._custom_client.delete_blob.assert_not_called()

def test_storage_listdir_base(self):
@mock.patch('storages.backends.azure_storage.get_guid', return_value=None)
def test_storage_listdir_base(self, mocked_get_guid):
file_names = ["some/path/1.txt", "2.txt", "other/path/3.txt", "4.txt"]

result = []
Expand All @@ -322,17 +406,78 @@ def test_storage_listdir_base(self):

dirs, files = self.storage.listdir("")
self.storage._client.list_blobs.assert_called_with(
name_starts_with="", timeout=20
name_starts_with="", timeout=20, headers={}
)
self.assertEqual(len(dirs), 0)


self.assertEqual(len(files), 4)
for filename in ["2.txt", "4.txt", "other/path/3.txt", "some/path/1.txt"]:
self.assertTrue(
filename in files,
""" "{}" not in file list "{}".""".format(filename, files),
)

def test_storage_listdir_base_with_guid(self):
file_names = ["some/path/1.txt", "2.txt", "other/path/3.txt", "4.txt"]
headers = set_and_expect_guid()

result = []
for p in file_names:
obj = mock.MagicMock()
obj.name = p
result.append(obj)
self.storage._client.list_blobs.return_value = iter(result)

dirs, files = self.storage.listdir("")
self.storage._client.list_blobs.assert_called_with(
name_starts_with="", timeout=20, headers=headers)
self.storage._custom_client.list_blobs.assert_not_called()
# Rest of functionality is tested in test_storage_listdir_base

@mock.patch('storages.backends.azure_storage.get_guid', return_value=None)
def test_storage_listdir_subdir(self, mocked_get_guid):
file_names = ["some/path/1.txt", "some/2.txt"]

result = []
for p in file_names:
obj = mock.MagicMock()
obj.name = p
result.append(obj)
self.storage._client.list_blobs.return_value = iter(result)

dirs, files = self.storage.listdir("some/")
self.storage._client.list_blobs.assert_called_with(
name_starts_with="some/", timeout=20, headers={})
self.storage._custom_client.list_blobs.assert_not_called()

self.assertEqual(len(dirs), 1)
self.assertTrue(
'path' in dirs,
""" "path" not in directory list "{}".""".format(dirs))

self.assertEqual(len(files), 1)
self.assertTrue(
'2.txt' in files,
""" "2.txt" not in files list "{}".""".format(files))

def test_storage_listdir_subdir_with_guid(self):
file_names = ["some/path/1.txt", "some/2.txt"]
headers = set_and_expect_guid()

result = []
for p in file_names:
obj = mock.MagicMock()
obj.name = p
result.append(obj)
self.storage._client.list_blobs.return_value = iter(result)

dirs, files = self.storage.listdir("some/")
self.storage._client.list_blobs.assert_called_with(
name_starts_with="some/", timeout=20, headers=headers)
self.storage._custom_client.list_blobs.assert_not_called()
# Rest of functionality is tested in test_storage_listdir_subdir

def test_size_of_file(self):
props = BlobProperties()
props.size = 12
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ deps =
django5.0: django~=5.0.0
django5.1: django~=5.1.0
djangomain: https://github.com/django/django/archive/main.tar.gz

django-guid
moto<5
pytest
pytest-cov
Expand Down