Emmanuel BENOîT
e7d2072813
* Fixed privileges on both variants of defs.uoc_natural_resource() * Added user unit tests which check execution privileges on all (new) stored procedures and INSERT/UPDATE/SELECT/DELETE privileges on all (new) tables
119 lines
No EOL
3.6 KiB
PL/PgSQL
119 lines
No EOL
3.6 KiB
PL/PgSQL
/*
|
|
* Test constraints and foreign keys on emp.mining_settings
|
|
*/
|
|
BEGIN;
|
|
|
|
/* We need to create a pair of resources and a pair of empires */
|
|
\i utils/strings.sql
|
|
\i utils/resources.sql
|
|
\i utils/accounts.sql
|
|
\i utils/naming.sql
|
|
SELECT _create_natural_resources( 2 , 'testResource' );
|
|
SELECT _create_emp_names( 2 , 'testUser' );
|
|
INSERT INTO emp.empires ( name_id , cash )
|
|
SELECT id , 0 FROM naming.empire_names;
|
|
|
|
/****** TESTS BEGIN HERE ******/
|
|
SELECT plan( 10 );
|
|
|
|
|
|
SELECT diag_test_name( 'Valid empire mining settings record' );
|
|
PREPARE _test_this AS
|
|
INSERT INTO emp.mining_settings(
|
|
empire_id , resource_name_id , empmset_weight
|
|
) VALUES (
|
|
_get_emp_name( 'testUser1' ) , _get_string( 'testResource1' ) , 0
|
|
);
|
|
SELECT lives_ok( '_test_this' );
|
|
|
|
SELECT diag_test_name( 'Duplicate empire mining settings record' );
|
|
SELECT throws_ok( '_test_this' , 23505 );
|
|
DEALLOCATE ALL;
|
|
|
|
SELECT diag_test_name( 'Empire mining settings records with same empire but different types' );
|
|
PREPARE _test_this AS
|
|
INSERT INTO emp.mining_settings(
|
|
empire_id , resource_name_id , empmset_weight
|
|
) VALUES (
|
|
_get_emp_name( 'testUser1' ) , _get_string( 'testResource2' ) , 0
|
|
);
|
|
SELECT lives_ok( '_test_this' );
|
|
DEALLOCATE ALL;
|
|
|
|
SELECT diag_test_name( 'Empire mining settings records with same type but different empires' );
|
|
PREPARE _test_this AS
|
|
INSERT INTO emp.mining_settings(
|
|
empire_id , resource_name_id , empmset_weight
|
|
) VALUES (
|
|
_get_emp_name( 'testUser2' ) , _get_string( 'testResource1' ) , 0
|
|
);
|
|
SELECT lives_ok( '_test_this' );
|
|
DEALLOCATE ALL;
|
|
DELETE FROM emp.mining_settings;
|
|
|
|
|
|
SELECT diag_test_name( 'Empire mining settings record with NULL empire identifier' );
|
|
PREPARE _test_this AS
|
|
INSERT INTO emp.mining_settings(
|
|
empire_id , resource_name_id , empmset_weight
|
|
) VALUES (
|
|
NULL , _get_string( 'testResource1' ) , 0
|
|
);
|
|
SELECT throws_ok( '_test_this' , 23502 );
|
|
DEALLOCATE ALL;
|
|
|
|
SELECT diag_test_name( 'Empire mining settings record with invalid empire identifier' );
|
|
PREPARE _test_this AS
|
|
INSERT INTO emp.mining_settings(
|
|
empire_id , resource_name_id , empmset_weight
|
|
) VALUES (
|
|
_get_bad_emp_name( ) , _get_string( 'testResource1' ) , 0
|
|
);
|
|
SELECT throws_ok( '_test_this' , 23503 );
|
|
DEALLOCATE ALL;
|
|
|
|
|
|
SELECT diag_test_name( 'Empire mining settings record with NULL resource identifier' );
|
|
PREPARE _test_this AS
|
|
INSERT INTO emp.mining_settings(
|
|
empire_id , resource_name_id , empmset_weight
|
|
) VALUES (
|
|
_get_emp_name( 'testUser1' ) , NULL , 0
|
|
);
|
|
SELECT throws_ok( '_test_this' , 23502 );
|
|
DEALLOCATE ALL;
|
|
|
|
SELECT diag_test_name( 'Empire mining settings record with invalid resource identifier' );
|
|
PREPARE _test_this AS
|
|
INSERT INTO emp.mining_settings(
|
|
empire_id , resource_name_id , empmset_weight
|
|
) VALUES (
|
|
_get_emp_name( 'testUser1' ) , _get_bad_string( ) , 0
|
|
);
|
|
SELECT throws_ok( '_test_this' , 23503 );
|
|
DEALLOCATE ALL;
|
|
|
|
|
|
SELECT diag_test_name( 'Empire mining settings record with NULL weight' );
|
|
PREPARE _test_this AS
|
|
INSERT INTO emp.mining_settings(
|
|
empire_id , resource_name_id , empmset_weight
|
|
) VALUES (
|
|
_get_emp_name( 'testUser1' ) , _get_string( 'testResource1' ) , NULL
|
|
);
|
|
SELECT throws_ok( '_test_this' , 23502 );
|
|
DEALLOCATE ALL;
|
|
|
|
SELECT diag_test_name( 'Empire mining settings record with weight < 0' );
|
|
PREPARE _test_this AS
|
|
INSERT INTO emp.mining_settings(
|
|
empire_id , resource_name_id , empmset_weight
|
|
) VALUES (
|
|
_get_emp_name( 'testUser1' ) , _get_string( 'testResource1' ) , -1
|
|
);
|
|
SELECT throws_ok( '_test_this' , 23514 );
|
|
DEALLOCATE ALL;
|
|
|
|
|
|
SELECT * FROM finish( );
|
|
ROLLBACK; |