2022-07-29 12:14:22 +02:00
|
|
|
|
--liquibase formatted sql
|
|
|
|
|
|
|
|
|
|
|
2022-07-29 11:39:32 +02:00
|
|
|
|
-- ============================================================================
|
2022-08-31 09:42:40 +02:00
|
|
|
|
--changeset test-customer-TEST-DATA-GENERATOR:1 endDelimiter:--//
|
2022-07-29 11:39:32 +02:00
|
|
|
|
-- ----------------------------------------------------------------------------
|
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-08-31 09:42:40 +02:00
|
|
|
|
create or replace procedure createTestCustomerTestData(
|
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;
|
2022-08-31 09:42:40 +02:00
|
|
|
|
call defineContext(currentTask, null, 'mike@example.org', 'global#test-global.admin');
|
2022-08-24 17:56:13 +02:00
|
|
|
|
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
|
2022-08-31 09:42:40 +02:00
|
|
|
|
into test_customer (reference, prefix, adminUserName)
|
2022-08-24 17:56:13 +02:00
|
|
|
|
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.
|
|
|
|
|
*/
|
2022-08-31 09:42:40 +02:00
|
|
|
|
create or replace procedure createTestCustomerTestData(
|
2022-08-24 17:56:13 +02:00
|
|
|
|
startCount integer, -- count of auto generated rows before the run
|
|
|
|
|
endCount integer -- count of auto generated rows after the run
|
|
|
|
|
)
|
|
|
|
|
language plpgsql as $$
|
|
|
|
|
begin
|
|
|
|
|
for t in startCount..endCount
|
|
|
|
|
loop
|
2022-08-31 09:42:40 +02:00
|
|
|
|
call createTestCustomerTestData(testCustomerReference(t), intToVarChar(t, 3));
|
2022-08-24 17:56:13 +02:00
|
|
|
|
commit;
|
2022-07-29 11:39:32 +02:00
|
|
|
|
end loop;
|
|
|
|
|
end; $$;
|
|
|
|
|
--//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- ============================================================================
|
2022-08-31 09:42:40 +02:00
|
|
|
|
--changeset test-customer-TEST-DATA-GENERATION:1 –context=dev,tc endDelimiter:--//
|
2022-07-29 11:39:32 +02:00
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
do language plpgsql $$
|
|
|
|
|
begin
|
2022-08-31 09:42:40 +02:00
|
|
|
|
call createTestCustomerTestData(99901, 'xxx');
|
|
|
|
|
call createTestCustomerTestData(99902, 'yyy');
|
|
|
|
|
call createTestCustomerTestData(99903, 'zzz');
|
2022-07-29 11:39:32 +02:00
|
|
|
|
end;
|
|
|
|
|
$$;
|
|
|
|
|
--//
|