3

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

单元测试覆盖了多少百分比的代码以及如何衡量它?您如何决定首先对哪些模块进行单元测试?

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

如果你不使用单元测试,你能解释一下为什么不使用吗?

4

1 回答 1

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检查代码覆盖率

您如何决定首先对哪些模块进行单元测试?

复杂的。

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

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

另请查看:

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

于 2013-11-14T23:03:22.133 回答