-
-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |