Skip to content

v0.2.49..v0.2.50 changeset InfoCmdTest.sh

Garret Voltz edited this page Nov 6, 2019 · 1 revision
diff --git a/test-files/cmd/slow/InfoCmdTest.sh b/test-files/cmd/slow/InfoCmdTest.sh
index 1bfe0de..e46321a 100755
--- a/test-files/cmd/slow/InfoCmdTest.sh
+++ b/test-files/cmd/slow/InfoCmdTest.sh
@@ -41,6 +41,10 @@ echo "Listing an input format..."
 echo ""
 hoot info --formats --input | grep ".osm.bz2"
 echo ""
+echo "Listing an input format supporting streamable reads..."
+echo ""
+hoot info --formats --input-streamable | grep ".osm"
+echo ""
 echo "Listing an input format supporting bounded reads..."
 echo ""
 hoot info --formats --input-bounded | grep "hootapidb://"
@@ -49,6 +53,33 @@ echo "Listing an output format..."
 echo ""
 hoot info --formats --output | grep ".shp"
 echo ""
+echo "Listing an output format supporting streamable reads..."
+echo ""
+hoot info --formats --output-streamable | grep ".osm"
+echo ""
+echo "Listing a format used with OGR..."
+echo ""
+hoot info --formats --ogr | grep ".shp"
+echo ""
+echo "Listing an input format read by OGR..."
+echo ""
+hoot info --formats --input --ogr | grep ".shp"
+echo ""
+echo "Listing an output format written by OGR..."
+echo ""
+hoot info --formats --output --ogr | grep ".shp"
+echo ""
+echo "Listing a streamable input format read by OGR..."
+echo ""
+hoot info --formats --input-streamable --ogr | grep ".shp"
+echo ""
+echo "Listing a streamable output format written by OGR..."
+echo ""
+hoot info --formats --input-streamable --ogr | grep ".sql"
+echo ""
+echo "Listing input formats supported bounded reads that are read by OGR..."
+echo ""
+hoot info --formats --input-bounded --ogr # none currently exist
 
 # LANGUAGES
 echo "Listing detectable languages..."
Clone this wiki locally