Пример #1
0
def gen_campaigns(campaign_type=CampaignType.ALL, total_campaigns=100):
    """
    Generate mock campaigns

    :param campaign_type:
    :param total_campaigns:
    :param with_comments:
    :return:
    """
    if campaign_type == CampaignType.ALL:
        campaign_type = [getattr(CampaignType, attr) for attr in dir(CampaignType()) if
                         not callable(attr) and not attr.startswith("__")]
        campaign_type.remove(CampaignType.ALL)
    else: campaign_type = [campaign_type]

    #build campaigns
    now = datetime.datetime.now()
    generated_campaigns = []
    for _ in range(total_campaigns):
        c = Campaign()
        c.publish_datetime = __gen_random_datetime(MOCK_DATE_RANGE_DAYS)
        c.title = "Mock Title"
        c.description = "Mock Description"
        c.type = choice(campaign_type)
        c.picture_url = "http://lorempixel.com/400/400"

        if c.type == CampaignType.EVENT:
            c.happening_datetime = __gen_random_datetime(MOCK_DATE_RANGE_DAYS)

        generated_campaigns += [c]

    return generated_campaigns
Пример #2
0
def gen_articles(total_items=20):
    for _ in range(total_items):
        basic_attr = {
            "name": loremipsum.sentence(max_char=choice(range(10, 20))),
            "image": None,
            "description": loremipsum.paragraph(),
        }
        publish_datetime = __gen_random_datetime(MOCK_DATE_RANGE_DAYS)
        items.save_item(basic_attr, ARTICLE_PATH, publish_datetime)