Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions plugins/esi/esi.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1292,6 +1292,20 @@ isTxnTransformable(TSHttpTxn txnp, bool is_cache_txn, bool *intercept_header, bo
return false;
}

// if origin returns status 304, check cached response instead
int response_status;
if (is_cache_txn == false) {
response_status = TSHttpHdrStatusGet(bufp, hdr_loc);
if (response_status == TS_HTTP_STATUS_NOT_MODIFIED) {
TSHandleMLocRelease(bufp, TS_NULL_MLOC, hdr_loc);
header_obtained = TSHttpTxnCachedRespGet(txnp, &bufp, &hdr_loc);
if (header_obtained != TS_SUCCESS) {
TSError("[esi][%s] Couldn't get txn cache response header", __FUNCTION__);
return false;
}
}
}

do {
*intercept_header = checkHeaderValue(bufp, hdr_loc, SERVER_INTERCEPT_HEADER, SERVER_INTERCEPT_HEADER_LEN);
if (*intercept_header) {
Expand Down
210 changes: 210 additions & 0 deletions tests/gold_tests/pluginTest/esi/esi_304.test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,210 @@
'''
Test the ESI plugin when origin returns 304 response.
'''
# 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.

import os

Test.Summary = '''
Test the ESI plugin when origin returns 304 response.
'''

Test.SkipUnless(
Condition.PluginExists('esi.so'),
)


class EsiTest():
"""
A class that encapsulates the configuration and execution of a set of ESI
test cases.
"""

""" static: The same server Process is used across all tests. """
_server = None

""" static: A counter to keep the ATS process names unique across tests. """
_ts_counter = 0

""" static: A counter to keep any output file names unique across tests. """
_output_counter = 0

""" The ATS process for this set of test cases. """
_ts = None

def __init__(self, plugin_config):
"""
Args:
plugin_config (str): The config line to place in plugin.config for
the ATS process.
"""
if EsiTest._server is None:
EsiTest._server = EsiTest._create_server()

self._ts = EsiTest._create_ats(self, plugin_config)

@staticmethod
def _create_server():
"""
Create and start a server process.
"""
# Configure our server.
server = Test.MakeOriginServer("server", lookup_key="{%uuid}")

# Generate the set of ESI responses.
request_header = {
"headers":
"GET /esi_etag.php HTTP/1.1\r\n" +
"Host: www.example.com\r\n" +
"uuid: first\r\n" +
"Content-Length: 0\r\n\r\n",
"timestamp": "1469733493.993",
"body": ""
}
esi_body = r'''<html>
<body>
Hello, ESI 304 test
</body>
</html>
'''
response_header = {
"headers":
"HTTP/1.1 200 OK\r\n" +
"X-Esi: 1\r\n" +
"Cache-Control: public, max-age=0\r\n" +
'Etag: "esi_304_test"\r\n' +
"Content-Type: text/html\r\n" +
"Connection: close\r\n" +
"Content-Length: {}\r\n".format(len(esi_body)) +
"\r\n",
"timestamp": "1469733493.993",
"body": esi_body
}
server.addResponse("sessionfile.log", request_header, response_header)

request_header = {
"headers":
"GET /esi_etag.php HTTP/1.1\r\n" +
"Host: www.example.com\r\n" +
"uuid: second\r\n" +
'If-None-Match: "esi_304_test"\r\n' +
"Content-Length: 0\r\n\r\n",
"timestamp": "1469733493.993",
"body": ""
}
response_header = {
"headers":
"HTTP/1.1 304 Not Modified\r\n" +
"Content-Type: text/html\r\n" +
"Connection: close\r\n" +
"Content-Length: 0\r\n" +
"\r\n",
"timestamp": "1469733493.993",
"body": ""
}
server.addResponse("sessionfile.log", request_header, response_header)

request_header = {
"headers":
"GET /date.php HTTP/1.1\r\n" +
"Host: www.example.com\r\n" +
"uuid: date\r\n" +
"Content-Length: 0\r\n\r\n",
"timestamp": "1469733493.993",
"body": ""
}
date_body = r'''ESI 304 test
No Date
'''
response_header = {
"headers":
"HTTP/1.1 200 OK\r\n" +
"Content-Type: text/html\r\n" +
"Connection: close\r\n" +
"Content-Length: {}\r\n".format(len(date_body)) +
"\r\n",
"timestamp": "1469733493.993",
"body": date_body
}
server.addResponse("sessionfile.log", request_header, response_header)

# Create a run to start the server.
tr = Test.AddTestRun("Start the server.")
tr.Processes.Default.StartBefore(server)
tr.Processes.Default.Command = "echo starting the server"
tr.Processes.Default.ReturnCode = 0
tr.StillRunningAfter = server

return server

@staticmethod
def _create_ats(self, plugin_config):
"""
Create and start an ATS process.
"""
EsiTest._ts_counter += 1

# Configure ATS with a vanilla ESI plugin configuration.
ts = Test.MakeATSProcess("ts{}".format(EsiTest._ts_counter))
ts.Disk.records_config.update({
'proxy.config.diags.debug.enabled': 1,
'proxy.config.diags.debug.tags': 'http|plugin_esi',
})
ts.Disk.remap_config.AddLine(
'map http://www.example.com/ http://127.0.0.1:{0}'.format(EsiTest._server.Variables.Port)
)
ts.Disk.plugin_config.AddLine(plugin_config)

# Create a run to start the ATS process.
tr = Test.AddTestRun("Start the ATS process.")
tr.Processes.Default.StartBefore(ts)
tr.Processes.Default.Command = "echo starting ATS"
tr.Processes.Default.ReturnCode = 0
tr.StillRunningAfter = ts
return ts

def run_cases(self):
# Test 1: Verify basic ESI functionality.
tr = Test.AddTestRun("First request for esi_etag.php: not cached")
tr.Processes.Default.Command = \
('curl http://127.0.0.1:{0}/esi_etag.php -H"Host: www.example.com" '
'-H"Accept: */*" -H"uuid: first" --verbose -o /dev/stderr'.format(
self._ts.Variables.port))
tr.Processes.Default.ReturnCode = 0
tr.Processes.Default.Streams.stderr = "gold/esi_private_headers.gold"
tr.StillRunningAfter = self._server
tr.StillRunningAfter = self._ts

# Test 2: Repeat the above, origin should now be returning 304 response.
tr = Test.AddTestRun("Second request for esi_etag.php: will be cached")
tr.Processes.Default.Command = \
('curl http://127.0.0.1:{0}/esi_etag.php -H"Host: www.example.com" '
'-H"Accept: */*" -H"uuid: second" --verbose -o /dev/stderr'.format(
self._ts.Variables.port))
tr.Processes.Default.ReturnCode = 0
tr.Processes.Default.Streams.stderr = "gold/esi_private_headers.gold"
tr.StillRunningAfter = self._server
tr.StillRunningAfter = self._ts


#
# Configure and run the test cases.
#

# Run the tests with ESI configured with private response.
private_response_test = EsiTest(plugin_config='esi.so --private-response')
private_response_test.run_cases()
7 changes: 7 additions & 0 deletions tests/gold_tests/pluginTest/esi/gold/esi_private_headers.gold
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
``
> GET /esi_etag.php HTTP/1.1
``
< HTTP/1.1 200 OK
``
< Cache-Control: max-age=0, private
``