Skip to content
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

Dependencies: version check on sqlite C-language #6567

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/aiida/common/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,13 @@ class IncompatibleDatabaseSchema(ConfigurationError): # noqa: N818
"""


class IncompatibleExternalDependencies(ConfigurationError): # noqa: N818
"""Raised when incomptabale external depencies are found.

This could happen, when the dependency is not a python package and therefore not checked during installation.
"""


class IncompatibleStorageSchema(IncompatibleDatabaseSchema):
"""Raised when the storage schema is incompatible with that of the code."""

Expand Down
6 changes: 6 additions & 0 deletions src/aiida/storage/sqlite_dos/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
from aiida.storage.log import MIGRATE_LOGGER
from aiida.storage.psql_dos.models.settings import DbSetting
from aiida.storage.sqlite_zip import models, orm
from aiida.storage.sqlite_zip.backend import validate_sqlite_version
from aiida.storage.sqlite_zip.utils import create_sqla_engine

from ..migrations import TEMPLATE_INVALID_SCHEMA_VERSION
Expand Down Expand Up @@ -226,6 +227,7 @@ def filepath_database(self) -> Path:

@classmethod
def initialise(cls, profile: Profile, reset: bool = False) -> bool:
validate_sqlite_version()
filepath = Path(profile.storage_config['filepath'])

try:
Expand All @@ -242,6 +244,10 @@ def initialise(cls, profile: Profile, reset: bool = False) -> bool:

return super().initialise(profile, reset)

def __init__(self, profile: Profile) -> None:
validate_sqlite_version()
super().__init__(profile)

def __str__(self) -> str:
state = 'closed' if self.is_closed else 'open'
return f'SqliteDosStorage[{self.filepath_root}]: {state},'
Expand Down
19 changes: 18 additions & 1 deletion src/aiida/storage/sqlite_zip/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from sqlalchemy.orm import Session

from aiida import __version__
from aiida.common.exceptions import ClosedStorage, CorruptStorage
from aiida.common.exceptions import ClosedStorage, CorruptStorage, IncompatibleExternalDependencies
from aiida.common.log import AIIDA_LOGGER
from aiida.manage import Profile
from aiida.orm.entities import EntityTypes
Expand All @@ -45,6 +45,21 @@
__all__ = ('SqliteZipBackend',)

LOGGER = AIIDA_LOGGER.getChild(__file__)
SUPPORTED_VERSION = '3.35.0' # minimum supported version of sqlite


def validate_sqlite_version():
import sqlite3

from packaging.version import parse

sqlite_installed_version = parse(sqlite3.sqlite_version)
if sqlite_installed_version < parse(SUPPORTED_VERSION):
message = (
f'Storage backend requires sqlite {parse(SUPPORTED_VERSION)} or higher.'
f' But you have {sqlite_installed_version} installed.'
)
raise IncompatibleExternalDependencies(message)


class SqliteZipBackend(StorageBackend):
Expand Down Expand Up @@ -111,6 +126,7 @@ def initialise(cls, profile: 'Profile', reset: bool = False) -> bool:
tests having run.
:returns: ``True`` if the storage was initialised by the function call, ``False`` if it was already initialised.
"""
validate_sqlite_version()
from archive_path import ZipPath

filepath_archive = Path(profile.storage_config['filepath'])
Expand Down Expand Up @@ -168,6 +184,7 @@ def migrate(cls, profile: Profile):
def __init__(self, profile: Profile):
from .migrator import validate_storage

validate_sqlite_version()
super().__init__(profile)
self._path = Path(profile.storage_config['filepath'])
validate_storage(self._path)
Expand Down
26 changes: 26 additions & 0 deletions tests/cmdline/commands/test_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,32 @@ def test_delete_force(run_cli_command, mock_profiles, pg_test_cluster):
assert 'When the `-f/--force` flag is used either `--delete-data` or `--keep-data`' in result.output


@pytest.mark.parametrize('entry_point', ('core.sqlite_dos', 'core.sqlite_zip'))
def test_setup_with_validating_sqlite_version(run_cli_command, isolated_config, tmp_path, entry_point, monkeypatch):
"""Test the ``verdi profile setup`` command.
Same as `test_setup`, here we test the functionality to check sqlite versions, before setting up profiles.
"""

if entry_point == 'core.sqlite_zip':
tmp_path = tmp_path / 'archive.aiida'
create_archive([], filename=tmp_path)

profile_name = 'temp-profile'
options = [entry_point, '-n', '--profile-name', profile_name, '--email', 'email@host', '--filepath', str(tmp_path)]

# Should raise if installed version is lower than the supported one.
monkeypatch.setattr('aiida.storage.sqlite_zip.backend.SUPPORTED_VERSION', '100.0.0')
result = run_cli_command(cmd_profile.profile_setup, options, use_subprocess=False, raises=True)
assert 'Storage backend requires sqlite 100.0.0 or higher. But you have' in result.stderr
assert profile_name not in isolated_config.profile_names

# Should not raise if installed version is higher than the supported one.
monkeypatch.setattr('aiida.storage.sqlite_zip.backend.SUPPORTED_VERSION', '0.0.0')
result = run_cli_command(cmd_profile.profile_setup, options, use_subprocess=False)
assert profile_name in isolated_config.profile_names
assert f'Created new profile `{profile_name}`.' in result.output


@pytest.mark.parametrize('entry_point', ('core.sqlite_dos', 'core.sqlite_zip'))
def test_delete_storage(run_cli_command, isolated_config, tmp_path, entry_point):
"""Test the ``verdi profile delete`` command with the ``--delete-storage`` option."""
Expand Down
18 changes: 18 additions & 0 deletions tests/cmdline/commands/test_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,21 @@ def storage_cls(*args, **kwargs):
result = run_cli_command(cmd_status.verdi_status, raises=True, use_subprocess=False)
assert 'Storage is corrupted' in result.output
assert result.exit_code is ExitCode.CRITICAL


@pytest.mark.parametrize('storage_backend', ('core.sqlite_dos', 'core.sqlite_zip'))
def test_sqlite_version(run_cli_command, monkeypatch, isolated_config, aiida_profile_factory, storage_backend):
"""Test `verdi status` when the sqlite version is incompatible with the required version.
the main functionality of this test is triggered only by the pytest marker 'presto',
through `pytest -m 'presto'`"""
monkeypatch.setattr('aiida.storage.sqlite_zip.backend.SUPPORTED_VERSION', '100.0.0')
aiida_profile_factory(isolated_config, storage_backend=storage_backend)
result = run_cli_command(cmd_status.verdi_status, use_subprocess=False, raises=True)
assert (
'IncompatibleExternalDependencies: Storage backend requires sqlite 100.0.0 or higher. But you have'
in result.stderr
)

# Should not raise if installed version is higher than the supported one.
monkeypatch.setattr('aiida.storage.sqlite_zip.backend.SUPPORTED_VERSION', '0.0.0')
result = run_cli_command(cmd_status.verdi_status, use_subprocess=False)
14 changes: 14 additions & 0 deletions tests/storage/sqlite_dos/test_backend.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Tests for :mod:`aiida.storage.sqlite_dos.backend`."""

import pathlib
from unittest.mock import MagicMock

import pytest

Expand Down Expand Up @@ -38,3 +39,16 @@ def test_backup(aiida_config, aiida_profile_factory, tmp_path, manager):
dirpath_backup = filepath_last.resolve()
assert (dirpath_backup / FILENAME_DATABASE).exists()
assert (dirpath_backup / FILENAME_CONTAINER).exists()


def test_initialise_version_check(tmp_path, monkeypatch):
"""Test :meth:`aiida.storage.sqlite_zip.backend.SqliteZipBackend.create_profile`
only if calls on validate_sqlite_version."""

mock_ = MagicMock()
monkeypatch.setattr('aiida.storage.sqlite_dos.backend.validate_sqlite_version', mock_)

# Here, we don't care about functionality of initialise itself, but only that it calls validate_sqlite_version.
with pytest.raises(AttributeError):
SqliteDosStorage.initialise('')
mock_.assert_called_once()
20 changes: 19 additions & 1 deletion tests/storage/sqlite_zip/test_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
import pytest
from pydantic_core import ValidationError

from aiida.storage.sqlite_zip.backend import SqliteZipBackend
from aiida.common.exceptions import IncompatibleExternalDependencies
from aiida.storage.sqlite_zip.backend import SqliteZipBackend, validate_sqlite_version
from aiida.storage.sqlite_zip.migrator import validate_storage


Expand Down Expand Up @@ -63,3 +64,20 @@ def test_model():

model = SqliteZipBackend.Model(filepath=filepath.name)
assert pathlib.Path(model.filepath).is_absolute()


def test_validate_sqlite_version(monkeypatch):
"""Test :meth:`aiida.storage.sqlite_zip.backend.validate_sqlite_version`."""

# Test when sqlite version is not supported, should read sqlite version from sqlite3.sqlite_version
monkeypatch.setattr('sqlite3.sqlite_version', '0.0.0')
monkeypatch.setattr('aiida.storage.sqlite_zip.backend.SUPPORTED_VERSION', '100.0.0')
with pytest.raises(
IncompatibleExternalDependencies, match=r'.*Storage backend requires sqlite 100.0.0 or higher.*'
):
validate_sqlite_version()

# Test when sqlite version is supported
monkeypatch.setattr('sqlite3.sqlite_version', '100.0.0')
monkeypatch.setattr('aiida.storage.sqlite_zip.backend.SUPPORTED_VERSION', '0.0.0')
validate_sqlite_version()
Loading