コード例 #1
0
ファイル: tests.py プロジェクト: snapperVibes/Plpy-Man
def test_type_annotations() -> None:
    def pyadd(a: int, b: int) -> None:
        print(a + b)

    actual = _to_sql(pyadd).__str__()
    expected = """\
CREATE OR REPLACE FUNCTION pyadd (a INTEGER, b INTEGER) AS $$
    print(a + b)
$$ LANGUAGE plpython3u;
"""
    assert actual == expected
コード例 #2
0
ファイル: tests.py プロジェクト: snapperVibes/Plpy-Man
def test_new_to_python_and_strings():
    def return_str_arr():
        return "hello"

    actual = _to_sql(return_str_arr, rettype="varchar[]").__str__()
    expected = ("""\
CREATE OR REPLACE FUNCTION return_str_arr()
  RETURNS varchar[]
AS $$
    return "hello"
$$ LANGUAGE plpython3u;
""")
    assert actual == expected
コード例 #3
0
ファイル: tests.py プロジェクト: snapperVibes/Plpy-Man
def test_arrays_lists():
    def return_arr():
        return [1, 2, 3, 4, 5]

    actual = _to_sql(return_arr, argtypes=[], rettype="int[]").__str__()
    expected = ("""\
CREATE OR REPLACE FUNCTION return_arr()
  RETURNS int[]
AS $$
    return [1, 2, 3, 4, 5]
$$ LANGUAGE plpython3u;
""")
    assert actual == expected
コード例 #4
0
ファイル: tests.py プロジェクト: snapperVibes/Plpy-Man
def test_named_pair_mapping():
    def make_pair(name, value):
        return {"name": name, "value": value}

    actual = _to_sql(make_pair,
                     argtypes=["text", "integer"],
                     rettype="named_value").__str__()
    expected = ("""\
CREATE OR REPLACE FUNCTION make_pair (name text, value integer)
  RETURNS named_value
AS $$
    return { "name": name, "value": value }
$$ LANGUAGE plpython3u;
""")
    assert actual == expected
コード例 #5
0
ファイル: tests.py プロジェクト: snapperVibes/Plpy-Man
def test_multi_dimensional_array():
    def test_type_conversion_array_int4(x):
        plpy.info(x, type(x))
        return x

    actual = _to_sql(test_type_conversion_array_int4,
                     argtypes=["int4[]"],
                     rettype="int4[]").__str__()
    expected = ("""\
CREATE OR REPLACE FUNCTION test_type_conversion_array_int4 (x int4[])
  RETURNS int4[]
AS $$
    plpy.info(x, type(x))
    return x
$$ LANGUAGE plpython3u;
""")
    assert actual == expected
コード例 #6
0
ファイル: tests.py プロジェクト: snapperVibes/Plpy-Man
def test_comments():
    def make_pair(name, value):
        ''' docstring is included '''
        # Comments are parsed out
        return (name, value)
        # or alternatively, as tuple: return [ name, value ]

    actual = _to_sql(make_pair,
                     argtypes=["text", "integer"],
                     rettype="named_value").__str__()
    expected = ("""\
CREATE OR REPLACE FUNCTION make_pair (name text, value integer)
  RETURNS named_value
AS $$
    ''' docstring is included '''
    return ( name, value )
$$ LANGUAGE plpython3u;
""")
    assert actual == expected
コード例 #7
0
ファイル: tests.py プロジェクト: snapperVibes/Plpy-Man
def test_composite_types():
    def overpaid(e):
        if e["salary"] > 200000:
            return True
        if (e["age"] < 30) and (e["salary"] > 100000):
            return True
        return False

    actual = _to_sql(overpaid, argtypes=["employee"],
                     rettype="boolean").__str__()
    expected = ("""\
CREATE OR REPLACE FUNCTION overpaid (e employee)
  RETURNS boolean
AS $$
    if e["salary"] > 200000:
        return True
    if (e["age"] < 30) and (e["salary"] > 100000):
        return True
    return False
$$ LANGUAGE plpython3u;
""")
    assert actual == expected
コード例 #8
0
ファイル: tests.py プロジェクト: snapperVibes/Plpy-Man
def test_null_none():
    def pymax(a, b):
        if (a is None) or (b is None):
            return None
        if a > b:
            return a
        return b

    actual = _to_sql(pymax, argtypes=["integer", "integer"],
                     rettype="integer").__str__()
    expected = ("""\
CREATE OR REPLACE FUNCTION pymax (a integer, b integer)
  RETURNS integer
AS $$
    if (a is None) or (b is None):
        return None
    if a > b:
        return a
    return b
$$ LANGUAGE plpython3u;
""")
    assert actual == expected
コード例 #9
0
ファイル: tests.py プロジェクト: snapperVibes/Plpy-Man
def test_after_return():
    def make_pair(name, value):
        class named_value:
            def __init__(self, n, v):
                self.name = n
                self.value = v

        return named_value(name, value)

        # or simply
        class nv:
            pass

        nv.name = name
        nv.value = value
        return nv

    actual = _to_sql(make_pair,
                     argtypes=["text", "integer"],
                     rettype="named_value").__str__()
    expected = ("""\
CREATE OR REPLACE FUNCTION make_pair (name text, value integer)
  RETURNS named_value
AS $$
    class named_value:
        def __init__(self, n, v):
            self.name = n
            self.value = v
    return named_value(name, value)
    class nv: pass
    nv.name = name
    nv.value = value
    return nv
$$ LANGUAGE plpython3u;
""")
    assert actual == expected