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
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
'''
Test ATS configured to not respond with chunked content.
'''
# 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.

Test.Summary = 'Test ATS configured to not respond with chunked content.'


class ChunkedEncodingDisabled:
chunkedReplayFile = "replays/chunked.replay.yaml"

def __init__(self):
self.setupOriginServer()
self.setupTS()

def setupOriginServer(self):
self.server = Test.MakeVerifierServerProcess("server", self.chunkedReplayFile)

def setupTS(self):
self.ts = Test.MakeATSProcess("ts", enable_tls=True, enable_cache=False)
self.ts.addDefaultSSLFiles()
self.ts.Disk.records_config.update({
"proxy.config.diags.debug.enabled": 1,
"proxy.config.diags.debug.tags": "http",
"proxy.config.ssl.server.cert.path": f'{self.ts.Variables.SSLDir}',
"proxy.config.ssl.server.private_key.path": f'{self.ts.Variables.SSLDir}',
"proxy.config.ssl.client.verify.server.policy": 'PERMISSIVE',

# Never respond with chunked encoding.
"proxy.config.http.chunking_enabled": 0,
})
self.ts.Disk.ssl_multicert_config.AddLine(
'dest_ip=* ssl_cert_name=server.pem ssl_key_name=server.key'
)
self.ts.Disk.remap_config.AddLines([
f"map /for/http http://127.0.0.1:{self.server.Variables.http_port}/",
f"map /for/tls https://127.0.0.1:{self.server.Variables.https_port}/",
])

def runChunkedTraffic(self):
tr = Test.AddTestRun()
tr.AddVerifierClientProcess(
"client",
self.chunkedReplayFile,
http_ports=[self.ts.Variables.port],
https_ports=[self.ts.Variables.ssl_port])
tr.Processes.Default.Streams.stdout += "gold/verifier_client_chunked.gold"

tr.Processes.Default.StartBefore(self.server)
tr.Processes.Default.StartBefore(self.ts)
tr.StillRunningAfter = self.server
tr.StillRunningAfter = self.ts

def run(self):
self.runChunkedTraffic()


ChunkedEncodingDisabled().run()
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
``
- "connection": "keep-alive"
``
- "Connection": "close"
``
``content: 0000000 0000001 0000002 0000003
``
- "connection": "keep-alive"
``
- "Connection": "close"
``
``content: 0000000 0000001 0000002 0000003
``
84 changes: 84 additions & 0 deletions tests/gold_tests/chunked_encoding/replays/chunked.replay.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# 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.

meta:
version: "1.0"

sessions:
- transactions:
- client-request:
method: "GET"
version: "1.1"
url: /for/http
headers:
fields:
- [ Host, example.com ]
- [ Connection, keep-alive ]
- [ uuid, 1 ]

server-response:
status: 200
reason: OK
headers:
fields:
- [ Transfer-Encoding, chunked ]
- [ Connection, keep-alive ]
content:
size: 32

proxy-response:
status: 200
headers:
fields:
- [ Transfer-Encoding, { as: absent } ]
content:
size: 32

- protocol:
- name: http
version: 1
- name: tls
- name: tcp
- name: ip

transactions:
- client-request:
method: "GET"
version: "1.1"
url: /for/tls
headers:
fields:
- [ Host, example.com ]
- [ Connection, keep-alive ]
- [ uuid, 2 ]

server-response:
status: 200
reason: OK
headers:
fields:
- [ Transfer-Encoding, chunked ]
- [ Connection, keep-alive ]
content:
size: 32

proxy-response:
status: 200
headers:
fields:
- [ Transfer-Encoding, { as: absent } ]
content:
size: 32