• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2015 gRPC authors.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14"""Generates the list of end2end test cases from generate_tests.bzl"""
15
16import os
17import sys
18import yaml
19
20_ROOT = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), '../../..'))
21os.chdir(_ROOT)
22
23
24def load(*args):
25    """Replacement of bazel's load() function"""
26    pass
27
28
29def struct(**kwargs):
30    return kwargs  # all the args as a dict
31
32
33# generate_tests.bzl is now the source of truth for end2end tests.
34# The .bzl file is basically a python file and we can "execute" it
35# to get access to the variables it defines.
36execfile('test/core/end2end/generate_tests.bzl')
37
38
39def main():
40    json = {
41        # needed by end2end_tests.cc.template and end2end_nosec_tests.cc.template
42        'core_end2end_tests':
43            dict((t, END2END_TESTS[t]['secure']) for t in END2END_TESTS.keys())
44    }
45    print(yaml.dump(json))
46
47
48if __name__ == '__main__':
49    main()
50