numerus/test/collection.sql

188 lines
7.0 KiB
PL/PgSQL

-- Test collection
set client_min_messages to warning;
create extension if not exists pgtap;
reset client_min_messages;
begin;
select plan(71);
set search_path to numerus, auth, public;
select has_table('collection');
select has_pk('collection');
select table_privs_are('collection', 'guest', array []::text[]);
select table_privs_are('collection', 'invoicer', array ['SELECT', 'INSERT', 'UPDATE', 'DELETE']);
select table_privs_are('collection', 'admin', array ['SELECT', 'INSERT', 'UPDATE', 'DELETE']);
select table_privs_are('collection', 'authenticator', array []::text[]);
select has_column('collection', 'collection_id');
select col_is_pk('collection', 'collection_id');
select col_type_is('collection', 'collection_id', 'integer');
select col_not_null('collection', 'collection_id');
select col_hasnt_default('collection', 'collection_id');
select has_column('collection', 'company_id');
select col_is_fk('collection', 'company_id');
select fk_ok('collection', 'company_id', 'company', 'company_id');
select col_type_is('collection', 'company_id', 'integer');
select col_not_null('collection', 'company_id');
select col_hasnt_default('collection', 'company_id');
select has_column('collection', 'slug');
select col_is_unique('collection', 'slug');
select col_type_is('collection', 'slug', 'uuid');
select col_not_null('collection', 'slug');
select col_has_default('collection', 'slug');
select col_default_is('collection', 'slug', 'gen_random_uuid()');
select has_column('collection', 'description');
select col_type_is('collection', 'description', 'text');
select col_not_null('collection', 'description');
select col_hasnt_default('collection', 'description');
select has_column('collection', 'collection_date');
select col_type_is('collection', 'collection_date', 'date');
select col_not_null('collection', 'collection_date');
select col_has_default('collection', 'collection_date');
select col_default_is('collection', 'collection_date', 'CURRENT_DATE');
select has_column('collection', 'payment_account_id');
select col_is_fk('collection', 'payment_account_id');
select fk_ok('collection', 'payment_account_id', 'payment_account', 'payment_account_id');
select col_type_is('collection', 'payment_account_id', 'integer');
select col_not_null('collection', 'payment_account_id');
select col_hasnt_default('collection', 'payment_account_id');
select has_column('collection', 'amount');
select col_type_is('collection', 'amount', 'integer');
select col_not_null('collection', 'amount');
select col_hasnt_default('collection', 'amount');
select has_column('collection', 'currency_code');
select col_is_fk('collection', 'currency_code');
select fk_ok('collection', 'currency_code', 'currency', 'currency_code');
select col_type_is('collection', 'currency_code', 'text');
select col_not_null('collection', 'currency_code');
select col_hasnt_default('collection', 'currency_code');
select has_column('collection', 'tags');
select col_type_is('collection', 'tags', 'tag_name[]');
select col_not_null('collection', 'tags');
select col_has_default('collection', 'tags');
select col_default_is('collection', 'tags', '{}');
select has_column('collection', 'payment_status');
select col_is_fk('collection', 'payment_status');
select fk_ok('collection', 'payment_status', 'payment_status', 'payment_status');
select col_type_is('collection', 'payment_status', 'text');
select col_not_null('collection', 'payment_status');
select col_has_default('collection', 'payment_status');
select col_default_is('collection', 'payment_status', 'complete');
select has_column('collection', 'created_at');
select col_type_is('collection', 'created_at', 'timestamp with time zone');
select col_not_null('collection', 'created_at');
select col_has_default('collection', 'created_at');
select col_default_is('collection', 'created_at', 'CURRENT_TIMESTAMP');
set client_min_messages to warning;
truncate collection cascade;
truncate payment_account cascade;
truncate company_user cascade;
truncate company cascade;
truncate payment_method cascade;
truncate auth."user" cascade;
reset client_min_messages;
insert into auth."user" (user_id, email, name, password, role, cookie, cookie_expires_at)
values (1, 'demo@tandem.blog', 'Demo', 'test', 'invoicer', '44facbb30d8a419dfd4bfbc44a4b5539d4970148dfc84bed0e', current_timestamp + interval '1 month')
, (5, 'admin@tandem.blog', 'Demo', 'test', 'admin', '12af4c88b528c2ad4222e3740496ecbc58e76e26f087657524', current_timestamp + interval '1 month')
;
set constraints "company_default_payment_method_id_fkey" deferred;
insert into company (company_id, business_name, vatin, trade_name, phone, email, web, address, city, province, postal_code, country_code, currency_code, default_payment_method_id)
values (2, 'Company 2', 'XX123', '', '555-555-555', 'a@a', '', '', '', '', '', 'ES', 'EUR', 222)
, (4, 'Company 4', 'XX234', '', '666-666-666', 'b@b', '', '', '', '', '', 'FR', 'USD', 444)
;
insert into payment_method (payment_method_id, company_id, name, instructions)
values (444, 4, 'cash', 'cash')
, (222, 2, 'cash', 'cash')
;
set constraints "company_default_payment_method_id_fkey" immediate;
insert into company_user (company_id, user_id)
values (2, 1)
, (4, 5)
;
insert into payment_account (payment_account_id, company_id, payment_account_type, name)
values (221, 2, 'other', 'Other 2')
, (441, 4, 'other', 'Other 4')
;
insert into collection (company_id, description, payment_account_id, amount, currency_code)
values (2, 'Collection 20001', 221, 333, 'EUR')
, (4, 'Collection 40001', 441, 555, 'EUR')
;
prepare collection_data as
select company_id, description
from collection
order by company_id, description;
set role invoicer;
select is_empty('collection_data', 'Should show no data when cookie is not set yet');
reset role;
select set_cookie('44facbb30d8a419dfd4bfbc44a4b5539d4970148dfc84bed0e/demo@tandem.blog');
select bag_eq(
'collection_data',
$$ values (2, 'Collection 20001')
$$,
'Should only list collections from the companies where demo@tandem.blog is user of'
);
reset role;
select set_cookie('12af4c88b528c2ad4222e3740496ecbc58e76e26f087657524/admin@tandem.blog');
select bag_eq(
'collection_data',
$$ values (4, 'Collection 40001')
$$,
'Should only list collections from the companies where admin@tandem.blog is user of'
);
reset role;
select set_cookie('not-a-cookie');
select throws_ok(
'collection_data',
'42501', 'permission denied for table collection',
'Should not allow select to guest users'
);
reset role;
select throws_ok(
$$ insert into collection (company_id, description, payment_account_id, amount, currency_code) values (2, 'Nope', 221, 0, 'EUR') $$,
'23514', 'new row for relation "collection" violates check constraint "collection_amount_positive"',
'Should not allow empty collections'
);
select throws_ok(
$$ insert into collection (company_id, description, payment_account_id, amount, currency_code) values (2, 'Nope', 221, -1, 'EUR') $$,
'23514', 'new row for relation "collection" violates check constraint "collection_amount_positive"',
'Should not allow negative collections'
);
select *
from finish();
rollback;