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

Added test file for banners module #1103

Merged
merged 1 commit into from
Jun 6, 2024
Merged
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
33 changes: 33 additions & 0 deletions src/test/banners_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import unittest
from src.scrape_up.banners import Scraper88x31


class TestScraper88x31(unittest.TestCase):

def setUp(self):
"""
Initialize a Scraper88x31 instance before each test method.
"""
self.scraper = Scraper88x31()

def test_get_all(self):
"""
| Methods | Details |
| ------------------ | -------------------------------------------------------- |
| `get_all()` | Returns the list of all available 88x31 banners |
"""
try:
banners = self.scraper.get_all()

# Check if banners is a list of URLs
self.assertIsInstance(banners, list)
for banner in banners:
self.assertIsInstance(banner, str)
self.assertTrue(banner.startswith("https://cyber.dabamos.de/88x31/"))
self.assertTrue(banner.endswith(".gif"))
except:
return None


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