Skip to content
Snippets Groups Projects
Commit 1765b40a authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Add some tests.

parent e6074874
No related branches found
No related tags found
No related merge requests found
Pipeline #114 passed with stage
in 40 seconds
......@@ -3,10 +3,14 @@ image: python:3-buster
before_script:
- pip install -r requirements-dev.txt
test:
analyze:
script:
- bandit whatformat/*.py whatformat/util/*.py
- flake8 --config=.flake8 whatformat/*.py whatformat/util/*.py
- mypy whatformat/*.py whatformat/util/*.py
- pydocstyle whatformat/*.py whatformat/util/*.py
- pylint whatformat/*.py whatformat/util/*.py
test:
script:
- python3 -m unittest
"""Tests for util.whatdateformat."""
import unittest
from whatformat.util.whatdateformat import get_unique_format_strings
class WhatDateFormatTests(unittest.TestCase):
"""Tests for util.whatdateformat."""
def test_get_unique_format_strings(self):
"""Test for util.whatdateformat.get_unique_format_strings()."""
cases = [
('Jan 2', ['%b %-d']),
('Jan 15', ['%b %d']),
('1-2-1999', ['%-m-%-d-%Y']),
('1.2.1999', ['%-m.%-d.%Y']),
('1.2.1999.', ['%-m.%-d.%Y.']),
('1/2/1999', ['%-m/%-d/%Y']),
('1999.1.2', ['%Y.%-m.%-d']),
('1999-1-2', ['%Y-%-m-%-d']),
('1999. 2. 1', ['%Y. %-m. %-d']),
('1999.2.1', ['%Y.%-m.%-d']),
('1999/2/1', ['%Y/%-m/%-d']),
('28-11-1999', ['%d-%m-%Y']),
('28.11.1999', ['%d.%m.%Y']),
('28.11.1999.', ['%d.%m.%Y.']),
('28/11/1999', ['%d/%m/%Y']),
('11.28.1999', ['%m.%d.%Y']),
('11/28/1999', ['%m/%d/%Y']),
('11-28-1999', ['%m-%d-%Y']),
('1-28-1999', ['%-m-%d-%Y']),
('1.28.1999', ['%-m.%d.%Y']),
('1.28.1999.', ['%-m.%d.%Y.']),
('1/28/1999', ['%-m/%d/%Y']),
('11-28-1999', ['%m-%d-%Y']),
('11/28/1999', ['%m/%d/%Y']),
('1999-11-28', ['%Y-%m-%d']),
('1999.11.28.', ['%Y.%m.%d.']),
('1999/11/28', ['%Y/%m/%d']),
('ayy lmao', []),
('', []),
]
for (date, formats) in cases:
self.assertEqual(set(get_unique_format_strings(date)),
set(formats))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment