19
19
20
20
21
21
def get_info_alg ():
22
- reg = gdal .GetGlobalAlgorithmRegistry ()
23
- raster = reg .InstantiateAlg ("raster" )
24
- return raster .InstantiateSubAlgorithm ("info" )
22
+ return gdal .GetGlobalAlgorithmRegistry ()["raster" ]["info" ]
25
23
26
24
27
25
def test_gdalalg_raster_info_stdout ():
@@ -41,7 +39,7 @@ def test_gdalalg_raster_info_stdout():
41
39
def test_gdalalg_raster_info ():
42
40
info = get_info_alg ()
43
41
assert info .ParseRunAndFinalize (["--format=text" , "data/utmsmall.tif" ])
44
- output_string = info . GetArg ( "output-string" ). Get ()
42
+ output_string = info [ "output-string" ]
45
43
assert output_string .startswith ("Driver: GTiff/GeoTIFF" )
46
44
47
45
@@ -50,45 +48,45 @@ def test_gdalalg_raster_info_mm_checksum():
50
48
assert info .ParseRunAndFinalize (
51
49
["--format=text" , "--mm" , "--checksum" , "data/utmsmall.tif" ]
52
50
)
53
- output_string = info . GetArg ( "output-string" ). Get ()
51
+ output_string = info [ "output-string" ]
54
52
assert " Computed Min/Max=0.000,255.000" in output_string
55
53
assert "Checksum=" in output_string
56
54
57
55
58
56
def test_gdalalg_raster_info_stats ():
59
57
info = get_info_alg ()
60
58
ds = gdal .Translate ("" , "../gcore/data/byte.tif" , format = "MEM" )
61
- info . GetArg ( "input" ). SetDataset ( ds )
59
+ info [ "input" ] = ds
62
60
assert info .ParseRunAndFinalize (["--stats" ])
63
- output_string = info . GetArg ( "output-string" ). Get ()
61
+ output_string = info [ "output-string" ]
64
62
j = json .loads (output_string )
65
63
assert "stdDev" in j ["bands" ][0 ]
66
64
67
65
68
66
def test_gdalalg_raster_info_approx_stats ():
69
67
info = get_info_alg ()
70
68
ds = gdal .Translate ("" , "../gcore/data/byte.tif" , format = "MEM" )
71
- info . GetArg ( "input" ). SetDataset ( ds )
69
+ info [ "input" ] = ds
72
70
assert info .ParseRunAndFinalize (["--approx-stats" ])
73
- output_string = info . GetArg ( "output-string" ). Get ()
71
+ output_string = info [ "output-string" ]
74
72
j = json .loads (output_string )
75
73
assert "stdDev" in j ["bands" ][0 ]
76
74
77
75
78
76
def test_gdalalg_raster_info_hist ():
79
77
info = get_info_alg ()
80
78
ds = gdal .Translate ("" , "../gcore/data/byte.tif" , format = "MEM" )
81
- info . GetArg ( "input" ). SetDataset ( ds )
79
+ info [ "input" ] = ds
82
80
assert info .ParseRunAndFinalize (["--hist" ])
83
- output_string = info . GetArg ( "output-string" ). Get ()
81
+ output_string = info [ "output-string" ]
84
82
j = json .loads (output_string )
85
83
assert "histogram" in j ["bands" ][0 ]
86
84
87
85
88
86
def test_gdalalg_raster_info_no_options ():
89
87
info = get_info_alg ()
90
88
ds = gdal .Translate ("" , "../gcore/data/byte.tif" , format = "MEM" )
91
- info . GetArg ( "input" ). SetDataset ( ds )
89
+ info [ "input" ] = ds
92
90
assert info .ParseRunAndFinalize (
93
91
["--no-gcp" , "--no-md" , "--no-ct" , "--no-fl" , "--no-nodata" , "--no-mask" ]
94
92
)
@@ -98,9 +96,9 @@ def test_gdalalg_raster_info_list_mdd():
98
96
info = get_info_alg ()
99
97
ds = gdal .Translate ("" , "../gcore/data/byte.tif" , format = "MEM" )
100
98
ds .SetMetadataItem ("foo" , "bar" , "MY_DOMAIN" )
101
- info . GetArg ( "input" ). SetDataset ( ds )
99
+ info [ "input" ] = ds
102
100
assert info .ParseRunAndFinalize (["--list-mdd" ])
103
- output_string = info . GetArg ( "output-string" ). Get ()
101
+ output_string = info [ "output-string" ]
104
102
j = json .loads (output_string )
105
103
assert "MY_DOMAIN" in j ["metadata" ]["metadataDomains" ]
106
104
@@ -109,9 +107,9 @@ def test_gdalalg_raster_info_mdd_all():
109
107
info = get_info_alg ()
110
108
ds = gdal .Translate ("" , "../gcore/data/byte.tif" , format = "MEM" )
111
109
ds .SetMetadataItem ("foo" , "bar" , "MY_DOMAIN" )
112
- info . GetArg ( "input" ). SetDataset ( ds )
110
+ info [ "input" ] = ds
113
111
assert info .ParseRunAndFinalize (["--mdd=all" ])
114
- output_string = info . GetArg ( "output-string" ). Get ()
112
+ output_string = info [ "output-string" ]
115
113
j = json .loads (output_string )
116
114
assert j ["metadata" ] == {
117
115
"" : {"AREA_OR_POINT" : "Area" },
@@ -128,7 +126,7 @@ def test_gdalalg_raster_info_list_subdataset():
128
126
assert info .ParseRunAndFinalize (
129
127
["--input=../gcore/data/tiff_with_subifds.tif" , "--subdataset=2" ]
130
128
)
131
- output_string = info . GetArg ( "output-string" ). Get ()
129
+ output_string = info [ "output-string" ]
132
130
j = json .loads (output_string )
133
131
assert j ["description" ] == "GTIFF_DIR:2:../gcore/data/tiff_with_subifds.tif"
134
132
@@ -149,7 +147,7 @@ def test_gdalalg_raster_info_list_subdataset_error_cannot_open_subdataset():
149
147
ds = gdal .GetDriverByName ("MEM" ).Create ("" , 1 , 1 )
150
148
ds .SetMetadataItem ("SUBDATASET_1_DESC" , "desc" , "SUBDATASETS" )
151
149
ds .SetMetadataItem ("SUBDATASET_1_NAME" , "i_do_not_exist" , "SUBDATASETS" )
152
- info . GetArg ( "input" ). SetDataset ( ds )
150
+ info [ "input" ] = ds
153
151
with pytest .raises (
154
152
Exception ,
155
153
match = "i_do_not_exist" ,
0 commit comments