Pino Toscano
2017-Jul-19 12:29 UTC
Re: [Libguestfs] [PATCH 06/27] daemon: Add unit tests of the ‘Utils’ module.
On Wednesday, 19 July 2017 14:21:51 CEST Richard W.M. Jones wrote:> On Wed, Jul 19, 2017 at 12:57:08PM +0200, Pino Toscano wrote: > > Would it be possible to use oUnit too? > > I'm not clear on what benefit oUnit gives us which is worth the extra > dependency it pulls in.I was referring to OUnit2, which we already have an optional dependency for almost all the OCaml tests. -- Pino Toscano
Richard W.M. Jones
2017-Jul-19 14:33 UTC
Re: [Libguestfs] [PATCH 06/27] daemon: Add unit tests of the ‘Utils’ module.
On Wed, Jul 19, 2017 at 02:29:33PM +0200, Pino Toscano wrote:> On Wednesday, 19 July 2017 14:21:51 CEST Richard W.M. Jones wrote: > > On Wed, Jul 19, 2017 at 12:57:08PM +0200, Pino Toscano wrote: > > > Would it be possible to use oUnit too? > > > > I'm not clear on what benefit oUnit gives us which is worth the extra > > dependency it pulls in. > > I was referring to OUnit2, which we already have an optional dependency > for almost all the OCaml tests.Sure, understood. But what would we lose by converting those to simple programs that just ran a series of "assert"s? If a single test fails we have to fix it anyway. If the lack of oUnit2 means that other users are skipping those tests, oUnit2 may be a negative. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com Fedora Windows cross-compiler. Compile Windows programs, test, and build Windows installers. Over 100 libraries supported. http://fedoraproject.org/wiki/MinGW
Pino Toscano
2017-Jul-20 07:48 UTC
Re: [Libguestfs] [PATCH 06/27] daemon: Add unit tests of the ‘Utils’ module.
On Wednesday, 19 July 2017 16:33:39 CEST Richard W.M. Jones wrote:> On Wed, Jul 19, 2017 at 02:29:33PM +0200, Pino Toscano wrote: > > On Wednesday, 19 July 2017 14:21:51 CEST Richard W.M. Jones wrote: > > > On Wed, Jul 19, 2017 at 12:57:08PM +0200, Pino Toscano wrote: > > > > Would it be possible to use oUnit too? > > > > > > I'm not clear on what benefit oUnit gives us which is worth the extra > > > dependency it pulls in. > > > > I was referring to OUnit2, which we already have an optional dependency > > for almost all the OCaml tests. > > Sure, understood. But what would we lose by converting those to > simple programs that just ran a series of "assert"s? If a single > test fails we have to fix it anyway.The assert means that you will just get the failure, and you will need to edit the test just to see what was the actual failure. Sure, it is doable, but it adds extra steps to debugging.> If the lack of oUnit2 means that other users are skipping > those tests, oUnit2 may be a negative.I'm not sure I follow this. We already implemented in the past tests using OUnit (then converted to OUnit2), which means we sort of agreed to use a (relatively simple) unit test framework. Most of the OCaml tests use it already, so the logic that follows here would be to keep using it. If the problem is "this test is already sent for review as series of assert", then I can volunteer to rewrite it to OUnit2. Otherwise, I'd like to know what are the reasons against using something that already discussed in the past, approved, and established. -- Pino Toscano
Maybe Matching Threads
- Re: [PATCH 06/27] daemon: Add unit tests of the ‘Utils’ module.
- Re: [PATCH 0/2] Add lightweight bindings for PCRE.
- Re: [PATCH 06/27] daemon: Add unit tests of the ‘Utils’ module.
- [PATCH 1/2] mllib: remove spurious check_SCRIPTS from Makefile.am
- Re: [PATCH 06/27] daemon: Add unit tests of the ‘Utils’ module.