mirror of
https://github.com/esphome/esphome.git
synced 2026-08-23 06:36:23 +00:00
Dump the main.cpp config comment with sorted keys
voluptuous fills schema defaults in set-iteration order, so the validated dict's key order changes with the process hash seed; the unsorted dump churned the comment block in main.cpp and relinked the firmware on every esphome run for any config using a defaults-heavy action (logger.log in a button's on_press was enough). Affects the PlatformIO path identically.
This commit is contained in:
@@ -7207,3 +7207,29 @@ def test_compile_program_espidf_idedata_none_warns(
|
||||
):
|
||||
assert compile_program(MagicMock(), {}) == 0
|
||||
assert "No idedata was generated" in caplog.text
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_wrap_to_code_comment_is_insertion_order_independent() -> None:
|
||||
"""The config comment dumps with sorted keys: voluptuous fills schema
|
||||
defaults in set-iteration order, so an unsorted dump would churn
|
||||
main.cpp and relink the firmware on every run."""
|
||||
from types import SimpleNamespace
|
||||
|
||||
from esphome import yaml_util
|
||||
from esphome.__main__ import _wrap_to_code
|
||||
|
||||
comments: list[str] = []
|
||||
|
||||
async def to_code(conf):
|
||||
pass
|
||||
|
||||
comp = SimpleNamespace(to_code=to_code, config_schema=object())
|
||||
wrapped = _wrap_to_code("demo", comp, yaml_util)
|
||||
with patch("esphome.codegen.add", side_effect=lambda st: comments.append(str(st))):
|
||||
await wrapped({"beta": 1, "alpha": 2})
|
||||
first = list(comments)
|
||||
comments.clear()
|
||||
await wrapped({"alpha": 2, "beta": 1})
|
||||
assert first == comments
|
||||
assert "alpha: 2" in comments[1]
|
||||
|
||||
Reference in New Issue
Block a user