mirror of
https://github.com/esphome/esphome.git
synced 2026-05-10 22:19:21 +08:00
79b741b8dc
CI / Create common environment (push) Has been cancelled
CI / Check pylint (push) Has been cancelled
CI / Run script/ci-custom (push) Has been cancelled
CI / Run pytest (macOS-latest, 3.11) (push) Has been cancelled
CI / Run pytest (macOS-latest, 3.14) (push) Has been cancelled
CI / Run pytest (ubuntu-latest, 3.11) (push) Has been cancelled
CI / Run pytest (ubuntu-latest, 3.13) (push) Has been cancelled
CI / Run pytest (ubuntu-latest, 3.14) (push) Has been cancelled
CI / Run pytest (windows-latest, 3.11) (push) Has been cancelled
CI / Run pytest (windows-latest, 3.14) (push) Has been cancelled
CI / Determine which jobs to run (push) Has been cancelled
CI / Run integration tests (push) Has been cancelled
CI / Run C++ unit tests (push) Has been cancelled
CI / Run CodSpeed benchmarks (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 IDF (push) Has been cancelled
CI / Run script/clang-tidy for ESP8266 (push) Has been cancelled
CI / Run script/clang-tidy for ZEPHYR (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 1/4 (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 2/4 (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 3/4 (push) Has been cancelled
CI / Run script/clang-tidy for ESP32 Arduino 4/4 (push) Has been cancelled
CI / Test components batch (${{ matrix.components }}) (push) Has been cancelled
CI / pre-commit.ci lite (push) Has been cancelled
CI / Build target branch for memory impact (push) Has been cancelled
CI / Build PR branch for memory impact (push) Has been cancelled
CI / Comment memory impact (push) Has been cancelled
CI / CI Status (push) Has been cancelled
30 lines
916 B
Python
30 lines
916 B
Python
"""Shared helpers for component tests."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import re
|
|
|
|
INTERNAL_BIT = 1 << 24
|
|
|
|
|
|
def extract_packed_value(main_cpp: str, var_name: str) -> int:
|
|
"""Extract the packed-fields argument from the entity's configure call.
|
|
|
|
Matches both legacy form ``var->configure_entity_(name, hash, packed)`` and the
|
|
combined form ``App.register_<entity>(var, name, hash, packed)``.
|
|
"""
|
|
escaped_var = re.escape(var_name)
|
|
legacy_pattern = (
|
|
rf"{escaped_var}->configure_entity_\("
|
|
r'"(?:\\.|[^"\\])*"'
|
|
r",\s*\w+,\s*(\d+)\)"
|
|
)
|
|
combined_pattern = (
|
|
rf"App\.register_\w+\(\s*{escaped_var}\s*,\s*"
|
|
r'"(?:\\.|[^"\\])*"'
|
|
r",\s*\w+,\s*(\d+)\)"
|
|
)
|
|
match = re.search(combined_pattern, main_cpp) or re.search(legacy_pattern, main_cpp)
|
|
assert match, f"configure call not found for {var_name}"
|
|
return int(match.group(1))
|