]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
tests: Add "throw in loops" tests to increase coverage
authorRico Tzschichholz <ricotz@ubuntu.com>
Thu, 28 Nov 2019 09:05:30 +0000 (10:05 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Wed, 25 Mar 2020 11:28:50 +0000 (12:28 +0100)
tests/Makefile.am
tests/errors/loops.vala [new file with mode: 0644]

index c19df41e4a4a3096c88f0f0127123432295ac544..0eaa2376a8317a164831594313ce769ac2d676d0 100644 (file)
@@ -490,6 +490,7 @@ TESTS = \
        errors/errordomain-instance-method.test \
        errors/errordomain-static-method.vala \
        errors/invalid-type-check.test \
+       errors/loops.vala \
        errors/method-throws.vala \
        errors/bug567181.vala \
        errors/bug579101.vala \
diff --git a/tests/errors/loops.vala b/tests/errors/loops.vala
new file mode 100644 (file)
index 0000000..5528652
--- /dev/null
@@ -0,0 +1,119 @@
+errordomain FooError {
+       FAIL
+}
+
+string[] get_array () throws Error {
+       throw new FooError.FAIL ("foo");
+}
+
+bool get_bool () throws Error {
+       throw new FooError.FAIL ("foo");
+}
+
+int get_int () throws Error {
+       throw new FooError.FAIL ("foo");
+}
+
+void error_in_for () {
+       try {
+               for (var i = get_int (); i < 2; i++) {
+                       assert_not_reached ();
+               }
+               assert_not_reached ();
+       } catch {
+       }
+
+       try {
+               for (var i = 0; get_bool (); i++) {
+                       assert_not_reached ();
+               }
+               assert_not_reached ();
+       } catch {
+       }
+
+       try {
+               bool reached = false;
+               for (var i = 0; i < 2; i += get_int ()) {
+                       if (reached) {
+                               assert_not_reached ();
+                       } else {
+                               reached = true;
+                       }
+               }
+               assert_not_reached ();
+       } catch {
+       }
+
+       try {
+               for (var i = 0; i < 2; i++) {
+                       throw new FooError.FAIL ("foo");
+                       assert_not_reached ();
+               }
+               assert_not_reached ();
+       } catch {
+       }
+}
+
+void error_in_foreach () {
+       try {
+               foreach (var s in get_array ()) {
+                       assert_not_reached ();
+               }
+               assert_not_reached ();
+       } catch {
+       }
+
+       try {
+               string[] array = { "bar" };
+               foreach (var s in array) {
+                       throw new FooError.FAIL ("foo");
+                       assert_not_reached ();
+               }
+               assert_not_reached ();
+       } catch {
+       }
+}
+
+void error_in_do () {
+       try {
+               do {
+               } while (get_bool ());
+               assert_not_reached ();
+       } catch {
+       }
+
+       try {
+               do {
+                       throw new FooError.FAIL ("foo");
+                       assert_not_reached ();
+               } while (true);
+               assert_not_reached ();
+       } catch {
+       }
+}
+
+void error_in_while () {
+       try {
+               while (get_bool ()) {
+                       assert_not_reached ();
+               }
+               assert_not_reached ();
+       } catch {
+       }
+
+       try {
+               while (true) {
+                       throw new FooError.FAIL ("foo");
+                       assert_not_reached ();
+               }
+               assert_not_reached ();
+       } catch {
+       }
+}
+
+void main () {
+       error_in_for ();
+       error_in_foreach ();
+       error_in_do ();
+       error_in_while ();
+}