From: Rico Tzschichholz Date: Thu, 28 Nov 2019 09:05:30 +0000 (+0100) Subject: tests: Add "throw in loops" tests to increase coverage X-Git-Tag: 0.49.1~221 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69bb186dc5b1962be317bf5ee88077c7fac35214;p=thirdparty%2Fvala.git tests: Add "throw in loops" tests to increase coverage --- diff --git a/tests/Makefile.am b/tests/Makefile.am index c19df41e4..0eaa2376a 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -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 index 000000000..552865224 --- /dev/null +++ b/tests/errors/loops.vala @@ -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 (); +}