2022-07-29 12:14:22 +02:00
|
|
|
|
--liquibase formatted sql
|
|
|
|
|
|
|
|
|
|
|
2022-07-29 11:39:32 +02:00
|
|
|
|
-- ============================================================================
|
|
|
|
|
--changeset hs-customer-TEST-DATA-GENERATOR:1 endDelimiter:--//
|
|
|
|
|
-- ----------------------------------------------------------------------------
|
2022-07-29 12:14:22 +02:00
|
|
|
|
/*
|
|
|
|
|
Generates a customer reference number for a given test data counter.
|
|
|
|
|
*/
|
|
|
|
|
create or replace function testCustomerReference(customerCount integer)
|
|
|
|
|
returns integer
|
|
|
|
|
returns null on null input
|
|
|
|
|
language plpgsql as $$
|
|
|
|
|
begin
|
|
|
|
|
return 10000 + customerCount;
|
|
|
|
|
end; $$;
|
2022-07-29 11:39:32 +02:00
|
|
|
|
|
2022-08-24 17:56:13 +02:00
|
|
|
|
|
2022-07-29 12:14:22 +02:00
|
|
|
|
/*
|
2022-08-24 17:56:13 +02:00
|
|
|
|
Creates a single customer test record with dist.
|
2022-07-29 12:14:22 +02:00
|
|
|
|
*/
|
2022-07-29 11:39:32 +02:00
|
|
|
|
create or replace procedure createCustomerTestData(
|
2022-08-24 17:56:13 +02:00
|
|
|
|
custReference integer,
|
|
|
|
|
custPrefix varchar
|
2022-07-29 11:39:32 +02:00
|
|
|
|
)
|
|
|
|
|
language plpgsql as $$
|
|
|
|
|
declare
|
|
|
|
|
currentTask varchar;
|
|
|
|
|
custRowId uuid;
|
|
|
|
|
custAdminName varchar;
|
|
|
|
|
begin
|
2022-08-24 17:56:13 +02:00
|
|
|
|
currentTask = 'creating RBAC test customer #' || custReference || '/' || custPrefix;
|
|
|
|
|
set local hsadminng.currentUser to 'mike@hostsharing.net';
|
|
|
|
|
set local hsadminng.assumedRoles to 'global#hostsharing.admin';
|
|
|
|
|
execute format('set local hsadminng.currentTask to %L', currentTask);
|
2022-07-29 11:39:32 +02:00
|
|
|
|
|
2022-08-24 17:56:13 +02:00
|
|
|
|
custRowId = uuid_generate_v4();
|
|
|
|
|
custAdminName = 'customer-admin@' || custPrefix || '.example.com';
|
2022-07-29 11:39:32 +02:00
|
|
|
|
|
2022-08-24 17:56:13 +02:00
|
|
|
|
raise notice 'creating customer %:%', custReference, custPrefix;
|
|
|
|
|
insert
|
|
|
|
|
into customer (reference, prefix, adminUserName)
|
|
|
|
|
values (custReference, custPrefix, custAdminName);
|
|
|
|
|
end; $$;
|
|
|
|
|
--//
|
2022-07-29 11:39:32 +02:00
|
|
|
|
|
2022-08-24 17:56:13 +02:00
|
|
|
|
/*
|
|
|
|
|
Creates a range of test customers for mass data generation.
|
|
|
|
|
*/
|
|
|
|
|
create or replace procedure createCustomerTestData(
|
|
|
|
|
startCount integer, -- count of auto generated rows before the run
|
|
|
|
|
endCount integer -- count of auto generated rows after the run
|
|
|
|
|
)
|
|
|
|
|
language plpgsql as $$
|
|
|
|
|
begin
|
|
|
|
|
set hsadminng.currentUser to '';
|
2022-07-29 11:39:32 +02:00
|
|
|
|
|
2022-08-24 17:56:13 +02:00
|
|
|
|
for t in startCount..endCount
|
|
|
|
|
loop
|
|
|
|
|
call createCustomerTestData(testCustomerReference(t), intToVarChar(t, 3));
|
|
|
|
|
commit;
|
2022-07-29 11:39:32 +02:00
|
|
|
|
end loop;
|
|
|
|
|
end; $$;
|
|
|
|
|
--//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- ============================================================================
|
|
|
|
|
--changeset hs-customer-TEST-DATA-GENERATION:1 –context=dev,tc endDelimiter:--//
|
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
do language plpgsql $$
|
|
|
|
|
begin
|
2022-08-24 17:56:13 +02:00
|
|
|
|
call createCustomerTestData(99901, 'xxx');
|
|
|
|
|
call createCustomerTestData(99902, 'yyy');
|
|
|
|
|
call createCustomerTestData(99903, 'zzz');
|
2022-07-29 11:39:32 +02:00
|
|
|
|
end;
|
|
|
|
|
$$;
|
|
|
|
|
--//
|