@@ -1089,6 +1089,8 @@ def test_minimal(self, con, dummy_backend, remote_process_definitions):
10891089 }
10901090 },
10911091 "status" : "created" ,
1092+ "title" : "Process '3plus5' with {}" ,
1093+ "description" : "Process '3plus5' (namespace https://remote.test/3plus5.json) with {}" ,
10921094 }
10931095 }
10941096
@@ -1150,6 +1152,8 @@ def test_basic_parameterization(self, con, dummy_backend, parameter_defaults, ro
11501152 }
11511153 },
11521154 "status" : "created" ,
1155+ "title" : dirty_equals .IsStr (regex = "Process 'increment' with .*" ),
1156+ "description" : dirty_equals .IsStr (regex = "Process 'increment' .*" ),
11531157 }
11541158 }
11551159
@@ -1199,6 +1203,8 @@ def test_process_references_in_constructor(
11991203 "job_id" : "job-000" ,
12001204 "pg" : {"3plus51" : {** expected , "arguments" : {}, "result" : True }},
12011205 "status" : "created" ,
1206+ "title" : "Process '3plus5' with {}" ,
1207+ "description" : f"Process '3plus5' (namespace { namespace } ) with {{}}" ,
12021208 }
12031209 }
12041210
@@ -1251,6 +1257,8 @@ def test_with_job_manager_remote_basic(
12511257 }
12521258 },
12531259 "status" : "finished" ,
1260+ "title" : "Process 'increment' with {'data': 1, 'increment': 5}" ,
1261+ "description" : "Process 'increment' (namespace https://remote.test/increment.json) with {'data': 1, 'increment': 5}" ,
12541262 },
12551263 "job-001" : {
12561264 "job_id" : "job-001" ,
@@ -1263,6 +1271,8 @@ def test_with_job_manager_remote_basic(
12631271 }
12641272 },
12651273 "status" : "finished" ,
1274+ "title" : "Process 'increment' with {'data': 2, 'increment': 5}" ,
1275+ "description" : "Process 'increment' (namespace https://remote.test/increment.json) with {'data': 2, 'increment': 5}" ,
12661276 },
12671277 "job-002" : {
12681278 "job_id" : "job-002" ,
@@ -1275,6 +1285,8 @@ def test_with_job_manager_remote_basic(
12751285 }
12761286 },
12771287 "status" : "finished" ,
1288+ "title" : "Process 'increment' with {'data': 3, 'increment': 5}" ,
1289+ "description" : "Process 'increment' (namespace https://remote.test/increment.json) with {'data': 3, 'increment': 5}" ,
12781290 },
12791291 }
12801292
@@ -1353,6 +1365,8 @@ def test_with_job_manager_remote_parameter_handling(
13531365 }
13541366 },
13551367 "status" : "finished" ,
1368+ "title" : dirty_equals .IsStr (regex = "Process 'increment' with .*" ),
1369+ "description" : dirty_equals .IsStr (regex = "Process 'increment'.*" ),
13561370 },
13571371 "job-001" : {
13581372 "job_id" : "job-001" ,
@@ -1365,6 +1379,8 @@ def test_with_job_manager_remote_parameter_handling(
13651379 }
13661380 },
13671381 "status" : "finished" ,
1382+ "title" : dirty_equals .IsStr (regex = "Process 'increment' with .*" ),
1383+ "description" : dirty_equals .IsStr (regex = "Process 'increment'.*" ),
13681384 },
13691385 "job-002" : {
13701386 "job_id" : "job-002" ,
@@ -1377,6 +1393,8 @@ def test_with_job_manager_remote_parameter_handling(
13771393 }
13781394 },
13791395 "status" : "finished" ,
1396+ "title" : dirty_equals .IsStr (regex = "Process 'increment' with .*" ),
1397+ "description" : dirty_equals .IsStr (regex = "Process 'increment'.*" ),
13801398 },
13811399 }
13821400
@@ -1436,6 +1454,8 @@ def test_with_job_manager_remote_geometry(self, tmp_path, requests_mock, dummy_b
14361454 }
14371455 },
14381456 "status" : "finished" ,
1457+ "title" : "Process 'offset_polygon' with {'data': 123, 'polygons': {'type': 'Point', 'coordinates': (1..." ,
1458+ "description" : "Process 'offset_polygon' (namespace https://remote.test/offset_polygon.json) with {'data': 123, 'polygons': {'type': 'Point', 'coordinates': (1.0, 2.0)}, 'offset': 11}" ,
14391459 },
14401460 "job-001" : {
14411461 "job_id" : "job-001" ,
@@ -1452,6 +1472,8 @@ def test_with_job_manager_remote_geometry(self, tmp_path, requests_mock, dummy_b
14521472 }
14531473 },
14541474 "status" : "finished" ,
1475+ "title" : "Process 'offset_polygon' with {'data': 123, 'polygons': {'type': 'Point', 'coordinates': (3..." ,
1476+ "description" : "Process 'offset_polygon' (namespace https://remote.test/offset_polygon.json) with {'data': 123, 'polygons': {'type': 'Point', 'coordinates': (3.0, 4.0)}, 'offset': 22}" ,
14551477 },
14561478 }
14571479
@@ -1527,6 +1549,8 @@ def test_with_job_manager_remote_geometry_after_resume(
15271549 }
15281550 },
15291551 "status" : "finished" ,
1552+ "title" : dirty_equals .IsStr (regex = "Process 'offset_polygon' with.*" ),
1553+ "description" : dirty_equals .IsStr (regex = "Process 'offset_polygon' .*" ),
15301554 },
15311555 "job-001" : {
15321556 "job_id" : "job-001" ,
@@ -1543,6 +1567,8 @@ def test_with_job_manager_remote_geometry_after_resume(
15431567 }
15441568 },
15451569 "status" : "finished" ,
1570+ "title" : dirty_equals .IsStr (regex = "Process 'offset_polygon' with.*" ),
1571+ "description" : dirty_equals .IsStr (regex = "Process 'offset_polygon' .*" ),
15461572 },
15471573 }
15481574
@@ -1586,6 +1612,8 @@ def test_with_job_manager_udp_basic(
15861612 }
15871613 },
15881614 "status" : "finished" ,
1615+ "title" : "Process 'increment' with {'data': 3, 'increment': 5}" ,
1616+ "description" : "Process 'increment' (namespace None) with {'data': 3, 'increment': 5}" ,
15891617 },
15901618 "job-001" : {
15911619 "job_id" : "job-001" ,
@@ -1597,6 +1625,8 @@ def test_with_job_manager_udp_basic(
15971625 }
15981626 },
15991627 "status" : "finished" ,
1628+ "title" : "Process 'increment' with {'data': 5, 'increment': 5}" ,
1629+ "description" : "Process 'increment' (namespace None) with {'data': 5, 'increment': 5}" ,
16001630 },
16011631 }
16021632
@@ -1638,6 +1668,8 @@ def test_with_job_manager_parameter_column_map(
16381668 }
16391669 },
16401670 "status" : "finished" ,
1671+ "title" : "Process 'increment' with {'data': 3, 'increment': 100}" ,
1672+ "description" : "Process 'increment' (namespace https://remote.test/increment.json) with {'data': 3, 'increment': 100}" ,
16411673 },
16421674 "job-001" : {
16431675 "job_id" : "job-001" ,
@@ -1650,5 +1682,7 @@ def test_with_job_manager_parameter_column_map(
16501682 }
16511683 },
16521684 "status" : "finished" ,
1685+ "title" : "Process 'increment' with {'data': 5, 'increment': 200}" ,
1686+ "description" : "Process 'increment' (namespace https://remote.test/increment.json) with {'data': 5, 'increment': 200}" ,
16531687 },
16541688 }
0 commit comments