-
Notifications
You must be signed in to change notification settings - Fork 0
fix(security): AEGIS audit remediation — security, tests, correctness #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
d423f0a
chore(ci): remove AEST date bug check from all workflows
Artic0din e20891d
fix(security): AEGIS audit remediation — security, tests, correctness…
Artic0din 14ba803
fix(review): address CodeRabbit findings on PR #21
Artic0din 3adb616
fix(review): tighten CSP and use pricehawk-prefixed forecast entity IDs
Artic0din dc29171
fix(review): replace invalid CIDR in CSP with 'self' for same-origin WS
Artic0din 2188c34
chore(ci): add requirements.txt for CI pip cache
Artic0din 5017184
fix(ci): unblock CI — track conftest.py and remove unused import
Artic0din 2db1281
fix(ci): resolve ruff F401 unused imports and fix pre-existing test f…
Artic0din df10deb
fix(ci): resolve ruff F841 unused local variables in test_coordinator
Artic0din File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| """Root conftest — mock homeassistant for pure-Python unit tests.""" | ||
|
|
||
| import sys | ||
| from unittest.mock import MagicMock | ||
|
|
||
|
|
||
| class _MockModule(MagicMock): | ||
| """A MagicMock that pretends to be a package (has __path__).""" | ||
|
|
||
| def __init__(self, *args, **kwargs): | ||
| super().__init__(*args, **kwargs) | ||
| self.__path__ = [] | ||
|
|
||
|
|
||
| _HA_MODULES = [ | ||
| "homeassistant", | ||
| "homeassistant.config_entries", | ||
| "homeassistant.core", | ||
| "homeassistant.helpers", | ||
| "homeassistant.helpers.aiohttp_client", | ||
| "homeassistant.helpers.entity_platform", | ||
| "homeassistant.helpers.event", | ||
| "homeassistant.helpers.selector", | ||
| "homeassistant.helpers.storage", | ||
| "homeassistant.helpers.update_coordinator", | ||
| "homeassistant.components", | ||
| "homeassistant.components.sensor", | ||
| "homeassistant.util", | ||
| "homeassistant.util.dt", | ||
| "aiohttp", | ||
| "voluptuous", | ||
| ] | ||
|
|
||
| _mods: dict[str, _MockModule] = {} | ||
| for mod_name in _HA_MODULES: | ||
| if mod_name not in sys.modules: | ||
| _mods[mod_name] = _MockModule() | ||
| sys.modules[mod_name] = _mods[mod_name] | ||
| else: | ||
| _mods[mod_name] = sys.modules[mod_name] # type: ignore[assignment] | ||
|
|
||
| # Wire parent -> child attributes for `from X.Y import Z` to work | ||
| _mods["homeassistant"].helpers = _mods["homeassistant.helpers"] | ||
| _mods["homeassistant"].util = _mods["homeassistant.util"] | ||
| _mods["homeassistant"].config_entries = _mods["homeassistant.config_entries"] | ||
| _mods["homeassistant"].core = _mods["homeassistant.core"] | ||
| _mods["homeassistant"].components = _mods["homeassistant.components"] | ||
| _mods["homeassistant.helpers"].event = _mods["homeassistant.helpers.event"] | ||
| _mods["homeassistant.helpers"].storage = _mods["homeassistant.helpers.storage"] | ||
| _mods["homeassistant.helpers"].update_coordinator = _mods["homeassistant.helpers.update_coordinator"] | ||
| _mods["homeassistant.helpers"].aiohttp_client = _mods["homeassistant.helpers.aiohttp_client"] | ||
| _mods["homeassistant.helpers"].entity_platform = _mods["homeassistant.helpers.entity_platform"] | ||
| _mods["homeassistant.helpers"].selector = _mods["homeassistant.helpers.selector"] | ||
| _mods["homeassistant.util"].dt = _mods["homeassistant.util.dt"] | ||
| _mods["homeassistant.components"].sensor = _mods["homeassistant.components.sensor"] | ||
| _mods["homeassistant.core"].CALLBACK_TYPE = type(None) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.