您使用哪些工具/库来对PL / PgSQL进行单元测试

时间:2013-11-14 15:59:43

标签: unit-testing postgresql postgresql-9.3

如何对PL / PgSQL进行单元测试?您使用哪些库/工具?

单元测试涵盖了多少百分比的代码,如何衡量?您如何确定首先进行单元测试的模块?

您认为您在单位测试线束上投入的时间和精力是否得到了回报?

如果您不使用单元测试,可以解释原因吗?

1 个答案:

答案 0 :(得分:5)

如果我有一个功能public.foo(bar text) returns text ...

我创建了另一个这样的函数:

create or replace function test.foo() returns void as $$
begin

  perform assert_equals('stuff', public.foo('thing'));
  perform assert_null(public.foo(null));
  ...

end $$ language plpgsql;

我有一些断言函数,如下所示。我故意使用与JUnit相同的名称和签名。

CREATE OR REPLACE FUNCTION assert_equals(expected text, actual text) RETURNS void AS $$
begin
        if expected = actual or (expected is null and actual is null) then
            --do nothing
        else
            raise exception 'Assertion Error. Expected <%> but was <%>', expected, actual;
        end if;

end $$ LANGUAGE plpgsql;

我还有一个运行所有测试的功能:

CREATE OR REPLACE FUNCTION test.run_all() RETURNS void AS $$
declare
    skip constant name[] = '{run_all}';
    test_schema_name constant name = 'test';
    proc pg_catalog.pg_proc%rowtype;
    started timestamptz;
begin

    raise notice 'Time(m)   Name';
    for proc in select p.* from pg_catalog.pg_proc p join pg_catalog.pg_namespace n on pronamespace = n.oid where nspname = test_schema_name and not proname = any(skip) order by proname loop
        started = clock_timestamp();
        execute format('select %s.%s();', test_schema_name, proc.proname);
        raise notice '% %.%()', to_char(clock_timestamp() - started, 'MI:SS:MS'), test_schema_name, proc.proname;
    end loop;  

end $$ LANGUAGE plpgsql;

关于你的问题:

  

单元测试涵盖了您的代码的百分比,以及您如何操作   测量它?

不确定。我猜我需要一个代码覆盖工具。

更新:看起来您可以使用https://github.com/kputnam/piggly

检查代码覆盖率
  

如何确定首先进行单元测试的模块?

最多complex个。

  

您认为您在单位投入的时间和精力   测试线束是否得到了回报?

我很高兴我正在使用单元测试。

另请参阅:

http://pgtap.org/
http://en.dklab.ru/lib/dklab_pgunit/
http://www.epictest.org/