mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
Script-generated tests for Servo_* gecko bindings
This commit is contained in:
parent
6bd898626f
commit
5be551e10e
2 changed files with 97 additions and 0 deletions
37
components/style/binding_tools/check_bindings.py
Normal file
37
components/style/binding_tools/check_bindings.py
Normal file
|
@ -0,0 +1,37 @@
|
|||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
import os
|
||||
import re
|
||||
|
||||
LICENSE = """\
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
/* automatically generated by check_bindings.py. */
|
||||
|
||||
"""
|
||||
|
||||
BINDINGS_PATH = os.path.join("..", "gecko_bindings")
|
||||
INPUT_FILE = os.path.join(BINDINGS_PATH, "bindings.rs")
|
||||
OUTPUT_FILE = os.path.join(BINDINGS_PATH, "check_bindings.rs")
|
||||
|
||||
TEMPLATE = """\
|
||||
[ Servo_{name}, bindings::Servo_{name} ];
|
||||
"""
|
||||
|
||||
with open(INPUT_FILE, "r") as bindings, open(OUTPUT_FILE, "w+") as tests:
|
||||
tests.write(LICENSE)
|
||||
tests.write("fn assert_types() {\n")
|
||||
|
||||
pattern = re.compile("fn\s*Servo_([_a-zA-Z0-9]+)\s*\(")
|
||||
|
||||
for line in bindings:
|
||||
match = pattern.search(line)
|
||||
|
||||
if match:
|
||||
tests.write(TEMPLATE.format(name=match.group(1)))
|
||||
|
||||
tests.write("}\n")
|
Loading…
Add table
Add a link
Reference in a new issue