mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 23:37:18 +00:00
* add models tests (#1) also replace single quote to double one to confort PEP docstring + move _check_output to class properties to make it available for mocking * alpm tests implementation * try to replace os with pathlib * update tests for pathlib * fix includes glob and trim version from dependencies * build_tools package tests * repository component tests * add sign tests * complete status tests * handle exceptions in actual_version calls * complete core tests * move configuration to root conftest * application tests * complete application tests * change copyright to more generic one * base web tests * complete web tests * complete testkit also add argument parsers test
49 lines
1.4 KiB
Python
49 lines
1.4 KiB
Python
#
|
|
# Copyright (c) 2021 ahriman team.
|
|
#
|
|
# This file is part of ahriman
|
|
# (see https://github.com/arcan1s/ahriman).
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
from __future__ import annotations
|
|
|
|
from enum import Enum, auto
|
|
|
|
from ahriman.core.exceptions import InvalidOption
|
|
|
|
|
|
class UploadSettings(Enum):
|
|
"""
|
|
remote synchronization targets enumeration
|
|
:cvar Rsync: sync via rsync
|
|
:cvar S3: sync to Amazon S3
|
|
"""
|
|
|
|
Rsync = auto()
|
|
S3 = auto()
|
|
|
|
@staticmethod
|
|
def from_option(value: str) -> UploadSettings:
|
|
"""
|
|
construct value from configuration
|
|
:param value: configuration value
|
|
:return: parsed value
|
|
"""
|
|
if value.lower() in ("rsync",):
|
|
return UploadSettings.Rsync
|
|
if value.lower() in ("s3",):
|
|
return UploadSettings.S3
|
|
raise InvalidOption(value)
|