source: mod_gnutls/test/https-test-client.py @ c33b0ea

asynciomainproxy-ticket
Last change on this file since c33b0ea was 0cfe818, checked in by Fiona Klute <fiona.klute@…>, 3 years ago

https-test-client.py: Use with instead of try/finally to safely close file

  • Property mode set to 100755
File size: 1.9 KB
Line 
1#!/usr/bin/python3
2# PYTHON_ARGCOMPLETE_OK
3
4# Copyright 2019 Fiona Klute
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10#     http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18import contextlib
19import os
20
21from mgstest.tests import run_test_conf
22
23if __name__ == "__main__":
24    import argparse
25    parser = argparse.ArgumentParser(
26        description='Send HTTP requests through gnutls-cli',
27        formatter_class=argparse.ArgumentDefaultsHelpFormatter)
28    parser.add_argument('host', nargs='?', default=None,
29                        help='Access this host. Overrides TEST_TARGET, '
30                        'but not the test configuration file.')
31    parser.add_argument('-p', '--port', default=None,
32                        help='Access this port. Overrides TEST_PORT, '
33                        'but not the test configuration file.')
34    parser.add_argument('--timeout', type=float,
35                        help='Timeout for HTTP requests', default='5.0')
36    parser.add_argument('--test-config', type=argparse.FileType('r'),
37                        required=True, help='load YAML test configuration')
38
39    # enable bash completion if argcomplete is available
40    try:
41        import argcomplete
42        argcomplete.autocomplete(parser)
43    except ImportError:
44        pass
45
46    args = parser.parse_args()
47
48    if args.host:
49        os.environ['TEST_TARGET'] = args.host
50    if args.port:
51        os.environ['TEST_PORT'] = args.port
52
53    with contextlib.closing(args.test_config):
54        run_test_conf(args.test_config, args.timeout)
Note: See TracBrowser for help on using the repository browser.