Ejemplo n.º 1
0
async def test_get_users_by_message_count(
    writer: TwitterDataWriter, reader: TwitterDataReader
):
    # conversations 1 and 2
    # first person has 30 in one and 20 in two. next person has 10 in one and 30 in two.
    # so if you sort by overall messages, the first person has more, but if you sort
    # by messages in convo two, the second person has more.

    conversations = (
        "message-count-test-1",
        "message-count-test-2",
        "many-users-test",
    )
    conversation1 = generate_conversation(
        (30, 10),
        (random_2000s_datestring(), random_2000s_datestring()),
        (random_2010s_datestring(), random_2010s_datestring()),
        conversations[0],
        (DOG_RATES, MAIN_USER_ID),
    )
    conversation2 = generate_conversation(
        (20, 30),
        (random_2000s_datestring(), random_2000s_datestring()),
        (random_2010s_datestring(), random_2010s_datestring()),
        conversations[1],
        (DOG_RATES, MAIN_USER_ID),
    )
    # this conversation has users with ids 1-29 (inclusive) with within-conversation
    # messages counts that are below that of the two "real" users referenced above.
    # they are created in order with each having a lower message count than the last
    # (so they're created in the same order that get_users_by_message_count should
    # return them in)
    conversation3 = generate_conversation(
        range(29, 0, -1),
        [random_2000s_datestring()] * 29,
        [random_2010s_datestring()] * 29,
        conversations[2],
        range(1, 30),
    )

    for message in conversation1 + conversation2 + conversation3:
        writer.add_message(message, True)
    await writer.finalize()

    conversation2_users = reader.get_users_by_message_count(1, conversations[1])
    assert conversation2_users[0].id == str(MAIN_USER_ID)
    assert len(conversation2_users) == 2

    ordered_users = reader.get_users_by_message_count(1)
    assert ordered_users[0].id == str(DOG_RATES)
    # skipping the two "real" users, this checks if the other users are being
    # returned in the order that they were created in and paginated properly
    assert [int(x.id) for x in ordered_users[2:22]] == list(range(1, 19))
    ordered_users_2 = reader.get_users_by_message_count(2)
    assert [int(x.id) for x in ordered_users_2] == list(range(19, 30))
Ejemplo n.º 2
0
async def test_conversations_by_message_count(
    writer: TwitterDataWriter, reader: TwitterDataReader
):
    """generate two conversations; one (group) with many messages and one
    (individual) with many messages from you. check that they're both returned real
    good. this test does not test for pagination bc it's the same code as the other
    ones"""

    conversation1 = generate_conversation(
        (50, 40),
        [random_2000s_datestring()] * 2,
        [random_2010s_datestring()] * 2,
        "group",
        (OBAMA, AMAZINGPHIL),
    )

    conversation2 = generate_conversation(
        (60, 10),
        [random_2000s_datestring()] * 2,
        [random_2010s_datestring()] * 2,
        "individual",
        (MAIN_USER_ID, OBAMA),
        False,
    )

    for message in conversation1:
        writer.add_message(message, True)
    for message in conversation2:
        writer.add_message(message)
    await writer.finalize()

    assert (
        reader.get_conversations_by_message_count(1, True, True, True)[0].id
        == "individual"
    )

    assert (
        reader.get_conversations_by_message_count(1, True, True, False)[0].id
        == "group"
    )

    assert (
        reader.get_conversations_by_message_count(1, True, False, True)[0].id
        == "group"
    )

    assert (
        reader.get_conversations_by_message_count(1, False, True, False)[0].id
        == "individual"
    )
Ejemplo n.º 3
0
async def test_conversations_by_user(
    writer: TwitterDataWriter, reader: TwitterDataReader
):
    """create a conversation or two with random users and then like 30 with a
    particular user. make sure they come back in the right order. this test also
    doesn't bother testing pagination"""
    dummy_convo = generate_messages(
        2,
        random_2000s_datestring(),
        random_2010s_datestring(),
        "won't be returned",
        OBAMA,
        AMAZINGPHIL,
    )

    messages_with_dog_rates = []
    for how_many in range(30, 0, -1):
        messages_with_dog_rates += generate_messages(
            how_many,
            random_2000s_datestring(),
            random_2010s_datestring(),
            get_random_text(),
            DOG_RATES,
        )

    descending_ids = []
    prev_id = ""
    for message in messages_with_dog_rates:
        if message["conversationId"] != prev_id:
            descending_ids.append(message["conversationId"])
            prev_id = message["conversationId"]

    shuffle(messages_with_dog_rates)

    for message in dummy_convo:
        writer.add_message(message)
    for message in messages_with_dog_rates:
        writer.add_message(message, True)
    await writer.finalize()

    assert [
        c.id for c in reader.get_conversations_by_user(DOG_RATES, 1)
    ] == descending_ids[: DBRead.CONVERSATIONS_PER_PAGE]
Ejemplo n.º 4
0
async def test_conversation_by_id(
    writer: TwitterDataWriter, reader: TwitterDataReader
):
    conversation_id = "a-conversation"
    convo = generate_conversation(
        (10, 15),
        ("2009-09-09T05:05:05.000Z", "2009-10-09T05:05:05.000Z"),
        ("2010-09-09T05:05:05.000Z", "2010-10-09T05:05:05.000Z"),
        conversation_id,
        (MAIN_USER_ID, AMAZINGPHIL),
        False,
    )
    convo += generate_conversation(
        (20, 20),
        [random_2000s_datestring()] * 2,
        [random_2010s_datestring()] * 2,
        "decoy-conversation",
        (MAIN_USER_ID, DOG_RATES),
        False,
    )

    for message in convo:
        writer.add_message(message)
    await writer.finalize()

    result = reader.get_conversation_by_id(conversation_id)

    assert result == Conversation(
        conversation_id,
        "individual",
        25,
        10,
        "2009-09-09T05:05:05.000Z",
        "2010-10-09T05:05:05.000Z",
        2,
        0,
        True,
        ArchivedUserSummary(
            str(AMAZINGPHIL),
            "",
            str(AMAZINGPHIL),
            DBRead.DEFAULT_DISPLAY_NAME,
            DBRead.USER_AVATAR_DEFAULT_URL,
            False,
            False,
        ),
        None,
        f"{DBRead.DEFAULT_DISPLAY_NAME} (@{AMAZINGPHIL})",
        DBRead.USER_AVATAR_DEFAULT_URL,
        "",
    )
Ejemplo n.º 5
0
async def test_conversation_notes(
    writer: TwitterDataWriter, reader: TwitterDataReader
):
    writer.add_message(
        generate_messages(
            1, random_2000s_datestring(), "", "a-conversation", MAIN_USER_ID
        )[0],
        True,
    )
    await writer.finalize()

    reader.set_conversation_notes("a-conversation", "this is a conversation")

    assert (
        reader.get_conversation_by_id("a-conversation").notes
        == "this is a conversation"
    )
Ejemplo n.º 6
0
async def test_text_search(writer: TwitterDataWriter, reader: TwitterDataReader):
    texts = ("i am home", "home i am", "being at home", "home is here")

    messages = generate_messages(
        20,
        random_2000s_datestring(),
        random_2010s_datestring(),
        "searchyconvo",
        MAIN_USER_ID,
        AMAZINGPHIL,
    )

    for i in range(len(texts)):
        messages[i]["text"] = texts[i]

    for message in messages:
        writer.add_message(message)
    await writer.finalize()

    results = reader.traverse_messages(after="beginning", search="home")["results"]
    assert len(results) == len(texts)
Ejemplo n.º 7
0
async def test_traverse_messages(
    writer: TwitterDataWriter, reader: TwitterDataReader
):
    # testing traversing messages. to test everything, we should have a main
    # conversation, a smaller conversation that one user from the main conversation
    # is in (to test that using the user parameter brings up both), and a third small
    # conversation that will also be show up with no user and conversation parameters
    # specified. the main conversation should include name changes, joins, and
    # leaves, to make sure those can be prevailed upon to show up. the idea would
    # probably be to have non-message messagelikes in the input at regular intervals
    # so that the output can be taken apart in sections and inspected appropriately.
    # so a main conversation like:

    # 20 normal messages
    # name change event
    # 20 normal messages
    # leaving event
    # 20 normal messages
    # joining event
    # 20 normal messages
    # you being added to the conversation

    # i think the best approach so as not to assume things about the
    # messages-per-page in the tests would be to get every page of results for a
    # specific set of paramaters and concatenate them together and inspect the
    # results - and then we can take apart the total output to make sure it looks
    # like the above.

    # make sure to test beginning and end and then go forward/backward starting there
    # to get the whole conversation, as described above, to make sure those work; and
    # then test after and before with real timestamps to just grab like 10 messages
    # at the beginning and end to make sure those work. at is even more fun in that
    # way.

    # search can be tested in a separaate method since it demands specific messages
    # with real words and doesn't include events and such.

    # this first conversation we are generating will be traversed using the
    # conversation parameter. dog_rates will be seen to join and leave the
    # conversation to ensure those events are returned properly.
    dog_rates_span = ("2007-09-09T05:05:45.556Z", "2012-09-09T05:05:45.556Z")

    main_messages = generate_conversation(
        [20] * 4,
        [random_2000s_datestring() for _ in range(3)] + [dog_rates_span[0]],
        [random_2010s_datestring() for _ in range(3)] + [dog_rates_span[1]],
        "main",
        (MAIN_USER_ID, AMAZINGPHIL, OBAMA, DOG_RATES),
    )

    # this name change will show up in the conversation and user searches
    name_change = generate_name_update(
        AMAZINGPHIL, "new_name", random_2000s_datestring(), "main"
    )

    # this one will not
    other_name_change = generate_name_update(
        MAIN_USER_ID, "other_new_name", random_2000s_datestring(), "main"
    )

    participant_leaving = {
        "userIds": [str(DOG_RATES)],
        # right after the last dog_rates message
        "createdAt": "2012-10-09T05:05:45.556Z",
        "conversationId": "main",
        "type": "participantsLeave",
    }

    participant_joining = {
        "initiatingUserId": str(OBAMA),
        "userIds": [str(DOG_RATES)],
        # right before the first dog_rates message
        "createdAt": "2007-08-09T05:05:45.556Z",
        "conversationId": "main",
        "type": "participantsJoin",
    }

    us_being_added = {
        "initiatingUserId": str(OBAMA),
        "participantsSnapshot": [str(AMAZINGPHIL)],
        "createdAt": "1999-12-20T10:51:37.176Z",
        "type": "joinConversation",
        "conversationId": "main",
    }

    main_conversation = sorted(
        main_messages
        + [
            name_change,
            other_name_change,
            participant_joining,
            participant_leaving,
            us_being_added,
        ],
        key=lambda x: x["createdAt"],
    )

    # this conversation provides additional messages that will show up when
    # traversing messages when using the user parameter set to AMAZINGPHIL.
    user_conversation = generate_conversation(
        (30, 20),
        [random_2000s_datestring() for _ in range(2)],
        [random_2010s_datestring() for _ in range(2)],
        "user",
        (MAIN_USER_ID, AMAZINGPHIL),
        False,
    )

    # redundant copy of specific messages from above conversation; do not send to
    # writer
    phil_messages = sorted(
        [
            x
            for x in main_messages + user_conversation
            if x["senderId"] == str(AMAZINGPHIL)
        ],
        key=lambda x: x["createdAt"],
    )

    # these messages should not show up until all messages are retrieved
    decoy_conversation = generate_conversation(
        (30, 20),
        [random_2000s_datestring() for _ in range(2)],
        [random_2010s_datestring() for _ in range(2)],
        "decoy",
        (OBAMA, DOG_RATES),
    )

    all_messages = sorted(
        main_conversation + decoy_conversation + user_conversation,
        key=lambda x: x["createdAt"],
    )

    chrono_sort = lambda x: sorted(x, key=lambda y: y["createdAt"], reverse=True)

    for message in chrono_sort(main_conversation) + chrono_sort(decoy_conversation):
        writer.add_message(message, True)
    for message in chrono_sort(user_conversation):
        writer.add_message(message)
    await writer.finalize()

    main_conversation_results = []
    traverse_from = "beginning"
    while result := reader.traverse_messages(
        conversation="main", after=traverse_from
    )["results"]:
        main_conversation_results += result
        traverse_from = result[-1].sort_by_timestamp
Ejemplo n.º 8
0
async def test_conversations_by_time(
    writer: TwitterDataWriter, reader: TwitterDataReader
):

    page_length = DBRead.CONVERSATIONS_PER_PAGE

    group_ids = [get_random_text() for _ in range(page_length + 2)]
    group_messages = sum(
        [
            generate_messages(
                2,
                random_2000s_datestring(),
                random_2010s_datestring(),
                group_id,
                10101,
            )
            for group_id in group_ids
        ],
        [],
    )

    individual_ids = [get_random_text() for _ in range(page_length + 2)]
    individual_messages = sum(
        [
            generate_messages(
                2,
                random_2000s_datestring(),
                random_2010s_datestring(),
                individual_id,
                MAIN_USER_ID,
                next(unique_id),
            )
            for individual_id in individual_ids
        ],
        [],
    )

    messages = individual_messages + group_messages

    # since every conversation has two messages, every other message starting with
    # the first one is the first in a conversation, and every other message starting
    # with the second one is the last; the firsts will end up in ascending_ids and
    # the lasts in descending_ids
    ascending_ids = [
        m["conversationId"]
        for m in sorted(messages[::2], key=lambda x: x["createdAt"])
    ]
    descending_ids = [
        m["conversationId"]
        for m in sorted(messages[1::2], key=lambda x: x["createdAt"], reverse=True)
    ]

    # the same conversation ids should be in both lists; just sorted according to
    # different times
    assert set(ascending_ids) == set(descending_ids)

    for message in individual_messages:
        writer.add_message(message)
    for message in group_messages:
        writer.add_message(message, True)
    await writer.finalize()

    # check !group and !individual results:

    assert reader.get_conversations_by_time(1, group=False, individual=False) == []

    # check group + individual conversation results:

    asc_conversations_p1 = reader.get_conversations_by_time(1)
    assert ascending_ids[0:page_length] == [x.id for x in asc_conversations_p1]
    asc_conversations_p2 = reader.get_conversations_by_time(2)
    assert ascending_ids[page_length : page_length * 2] == [
        x.id for x in asc_conversations_p2
    ]

    dsc_conversations = reader.get_conversations_by_time(1, asc=False)
    assert [x.id for x in dsc_conversations] == descending_ids[0:page_length]

    # check individual conversation results:
    iac = reader.get_conversations_by_time(1, group=False)
    assert [i.id for i in iac] == [x for x in ascending_ids if x in individual_ids][
        0:page_length
    ]

    # check group conversation results:
    gdc = reader.get_conversations_by_time(2, asc=False, individual=False)
    assert [i.id for i in gdc] == [x for x in descending_ids if x in group_ids][
        page_length : page_length * 2
    ]