Coverage for /pythoncovmergedfiles/medio/medio/src/fuzz_lexer.py: 36%
25 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 06:02 +0000
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 06:02 +0000
1###### Coverage stub
2import atexit
3import coverage
4cov = coverage.coverage(data_file='.coverage', cover_pylib=True)
5cov.start()
6# Register an exist handler that will print coverage
7def exit_handler():
8 cov.stop()
9 cov.save()
10atexit.register(exit_handler)
11####### End of coverage stub
12# Copyright 2022 Google LLC
13#
14# Licensed under the Apache License, Version 2.0 (the "License");
15# you may not use this file except in compliance with the License.
16# You may obtain a copy of the License at
17#
18# http://www.apache.org/licenses/LICENSE-2.0
19#
20# Unless required by applicable law or agreed to in writing, software
21# distributed under the License is distributed on an "AS IS" BASIS,
22# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23# See the License for the specific language governing permissions and
24# limitations under the License.
26import os
27import sys
28import atheris
30from mako import exceptions
31from mako.lexer import Lexer
34def TestOneInput(data):
35 fdp = atheris.FuzzedDataProvider(data)
36 try:
37 Lexer(fdp.ConsumeUnicodeNoSurrogates(1024)).parse()
38 except exceptions.MakoException:
39 pass
42def main():
43 atheris.instrument_all()
44 atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True)
45 atheris.Fuzz()
48if __name__ == "__main__":
49 main()