Skip to content

Instantly share code, notes, and snippets.

@aaronlelevier
Last active June 1, 2019 22:41
Show Gist options
  • Save aaronlelevier/e53fceeaed8323b76212dbcc8c7079ec to your computer and use it in GitHub Desktop.
Save aaronlelevier/e53fceeaed8323b76212dbcc8c7079ec to your computer and use it in GitHub Desktop.
Prod and test code example of unit testing in Python from: https://github.com/aaronlelevier/mlearning
# coco_checker.py
from pathlib import Path
class LabeledData:
@classmethod
def images_numbered_sequentially(cls, filepath):
"""
Returns a tuple (bool, list)
The bool is if the images are sequentially numbered or not
The list returned is the unsequential images for futher
inspection
"""
ret = True
unseq_imgs = []
path = Path(filepath)
filenames = []
for f in path.glob('**/*.jpg'):
if f.is_file():
name, ext = f.name.split('.')
filenames.append(int(name))
idx = None
for f in sorted(filenames):
if idx == None:
idx = f
else:
if f != idx+1:
unseq_imgs.append(f)
ret = False
idx += 1
return ret, unseq_imgs
# test_coco_checker.py
import os
import unittest
from tests import config
from mlearning.coco_checker import LabeledData
class CocoCheckerTests(unittest.TestCase):
def test_all_images_numbered_sequentially(self):
path = os.path.join(config.DATA_DIR, 'images-sequential-ok')
ret_bool, ret_imgs = LabeledData.images_numbered_sequentially(path)
assert ret_bool
assert ret_imgs == []
def test_not_all_images_numbered_sequentially(self):
path = os.path.join(config.DATA_DIR, 'images-not-sequential')
ret_bool, ret_imgs = LabeledData.images_numbered_sequentially(path)
assert not ret_bool
assert ret_imgs == [3, 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment