masaori335 commented on a change in pull request #7309: URL: https://github.com/apache/trafficserver/pull/7309#discussion_r571808935
########## File path: tests/gold_tests/timeout/inactive_client_post_timeout.test.py ########## @@ -0,0 +1,108 @@ +''' +''' +# 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 = 'Testing ATS client inactivity timeout' + +Test.SkipUnless( + Condition.HasCurlFeature('http2') +) + +ts = Test.MakeATSProcess("ts", select_ports=True, enable_tls=True) + +Test.ContinueOnFail = True + +Test.GetTcpPort("upstream_port1") +Test.GetTcpPort("upstream_port2") +Test.GetTcpPort("upstream_port3") +Test.GetTcpPort("upstream_port4") +Test.GetTcpPort("upstream_port5") +Test.GetTcpPort("upstream_port6") + +ts.addSSLfile("../tls/ssl/server.pem") +ts.addSSLfile("../tls/ssl/server.key") + +ts.Disk.records_config.update({ + 'proxy.config.diags.debug.enabled': 1, + 'proxy.config.diags.debug.tags': 'http', + 'proxy.config.ssl.server.cert.path': '{0}'.format(ts.Variables.SSLDir), + 'proxy.config.ssl.server.private_key.path': '{0}'.format(ts.Variables.SSLDir), + 'proxy.config.url_remap.remap_required': 1, + 'proxy.config.http.transaction_no_activity_timeout_in': 2, +}) + +ts.Disk.remap_config.AddLines([ + 'map /case1 http://127.0.0.1:{0}'.format(Test.Variables.upstream_port1), + 'map /case2 http://127.0.0.1:{0}'.format(Test.Variables.upstream_port2), + 'map /case3 http://127.0.0.1:{0}'.format(Test.Variables.upstream_port3), + 'map /case4 http://127.0.0.1:{0}'.format(Test.Variables.upstream_port4), + 'map /case5 http://127.0.0.1:{0}'.format(Test.Variables.upstream_port5), + 'map /case6 http://127.0.0.1:{0}'.format(Test.Variables.upstream_port6), +]) + +ts.Disk.ssl_multicert_config.AddLine( + 'dest_ip=* ssl_cert_name=server.pem ssl_key_name=server.key' +) + +# Using netcat with explicit delays instead of the delay option with microserver because it appears +# that microserver will not delay responses to POST requests Review comment: IIRC, httpbin supports delay on POST requests. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
