Exemplo n.º 1
0
def test_get_multiple_products(session, user_table, get_api_test_setup):
    p1_history, p2_history, p3_history = get_api_test_setup
    conds = [{"product_id": 10}, {"product_id": 11}]
    result = get(user_table, session, conds=conds)
    assert_result(result, [p1_history[-1], p2_history[-1]])

    result = get(user_table,
                 session,
                 t1=datetime.utcfromtimestamp(15),
                 conds=conds)
    assert_result(result, p1_history[:1])

    result = get(user_table,
                 session,
                 t1=datetime.utcfromtimestamp(25),
                 conds=conds)
    assert_result(result, [p1_history[1], p2_history[0]])

    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(11),
        t2=datetime.utcfromtimestamp(45),
        conds=conds,
    )
    assert_result(result, list(chain(p1_history[1:], p2_history)))
Exemplo n.º 2
0
def test_get_all_products(session, user_table, get_api_test_setup):
    p1_history, p2_history, p3_history = get_api_test_setup
    result = get(user_table, session)
    assert_result(result, [p1_history[-1], p2_history[-1], p3_history[-1]])

    result = get(user_table, session, t1=datetime.utcfromtimestamp(31))
    assert_result(result, [p1_history[2], p2_history[0], p3_history[0]])

    result = get(user_table, session, t1=datetime.utcfromtimestamp(11))
    assert_result(result, [p1_history[0], p3_history[0]])

    result = get(user_table,
                 session,
                 t1=datetime.utcfromtimestamp(11),
                 t2=datetime.utcfromtimestamp(45))
    assert_result(result, list(chain(p1_history[1:], p2_history)))
Exemplo n.º 3
0
def test_fields_query(session, user_table, get_api_test_setup):
    """Test specifying fields and make sure dedup happens correctly.
    """
    p1_history, p2_history, p3_history = get_api_test_setup
    conds = [{"product_id": 10}]

    fields = ["col2"]
    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(9),
        t2=datetime.utcfromtimestamp(45),
        conds=conds,
        fields=fields,
    )
    expected = [p1_history[0], p1_history[3]]
    assert_result(result, expected, fields=fields)

    fields = ["col1", "col2"]
    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(9),
        t2=datetime.utcfromtimestamp(45),
        conds=conds,
        fields=fields,
    )
    assert_result(result, p1_history, fields=fields)

    fields = ["col1"]
    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(9),
        t2=datetime.utcfromtimestamp(45),
        fields=fields,
    )
    assert_result(result,
                  list(chain(p1_history[:3], p2_history[:1], p3_history)),
                  fields=fields)

    fields = ["col1", "col2"]
    result = get(user_table,
                 session,
                 t1=datetime.utcfromtimestamp(11),
                 conds=conds,
                 fields=fields)
    assert_result(result, p1_history[:1], fields=fields)

    fields = ["col1", "col2"]
    result = get(user_table, session, conds=conds, fields=fields)
    assert_result(result, p1_history[-1:], fields=fields)

    fields = ["col1", "invalid_col"]
    result = get(user_table, session, conds=conds, fields=fields)
    p1_history[-1]["data"]["invalid_col"] = None
    assert_result(result, p1_history[-1:], fields=fields)
Exemplo n.º 4
0
def test_failure_conditions(session, user_table, get_api_test_setup):
    """Pass invalid conds arguments and ensure the query fails.
    """
    conds = [{"product_id": 10, "foo": 15}]
    with pytest.raises(ValueError):
        get(user_table, session, t1=datetime.utcfromtimestamp(31), conds=conds)

    conds = [{"pid": 10}]
    with pytest.raises(ValueError):
        get(user_table, session, t1=datetime.utcfromtimestamp(31), conds=conds)

    with pytest.raises(ValueError):
        get(user_table, session, page=-10)
Exemplo n.º 5
0
def test_get_single_product_with_change(session, user_table,
                                        get_api_test_setup):
    """Performs a query for p1 which has been changed 3 times for current time, previous time
    slices, and various time periods.
    """
    p1_history, p2_history, p3_history = get_api_test_setup
    conds = [{"product_id": 10}]
    result = get(user_table, session, conds=conds)
    assert_result(result, p1_history[-1:])

    result = get(user_table,
                 session,
                 t1=datetime.utcfromtimestamp(15),
                 conds=conds)
    assert_result(result, p1_history[:1])

    result = get(user_table,
                 session,
                 t1=datetime.utcfromtimestamp(35),
                 conds=conds)
    assert_result(result, p1_history[2:3])

    result = get(user_table,
                 session,
                 t2=datetime.utcfromtimestamp(35),
                 conds=conds)
    assert_result(result, p1_history[:3])

    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(11),
        t2=datetime.utcfromtimestamp(45),
        conds=conds,
    )
    assert_result(result, p1_history[1:])

    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(11),
        t2=datetime.utcfromtimestamp(35),
        conds=conds,
    )
    assert_result(result, p1_history[1:3])
Exemplo n.º 6
0
def test_get_single_product_no_change(session, user_table, t1,
                                      get_api_test_setup):
    """Performs a query for p3 which has no changes for current time, previous time slice,
    a time period that includes t1, and a time period that does not include t1.
    """
    p1_history, p2_history, p3_history = get_api_test_setup
    conds = [{"product_id": 2546}]
    result = get(user_table, session, conds=conds)
    assert_result(result, p3_history)

    result = get(user_table,
                 session,
                 t1=datetime.utcfromtimestamp(5),
                 conds=conds)
    assert not result

    result = get(user_table,
                 session,
                 t1=datetime.utcfromtimestamp(15),
                 conds=conds)
    assert_result(result, p3_history)

    result = get(user_table, session, t1=t1, conds=conds)
    assert_result(result, p3_history)

    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(5),
        t2=datetime.utcfromtimestamp(11),
        conds=conds,
    )
    assert_result(result, p3_history)

    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(11),
        t2=datetime.utcfromtimestamp(15),
        conds=conds,
    )
    assert not result
Exemplo n.º 7
0
def test_paging_results(mocker, session, user_table, p1_dict, p1):
    t = datetime.utcfromtimestamp(10000)
    mock_datetime = mocker.patch("savage.models.datetime")
    mock_datetime.utcnow.return_value = t
    history = []
    p1.col2 = 0
    version = add_and_return_version(p1, session)
    history.append(_history(p1, t, version, session))
    # make 500 changes
    for i in range(500):
        p1.col1 = "foobar" + "1" * ((i + 1) // 10)
        p1.col2 += 1
        p1.col3 = i < 250
        version = add_and_return_version(p1, session)
        history.append(_history(p1, t, version, session))
    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(0),
        t2=datetime.utcfromtimestamp(10000000000),
        page=1,
        page_size=1000,
    )
    assert_result(result, history)
    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(0),
        t2=datetime.utcfromtimestamp(10000000000),
        page=1,
        page_size=100,
    )
    assert_result(result, history[:100])
    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(0),
        t2=datetime.utcfromtimestamp(10000000000),
        page=3,
        page_size=100,
    )
    assert_result(result, history[200:300])
    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(0),
        t2=datetime.utcfromtimestamp(10000000000),
        page=5,
        page_size=100,
    )
    assert_result(result, history[400:500])
    result = get(
        user_table,
        session,
        t1=datetime.utcfromtimestamp(0),
        t2=datetime.utcfromtimestamp(10000000000),
        fields=["col1"],
        page=1,
        page_size=80,
    )
    assert_result(result, history[0:80:10], fields=["col1"])
Exemplo n.º 8
0
def test_get_products_after_version(session, user_table, get_api_test_setup):
    p1_history, p2_history, p3_history = get_api_test_setup
    result = get(user_table, session, version_id=p1_history[0]["version_id"])
    assert_result(result, p1_history[1:] + p2_history)