Files
cisticola/tests/scraper/instagram.py
2022-03-30 08:05:10 -05:00

26 lines
871 B
Python

import pytest
from cisticola.base import Channel
from cisticola.scraper import InstagramScraper
def test_scrape_instagram_channel_no_media(controller, channel_kwargs):
channels = [Channel(**channel_kwargs['instagram'])]
controller.register_scraper(scraper = InstagramScraper())
controller.scrape_channels(channels = channels, archive_media = False)
@pytest.mark.media
def test_scrape_instagram_channel(controller, channel_kwargs):
controller.reset_db()
channels = [Channel(**channel_kwargs['instagram'])]
controller.register_scraper(scraper = InstagramScraper())
controller.scrape_channels(channels = channels, archive_media = True)
@pytest.mark.profile
def test_scrape_instagram_profile(channel_kwargs):
scraper = InstagramScraper()
channel = Channel(**channel_kwargs['instagram'])
scraper.get_profile(channel=channel)