T53890: Improving static content serving

Static files are now served with an 8-character hash before the last
extension. For example, `tutti.min.js` is now served as
`tutti.min.abcd1234.js`. When doing a request the hash is removed before
serving the static file.

The hash must be 8 characters long, and is taken from STATIC_FILE_HASH.
It is up to the deployment to change this configuration variable
whenever static files change. This forces browsers that download newly
deployed HTML to also refresh the dependencies (most importantly
JS/CSS).

For this to work, the URL must be built with `url_for('static_xxx',
filename='/path/to/file')`. The 'static' module still returns regular,
hashless URLs.
This commit is contained in:
2018-03-23 16:34:33 +01:00
parent 0cf45c0d78
commit 12272750c3
12 changed files with 110 additions and 23 deletions

View File

@@ -2,6 +2,8 @@ import unittest
import flask
from pillar.tests import AbstractPillarTest
class FlaskExtraTest(unittest.TestCase):
def test_vary_xhr(self):
@@ -84,3 +86,25 @@ class EnsureSchemaTest(unittest.TestCase):
self.assertEqual('/some/path/only', pillar.flask_extra.ensure_schema('/some/path/only'))
self.assertEqual('https://hostname/path',
pillar.flask_extra.ensure_schema('//hostname/path'))
class HashedPathConverterTest(AbstractPillarTest):
def test_to_python(self):
from pillar.flask_extra import HashedPathConverter
hpc = HashedPathConverter({})
self.assertEqual('/path/to/file.min.js', hpc.to_python('/path/to/file.min.abcd1234.js'))
self.assertEqual('/path/to/file.js', hpc.to_python('/path/to/file.abcd1234.js'))
self.assertEqual('/path/to/file', hpc.to_python('/path/to/file'))
self.assertEqual('', hpc.to_python(''))
def test_to_url(self):
from pillar.flask_extra import HashedPathConverter
hpc = HashedPathConverter({})
with self.app.app_context():
self.assertEqual('/path/to/file.min.abcd1234.js', hpc.to_url('/path/to/file.min.js'))
self.assertEqual('/path/to/file.abcd1234.js', hpc.to_url('/path/to/file.js'))
self.assertEqual('/path/to/file', hpc.to_url('/path/to/file'))
self.assertEqual('', hpc.to_url(''))