* Refactor project structure "api" * fix bug conversione delle valute fiat in stablecoin in BinanceWrapper * Refactor: WrapperHandler for managing API wrappers with retry logic; update related modules and tests * Refactor: Update ProductInfo and Price classes to include aggregation methods; remove standalone aggregation functions * fix docs
25 lines
946 B
Python
25 lines
946 B
Python
import os
|
|
import pytest
|
|
from app.api.social.reddit import MAX_COMMENTS, RedditWrapper
|
|
|
|
@pytest.mark.social
|
|
@pytest.mark.api
|
|
@pytest.mark.skipif(not(os.getenv("REDDIT_API_CLIENT_ID")) or not os.getenv("REDDIT_API_CLIENT_SECRET"), reason="REDDIT_CLIENT_ID and REDDIT_API_CLIENT_SECRET not set in environment variables")
|
|
class TestRedditWrapper:
|
|
def test_initialization(self):
|
|
wrapper = RedditWrapper()
|
|
assert wrapper is not None
|
|
assert wrapper.tool is not None
|
|
|
|
def test_get_top_crypto_posts(self):
|
|
wrapper = RedditWrapper()
|
|
posts = wrapper.get_top_crypto_posts(limit=2)
|
|
assert isinstance(posts, list)
|
|
assert len(posts) == 2
|
|
for post in posts:
|
|
assert post.title != ""
|
|
assert isinstance(post.comments, list)
|
|
assert len(post.comments) <= MAX_COMMENTS
|
|
for comment in post.comments:
|
|
assert comment.description != ""
|