Emmanuel BENOîT
d38576a5cf
* Modified mining settings stored procedures to use text identifiers instead of numeric identifiers * Added DAO for mining settings and controller for resource operations * Added UpdateEmpireMiningSettingsCommand and associated command delegate. The command always returns NullResponse. * Overview page templates split into multiple files for clarity, added priority update form to the empire economy view and associated web server handler
37 lines
No EOL
1.5 KiB
PL/PgSQL
37 lines
No EOL
1.5 KiB
PL/PgSQL
/*
|
|
* Test the emp.mset_update_set() function
|
|
*/
|
|
BEGIN;
|
|
CREATE TEMPORARY TABLE mset_update(
|
|
empire_id INT ,
|
|
resource_name TEXT ,
|
|
empmset_weight INT
|
|
) ON COMMIT DROP;
|
|
INSERT INTO mset_update VALUES ( 1 , 'a' , 0 ) , ( 1 , 'b' , 0 );
|
|
|
|
/***** TESTS BEGIN HERE *****/
|
|
SELECT plan( 7 );
|
|
|
|
SELECT diag_test_name( 'emp.mset_update_set( ) - Valid update' );
|
|
SELECT ok( emp.mset_update_set( 'a' , 1 ) );
|
|
SELECT diag_test_name( 'emp.mset_update_set( ) - Valid update results (1/2)' );
|
|
SELECT is( empmset_weight , 1 ) FROM mset_update WHERE resource_name = 'a';
|
|
SELECT diag_test_name( 'emp.mset_update_set( ) - Valid update results (2/2)' );
|
|
SELECT is( empmset_weight , 0 ) FROM mset_update WHERE resource_name = 'b';
|
|
DELETE FROM mset_update;
|
|
|
|
INSERT INTO mset_update VALUES ( 1 , 'a' , 0 ) , ( 1 , 'b' , 0 );
|
|
SELECT diag_test_name( 'emp.mset_update_set( ) - Update on unknown resource' );
|
|
SELECT ok( NOT emp.mset_update_set( 'c' , 1 ) );
|
|
SELECT diag_test_name( 'emp.mset_update_set( ) - Unknown resource update results (1/2)' );
|
|
SELECT is( empmset_weight , 0 ) FROM mset_update WHERE resource_name = 'a';
|
|
SELECT diag_test_name( 'emp.mset_update_set( ) - Unknown resource update results (2/2)' );
|
|
SELECT is( empmset_weight , 0 ) FROM mset_update WHERE resource_name = 'b';
|
|
DELETE FROM mset_update;
|
|
|
|
INSERT INTO mset_update VALUES ( 1 , 'a' , 0 ) , ( 1 , 'b' , 0 );
|
|
SELECT diag_test_name( 'emp.mset_update_set( ) - Update with invalid weight' );
|
|
SELECT ok( emp.mset_update_set( 'a' , -1 ) );
|
|
|
|
SELECT * FROM finish( );
|
|
ROLLBACK; |