tests: Added test for basename and related methods
authorLucas Bajolet <r4pass@hotmail.com>
Fri, 25 Sep 2015 20:02:04 +0000 (16:02 -0400)
committerLucas Bajolet <r4pass@hotmail.com>
Mon, 28 Sep 2015 14:00:26 +0000 (10:00 -0400)
Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

tests/sav/test_basename_perf.res [new file with mode: 0644]
tests/sav/test_basename_perf_args1.res [new file with mode: 0644]
tests/test_basename_perf.args [new file with mode: 0644]
tests/test_basename_perf.nit [new file with mode: 0644]

diff --git a/tests/sav/test_basename_perf.res b/tests/sav/test_basename_perf.res
new file mode 100644 (file)
index 0000000..ba11526
--- /dev/null
@@ -0,0 +1 @@
+Usage: ./test paths
diff --git a/tests/sav/test_basename_perf_args1.res b/tests/sav/test_basename_perf_args1.res
new file mode 100644 (file)
index 0000000..25574f7
--- /dev/null
@@ -0,0 +1,13 @@
+ population: 3
+ minimum value: 2
+ maximum value: 11
+ total value: 16
+ average value: 5.33
+ distribution:
+  <=2: sub-population=1 (33.33%); cumulated value=2 (12.50%)
+  <=4: sub-population=1 (33.33%); cumulated value=3 (18.75%)
+  <=16: sub-population=1 (33.33%); cumulated value=11 (68.75%)
+ list:
+  nit: 11 (68.75%)
+  : 3 (18.75%)
+  ini: 2 (12.50%)
diff --git a/tests/test_basename_perf.args b/tests/test_basename_perf.args
new file mode 100644 (file)
index 0000000..dfdb261
--- /dev/null
@@ -0,0 +1 @@
+project1
diff --git a/tests/test_basename_perf.nit b/tests/test_basename_perf.nit
new file mode 100644 (file)
index 0000000..6d41cb3
--- /dev/null
@@ -0,0 +1,35 @@
+# This file is part of NIT ( http://www.nitlanguage.org ).
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import counter
+
+var ext_counter = new Counter[String]
+var todo = new Array[String]
+if args.is_empty then
+       print "Usage: ./test paths"
+       exit -1
+else
+       todo.add_all args
+end
+while todo.not_empty do
+       var file = todo.pop
+       var ext = file.basename.file_extension or else ""
+       ext_counter.inc ext
+       var entries = file.files
+       for entry in entries do
+               todo.add file / entry
+       end
+end
+ext_counter.print_summary
+ext_counter.print_elements(10)