blob: a8b3417bf6b93f540d47e3a948a8f6996f197cd3 [file]
'''
'''
# 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 TS API to get and set a verified address
'''
Test.ContinueOnFail = True
# ----
# Setup Origin Server
# ----
httpbin = Test.MakeHttpBinServer("httpbin")
# ----
# Setup ATS
# ----
ts = Test.MakeATSProcess("ts")
ts.Disk.remap_config.AddLine(f'map /httpbin/ http://127.0.0.1:{httpbin.Variables.Port}/')
Test.PrepareTestPlugin(
os.path.join(Test.Variables.AtsBuildGoldTestsDir, 'pluginTest', 'tsapi', '.libs', 'test_TSHttpTxnVerifiedAddr.so'), ts)
ts.Setup.CopyAs('hrw_verified_addr.conf', Test.RunDirectory)
ts.Disk.plugin_config.AddLine(f'header_rewrite.so --inbound-ip-source=PLUGIN {Test.RunDirectory}/hrw_verified_addr.conf')
ts.Disk.records_config.update(
{
'proxy.config.diags.debug.enabled': 1,
'proxy.config.diags.debug.tags': 'http|test_TSHttpTxnVerifiedAddr',
})
# ----
# Test Cases
# ----
# The test plugin sets an hard coded IP address as a verified address.
# The verified address should be read by header_rewrite plugin and returned in "ip" response header.
tr = Test.AddTestRun("Test that a verified address is set by a plugin and read by another plugin")
tr.MakeCurlCommand(f'-v http://127.0.0.1:{ts.Variables.port}/httpbin/get', ts=ts)
tr.Processes.Default.ReturnCode = 0
tr.Processes.Default.StartBefore(httpbin)
tr.Processes.Default.StartBefore(Test.Processes.ts)
tr.Processes.Default.Streams.stderr.Content = Testers.ContainsExpression(
"ip: 1.1.1.1", "Verifiy header_rewrite picked the verified address")
tr.StillRunningAfter = httpbin
tr.StillRunningAfter = ts