mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 09:08:31 +02:00
171 lines
5.6 KiB
Python
171 lines
5.6 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Stegano - Stegano is a pure Python steganography module.
|
|
# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org
|
|
#
|
|
# For more information : https://git.sr.ht/~cedric/stegano
|
|
#
|
|
# 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/>
|
|
|
|
__author__ = "Cedric Bonhomme"
|
|
__version__ = "$Revision: 0.1 $"
|
|
__date__ = "$Date: 2017/03/01 $"
|
|
__revision__ = "$Date: 2017/03/01 $"
|
|
__license__ = "GPLv3"
|
|
|
|
import unittest
|
|
import itertools
|
|
|
|
from stegano.lsbset import generators
|
|
|
|
|
|
class TestGenerators(unittest.TestCase):
|
|
def test_identity(self):
|
|
"""Test the identity generator.
|
|
"""
|
|
self.assertEqual(
|
|
tuple(itertools.islice(generators.identity(), 15)),
|
|
(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14),
|
|
)
|
|
|
|
def test_fibonacci(self):
|
|
"""Test the Fibonacci generator.
|
|
"""
|
|
self.assertEqual(
|
|
tuple(itertools.islice(generators.fibonacci(), 20)),
|
|
(
|
|
1,
|
|
2,
|
|
3,
|
|
5,
|
|
8,
|
|
13,
|
|
21,
|
|
34,
|
|
55,
|
|
89,
|
|
144,
|
|
233,
|
|
377,
|
|
610,
|
|
987,
|
|
1597,
|
|
2584,
|
|
4181,
|
|
6765,
|
|
10946,
|
|
),
|
|
)
|
|
|
|
def test_eratosthenes(self):
|
|
"""Test the Eratosthenes sieve.
|
|
"""
|
|
with open("./tests/expected-results/eratosthenes", "r") as f:
|
|
self.assertEqual(
|
|
tuple(itertools.islice(generators.eratosthenes(), 168)),
|
|
tuple(int(line) for line in f),
|
|
)
|
|
|
|
def test_composite(self):
|
|
"""Test the composite sieve.
|
|
"""
|
|
with open("./tests/expected-results/composite", "r") as f:
|
|
self.assertEqual(
|
|
tuple(itertools.islice(generators.composite(), 114)),
|
|
tuple(int(line) for line in f),
|
|
)
|
|
|
|
def test_fermat(self):
|
|
"""Test the Fermat generator.
|
|
"""
|
|
with open("./tests/expected-results/fermat", "r") as f:
|
|
self.assertEqual(
|
|
tuple(itertools.islice(generators.fermat(), 9)),
|
|
tuple(int(line) for line in f),
|
|
)
|
|
|
|
def test_triangular_numbers(self):
|
|
"""Test the Triangular numbers generator.
|
|
"""
|
|
with open("./tests/expected-results/triangular_numbers", "r") as f:
|
|
self.assertEqual(
|
|
tuple(itertools.islice(generators.triangular_numbers(), 54)),
|
|
tuple(int(line) for line in f),
|
|
)
|
|
|
|
def test_mersenne(self):
|
|
"""Test the Mersenne generator.
|
|
"""
|
|
with open("./tests/expected-results/mersenne", "r") as f:
|
|
self.assertEqual(
|
|
tuple(itertools.islice(generators.mersenne(), 20)),
|
|
tuple(int(line) for line in f),
|
|
)
|
|
|
|
def test_carmichael(self):
|
|
"""Test the Carmichael generator.
|
|
"""
|
|
with open("./tests/expected-results/carmichael", "r") as f:
|
|
self.assertEqual(
|
|
tuple(itertools.islice(generators.carmichael(), 33)),
|
|
tuple(int(line) for line in f),
|
|
)
|
|
|
|
def test_ackermann_slow(self):
|
|
"""Test the Ackermann set.
|
|
"""
|
|
with open("./tests/expected-results/ackermann", "r") as f:
|
|
self.assertEqual(generators.ackermann_slow(3, 1), int(f.readline()))
|
|
self.assertEqual(generators.ackermann_slow(3, 2), int(f.readline()))
|
|
|
|
def test_ackermann_naive(self):
|
|
"""Test the Naive Ackermann generator
|
|
"""
|
|
gen = generators.ackermann_naive(3)
|
|
next(gen)
|
|
with open("./tests/expected-results/ackermann", "r") as f:
|
|
self.assertEqual(next(gen), int(f.readline()))
|
|
self.assertEqual(next(gen), int(f.readline()))
|
|
|
|
def test_ackermann_fast(self):
|
|
"""Test the Ackermann set.
|
|
"""
|
|
with open("./tests/expected-results/ackermann", "r") as f:
|
|
self.assertEqual(generators.ackermann_fast(3, 1), int(f.readline()))
|
|
self.assertEqual(generators.ackermann_fast(3, 2), int(f.readline()))
|
|
self.assertEqual(generators.ackermann_fast(4, 1), int(f.readline()))
|
|
self.assertEqual(generators.ackermann_fast(4, 2), int(f.readline()))
|
|
|
|
def test_ackermann(self):
|
|
"""Test the Ackermann generator
|
|
"""
|
|
gen = generators.ackermann(3)
|
|
next(gen)
|
|
with open("./tests/expected-results/ackermann", "r") as f:
|
|
self.assertEqual(next(gen), int(f.readline()))
|
|
self.assertEqual(next(gen), int(f.readline()))
|
|
|
|
def test_LFSR(self):
|
|
""" Test the LFSR generator
|
|
"""
|
|
with open("./tests/expected-results/LFSR", "r") as f:
|
|
self.assertEqual(
|
|
tuple(itertools.islice(generators.LFSR(2 ** 8), 256)),
|
|
tuple(int(line) for line in f),
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|