mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2024-11-22 13:28:00 +01:00
Add flavors module
This commit is contained in:
parent
80e105abb9
commit
8fcd9a9718
2 changed files with 168 additions and 0 deletions
74
fimfarchive/flavors.py
Normal file
74
fimfarchive/flavors.py
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
"""
|
||||||
|
Flavors for Fimfarchive.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Fimfarchive, preserves stories from Fimfiction.
|
||||||
|
# Copyright (C) 2015 Joakim Soderlund
|
||||||
|
#
|
||||||
|
# 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 enum import Enum
|
||||||
|
|
||||||
|
|
||||||
|
class Flavor(Enum):
|
||||||
|
"""
|
||||||
|
Base class for flavors.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __new__(cls, *args):
|
||||||
|
"""
|
||||||
|
Automatically assigns an enum value.
|
||||||
|
"""
|
||||||
|
value = len(cls.__members__) + 1
|
||||||
|
obj = object.__new__(cls)
|
||||||
|
obj._value_ = value
|
||||||
|
return obj
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
"""
|
||||||
|
Custom representation for instances.
|
||||||
|
"""
|
||||||
|
return "<flavor '{}.{}'>".format(
|
||||||
|
type(self).__name__,
|
||||||
|
getattr(self, 'name', None),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class StorySource(Flavor):
|
||||||
|
"""
|
||||||
|
Indicates from where a story was fetched.
|
||||||
|
"""
|
||||||
|
FIMFICTION = ()
|
||||||
|
FIMFARCHIVE = ()
|
||||||
|
|
||||||
|
|
||||||
|
class DataFormat(Flavor):
|
||||||
|
"""
|
||||||
|
Indicates the file format of story data.
|
||||||
|
"""
|
||||||
|
EPUB = ()
|
||||||
|
FPUB = ()
|
||||||
|
HTML = ()
|
||||||
|
|
||||||
|
|
||||||
|
class MetaPurity(Flavor):
|
||||||
|
"""
|
||||||
|
Indicates if story meta has been sanitized.
|
||||||
|
"""
|
||||||
|
CLEAN = ()
|
||||||
|
DIRTY = ()
|
94
tests/test_flavors.py
Normal file
94
tests/test_flavors.py
Normal file
|
@ -0,0 +1,94 @@
|
||||||
|
"""
|
||||||
|
Flavor tests.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Fimfarchive, preserves stories from Fimfiction.
|
||||||
|
# Copyright (C) 2015 Joakim Soderlund
|
||||||
|
#
|
||||||
|
# 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 fimfarchive.flavors import Flavor
|
||||||
|
|
||||||
|
|
||||||
|
class TestFlavor:
|
||||||
|
"""
|
||||||
|
Flavor tests.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def assert_flavor(self, flavor):
|
||||||
|
"""
|
||||||
|
Asserts for standard flavor behavior.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
flavor: Flavor class with A and B members.
|
||||||
|
"""
|
||||||
|
a = flavor.A
|
||||||
|
b = flavor.B
|
||||||
|
|
||||||
|
assert type(a) == flavor
|
||||||
|
assert type(b) == flavor
|
||||||
|
assert a.value == 1
|
||||||
|
assert b.value == 2
|
||||||
|
assert a is flavor.A
|
||||||
|
assert b is flavor.B
|
||||||
|
assert a is not b
|
||||||
|
assert a != b
|
||||||
|
assert a in {a}
|
||||||
|
assert b not in {a}
|
||||||
|
|
||||||
|
def test_flavor_with_empty_values(self):
|
||||||
|
"""
|
||||||
|
Tests generated flavor values.
|
||||||
|
"""
|
||||||
|
class MyFlavor(Flavor):
|
||||||
|
A = ()
|
||||||
|
B = ()
|
||||||
|
|
||||||
|
self.assert_flavor(MyFlavor)
|
||||||
|
|
||||||
|
def test_flavor_with_custom_values(self):
|
||||||
|
"""
|
||||||
|
Tests custom flavor values.
|
||||||
|
"""
|
||||||
|
class MyFlavor(Flavor):
|
||||||
|
A = (1)
|
||||||
|
B = (1, 2)
|
||||||
|
|
||||||
|
def __init__(self, one, two=2):
|
||||||
|
self.one = one
|
||||||
|
self.two = two
|
||||||
|
|
||||||
|
self.assert_flavor(MyFlavor)
|
||||||
|
|
||||||
|
assert MyFlavor.A.one == 1
|
||||||
|
assert MyFlavor.A.two == 2
|
||||||
|
assert MyFlavor.B.one == 1
|
||||||
|
assert MyFlavor.B.two == 2
|
||||||
|
|
||||||
|
def test_instance_representation(self):
|
||||||
|
"""
|
||||||
|
Tests `repr` for flavor instances.
|
||||||
|
"""
|
||||||
|
class MyFlavor(Flavor):
|
||||||
|
A = ()
|
||||||
|
B = ()
|
||||||
|
|
||||||
|
template = "<flavor 'MyFlavor.{}'>"
|
||||||
|
|
||||||
|
assert repr(MyFlavor.A) == template.format('A')
|
||||||
|
assert repr(MyFlavor.B) == template.format('B')
|
Loading…
Reference in a new issue