This page is more or less similar to home, in terms of database: it has a carousel and a list of items; in this case, the definition of campsite services. As i said early, when adding the home carousel, this carousel has its own relation and set of functions to manage slides. They are also duplicated in Go code, but i think i will need to refactor it later to a carousel package or something like that, because both relations have the exact same fields and types, so it makes no sense to have twice the same code. I already did it with the CSS and JavaScript code, mostly because it was easier to replace the `.surroundings div` selector with `.carousel`, and because that way i can have a single template that loads and initializes Slick. There is no UI to create or edit service definitions, although there are the SQL functions, because i have no more time now, and Oriol needs to check that the style is correct for that page.
50 lines
1.7 KiB
PL/PgSQL
50 lines
1.7 KiB
PL/PgSQL
-- Test service_i18n
|
|
set client_min_messages to warning;
|
|
create extension if not exists pgtap;
|
|
reset client_min_messages;
|
|
|
|
begin;
|
|
|
|
select plan(27);
|
|
|
|
set search_path to camper, public;
|
|
|
|
select has_table('service_i18n');
|
|
select has_pk('service_i18n');
|
|
select col_is_pk('service_i18n', array['service_id', 'lang_tag']);
|
|
select table_privs_are('service_i18n', 'guest', array['SELECT']);
|
|
select table_privs_are('service_i18n', 'employee', array['SELECT']);
|
|
select table_privs_are('service_i18n', 'admin', array['SELECT', 'INSERT', 'UPDATE', 'DELETE']);
|
|
select table_privs_are('service_i18n', 'authenticator', array[]::text[]);
|
|
|
|
select has_column('service_i18n', 'service_id');
|
|
select col_is_fk('service_i18n', 'service_id');
|
|
select fk_ok('service_i18n', 'service_id', 'service', 'service_id');
|
|
select col_type_is('service_i18n', 'service_id', 'integer');
|
|
select col_not_null('service_i18n', 'service_id');
|
|
select col_hasnt_default('service_i18n', 'service_id');
|
|
|
|
select has_column('service_i18n', 'lang_tag');
|
|
select col_is_fk('service_i18n', 'lang_tag');
|
|
select fk_ok('service_i18n', 'lang_tag', 'language', 'lang_tag');
|
|
select col_type_is('service_i18n', 'lang_tag', 'text');
|
|
select col_not_null('service_i18n', 'lang_tag');
|
|
select col_hasnt_default('service_i18n', 'lang_tag');
|
|
|
|
select has_column('service_i18n', 'name');
|
|
select col_type_is('service_i18n', 'name', 'text');
|
|
select col_not_null('service_i18n', 'name');
|
|
select col_hasnt_default('service_i18n', 'name');
|
|
|
|
select has_column('service_i18n', 'description');
|
|
select col_type_is('service_i18n', 'description', 'xml');
|
|
select col_not_null('service_i18n', 'description');
|
|
select col_hasnt_default('service_i18n', 'description');
|
|
|
|
|
|
select *
|
|
from finish();
|
|
|
|
rollback;
|
|
|