This is an automated email from the ASF dual-hosted git repository.
zwoop pushed a change to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git.
from 6ef37a3 Promote 'Enable_Config_Var' from HttpConnectionCount to
HttpConfig. This is so other configuration can use it.
new f85548b Add Example URI Signer Python Script
new 35f789a Add simple autest and subsequent fixes
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
plugins/experimental/uri_signing/common.h | 7 +-
plugins/experimental/uri_signing/config.c | 1 -
plugins/experimental/uri_signing/parse.c | 4 +-
plugins/experimental/uri_signing/parse.h | 2 +
.../uri_signing/python_signer/README.md | 36 ++++
.../uri_signing/python_signer/example_config.json | 33 ++++
.../uri_signing/python_signer/uri_signer.py | 132 +++++++++++++
plugins/experimental/uri_signing/uri_signing.c | 52 ++++--
tests/Pipfile | 1 +
.../gold_tests/pluginTest/uri_signing/config.json | 27 +++
.../pluginTest/uri_signing/gold/200.gold | 13 ++
.../pluginTest/uri_signing/gold/403.gold | 16 ++
.../gold_tests/pluginTest/uri_signing/run_sign.sh | 104 +++++++++++
.../gold_tests/pluginTest/uri_signing/signer.json | 18 ++
.../pluginTest/uri_signing/uri_signing.test.py | 208 +++++++++++++++++++++
15 files changed, 638 insertions(+), 16 deletions(-)
create mode 100644 plugins/experimental/uri_signing/python_signer/README.md
create mode 100644
plugins/experimental/uri_signing/python_signer/example_config.json
create mode 100755 plugins/experimental/uri_signing/python_signer/uri_signer.py
create mode 100644 tests/gold_tests/pluginTest/uri_signing/config.json
create mode 100644 tests/gold_tests/pluginTest/uri_signing/gold/200.gold
create mode 100644 tests/gold_tests/pluginTest/uri_signing/gold/403.gold
create mode 100755 tests/gold_tests/pluginTest/uri_signing/run_sign.sh
create mode 100644 tests/gold_tests/pluginTest/uri_signing/signer.json
create mode 100644 tests/gold_tests/pluginTest/uri_signing/uri_signing.test.py