Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

first shot at testing #13

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"safe_mode": false,
"loglevel": "info",
"show_test_result_images": true,
"text":
{
"font": "fonts/Futura_Condensed_Extra_Bold.otf",
1 change: 1 addition & 0 deletions src/config.py
Original file line number Diff line number Diff line change
@@ -34,6 +34,7 @@
"error": logging.ERROR,
}
loglevel = __logdict[config["loglevel"]]
show_test_result_images = config["show_test_result_images"]

pngcrush_enabled = config["optimization"]["pngcrush"]["enabled"]

5 changes: 2 additions & 3 deletions src/generatecaption.py
Original file line number Diff line number Diff line change
@@ -85,13 +85,12 @@ def generate_caption_image(rawtext: str) -> Image.Image:
config.bg_color,
)
# paste merged lines in the middle
caption.paste(
caption.alpha_composite(
merged_lines,
(
(caption.width - merged_lines.width) // 2,
(caption.height - merged_lines.height) // 2,
),
merged_lines,
)
)
logging.debug(f"Added padding to caption, size: {caption.size}")

51 changes: 51 additions & 0 deletions tests/test_generatecaption.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import unittest
import sys
from PIL import Image
from src.generatecaption import generate_caption_image
from src import config


class TestGenerateCaption(unittest.TestCase):
show = config.show_test_result_images
def test_generate_caption_image_hu(self):
rawtext = "Árvíztűrő tükörfúrógép"
result = generate_caption_image(rawtext)
self.assertIsInstance(result, Image.Image)

if self.show:
result.show()

def test_generate_caption_image_emoji(self):
rawtext = ":3 <3 :+1: :skull: 🦊 🐱"
result = generate_caption_image(rawtext)
self.assertIsInstance(result, Image.Image)

if self.show:
result.show()

def test_generate_caption_image_long(self):
rawtext = "faliure after " * 32
result = generate_caption_image(rawtext)
self.assertIsInstance(result, Image.Image)

if self.show:
result.show()

def test_generate_caption_image_emote(self):
rawtext = "<:floraSmug:1112288234488201307> " * 40
result = generate_caption_image(rawtext)
self.assertIsInstance(result, Image.Image)

if self.show:
result.show()

def test_generate_caption_image_longword(self):
rawtext = "test_generate_caption_image_longword_" + "A" * 100
result = generate_caption_image(rawtext)
self.assertIsInstance(result, Image.Image)

if self.show:
result.show()

if __name__ == "__main__":
unittest.main()