2021-02-04 08:59:41 +00:00
|
|
|
"""Tests for hassfest version."""
|
|
|
|
import pytest
|
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from script.hassfest.manifest import (
|
|
|
|
CUSTOM_INTEGRATION_MANIFEST_SCHEMA,
|
|
|
|
validate_version,
|
|
|
|
)
|
|
|
|
from script.hassfest.model import Integration
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def integration():
|
|
|
|
"""Fixture for hassfest integration model."""
|
|
|
|
integration = Integration("")
|
|
|
|
integration.manifest = {
|
|
|
|
"domain": "test",
|
|
|
|
"documentation": "https://example.com",
|
|
|
|
"name": "test",
|
|
|
|
"codeowners": ["@awesome"],
|
|
|
|
}
|
|
|
|
return integration
|
|
|
|
|
|
|
|
|
|
|
|
def test_validate_version_no_key(integration: Integration):
|
|
|
|
"""Test validate version with no key."""
|
|
|
|
validate_version(integration)
|
|
|
|
assert (
|
|
|
|
"No 'version' key in the manifest file. This will cause a future version of Home Assistant to block this integration."
|
2021-02-04 12:31:17 +00:00
|
|
|
in [x.error for x in integration.errors]
|
2021-02-04 08:59:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_validate_custom_integration_manifest(integration: Integration):
|
|
|
|
"""Test validate custom integration manifest."""
|
|
|
|
|
|
|
|
with pytest.raises(vol.Invalid):
|
|
|
|
integration.manifest["version"] = "lorem_ipsum"
|
|
|
|
CUSTOM_INTEGRATION_MANIFEST_SCHEMA(integration.manifest)
|
|
|
|
|
|
|
|
with pytest.raises(vol.Invalid):
|
|
|
|
integration.manifest["version"] = None
|
|
|
|
CUSTOM_INTEGRATION_MANIFEST_SCHEMA(integration.manifest)
|
|
|
|
|
|
|
|
integration.manifest["version"] = "1"
|
|
|
|
schema = CUSTOM_INTEGRATION_MANIFEST_SCHEMA(integration.manifest)
|
|
|
|
assert schema["version"] == "1"
|