61 lines
2.5 KiB
PL/PgSQL
61 lines
2.5 KiB
PL/PgSQL
-- Test order_seasons
|
|
set client_min_messages to warning;
|
|
create extension if not exists pgtap;
|
|
reset client_min_messages;
|
|
|
|
begin;
|
|
|
|
select plan(11);
|
|
|
|
set search_path to camper, public;
|
|
|
|
select has_function('camper', 'order_seasons', array['uuid[]']);
|
|
select function_lang_is('camper', 'order_seasons', array['uuid[]'], 'sql');
|
|
select function_returns('camper', 'order_seasons', array['uuid[]'], 'void');
|
|
select isnt_definer('camper', 'order_seasons', array['uuid[]']);
|
|
select volatility_is('camper', 'order_seasons', array['uuid[]'], 'volatile');
|
|
select function_privs_are('camper', 'order_seasons', array ['uuid[]'], 'guest', array[]::text[]);
|
|
select function_privs_are('camper', 'order_seasons', array ['uuid[]'], 'employee', array[]::text[]);
|
|
select function_privs_are('camper', 'order_seasons', array ['uuid[]'], 'admin', array['EXECUTE']);
|
|
select function_privs_are('camper', 'order_seasons', array ['uuid[]'], 'authenticator', array[]::text[]);
|
|
|
|
|
|
set client_min_messages to warning;
|
|
truncate season cascade;
|
|
truncate company cascade;
|
|
reset client_min_messages;
|
|
|
|
|
|
insert into company (company_id, business_name, vatin, trade_name, phone, email, web, address, city, province, postal_code, rtc_number, country_code, currency_code, default_lang_tag)
|
|
values (1, 'Company 2', 'XX123', '', '555-555-555', 'a@a', '', '', '', '', '', '', 'ES', 'EUR', 'ca')
|
|
;
|
|
|
|
insert into season (company_id, slug, name, color, active)
|
|
values (1, '87452b88-b48f-48d3-bb6c-0296de64164e', 'A', to_integer('#232323'), true)
|
|
, (1, '9b6370f7-f941-46f2-bc6e-de455675bd0a', 'B', to_integer('#323232'), true)
|
|
, (1, 'b33cfbc9-fbcc-4aac-8335-e5f94ea7e6b2', 'C', to_integer('#323232'), true)
|
|
, (1, '8c4465ec-a690-43d7-854b-7fcd35fccb1c', 'D', to_integer('#323232'), true)
|
|
, (1, 'd28c30fb-57ac-4243-a8c3-ad1a26637f5a', 'E', to_integer('#323232'), true)
|
|
;
|
|
|
|
select lives_ok(
|
|
$$ select order_seasons('{b33cfbc9-fbcc-4aac-8335-e5f94ea7e6b2,d28c30fb-57ac-4243-a8c3-ad1a26637f5a,8c4465ec-a690-43d7-854b-7fcd35fccb1c,87452b88-b48f-48d3-bb6c-0296de64164e,9b6370f7-f941-46f2-bc6e-de455675bd0a}') $$,
|
|
'Should be able to sort seasons using their UUID'
|
|
);
|
|
|
|
select bag_eq(
|
|
$$ select slug::text, position from season $$,
|
|
$$ values ('b33cfbc9-fbcc-4aac-8335-e5f94ea7e6b2', 1)
|
|
, ('d28c30fb-57ac-4243-a8c3-ad1a26637f5a', 2)
|
|
, ('8c4465ec-a690-43d7-854b-7fcd35fccb1c', 3)
|
|
, ('87452b88-b48f-48d3-bb6c-0296de64164e', 4)
|
|
, ('9b6370f7-f941-46f2-bc6e-de455675bd0a', 5)
|
|
$$,
|
|
'Should have sorted all campsite types.'
|
|
);
|
|
|
|
select *
|
|
from finish();
|
|
|
|
rollback;
|