51 lines
1.9 KiB
PL/PgSQL
51 lines
1.9 KiB
PL/PgSQL
-- Test login_attempt
|
|
set client_min_messages to warning;
|
|
create extension if not exists pgtap;
|
|
reset client_min_messages;
|
|
|
|
begin;
|
|
|
|
select plan(29);
|
|
|
|
set search_path to auth, public;
|
|
|
|
select has_table('login_attempt');
|
|
select has_pk('login_attempt');
|
|
select table_privs_are('login_attempt', 'guest', array []::text[]);
|
|
select table_privs_are('login_attempt', 'invoicer', array []::text[]);
|
|
select table_privs_are('login_attempt', 'admin', array []::text[]);
|
|
select table_privs_are('login_attempt', 'authenticator', array []::text[]);
|
|
|
|
select has_column('login_attempt', 'attempt_id');
|
|
select col_is_pk('login_attempt', 'attempt_id');
|
|
select col_type_is('login_attempt', 'attempt_id', 'bigint');
|
|
select col_not_null('login_attempt', 'attempt_id');
|
|
select col_has_default('login_attempt', 'attempt_id');
|
|
select col_default_is('login_attempt', 'attempt_id', 'nextval(''login_attempt_attempt_id_seq''::regclass)');
|
|
|
|
select has_column('login_attempt', 'user_name');
|
|
select col_type_is('login_attempt', 'user_name', 'text');
|
|
select col_not_null('login_attempt', 'user_name');
|
|
select col_hasnt_default('login_attempt', 'user_name');
|
|
|
|
select has_column('login_attempt', 'ip_address');
|
|
select col_type_is('login_attempt', 'ip_address', 'inet');
|
|
select col_is_null('login_attempt', 'ip_address');
|
|
select col_hasnt_default('login_attempt', 'ip_address');
|
|
|
|
select has_column('login_attempt', 'success');
|
|
select col_type_is('login_attempt', 'success', 'boolean');
|
|
select col_not_null('login_attempt', 'success');
|
|
select col_hasnt_default('login_attempt', 'success');
|
|
|
|
select has_column('login_attempt', 'attempted_at');
|
|
select col_type_is('login_attempt', 'attempted_at', 'timestamp with time zone');
|
|
select col_not_null('login_attempt', 'attempted_at');
|
|
select col_has_default('login_attempt', 'attempted_at');
|
|
select col_default_is('login_attempt', 'attempted_at', current_timestamp);
|
|
|
|
select *
|
|
from finish();
|
|
|
|
rollback;
|