unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* issues unit testing with srfi-64
@ 2018-12-29 23:50 Aleix Conchillo Flaqué
  2018-12-30  2:17 ` Christopher Lam
  0 siblings, 1 reply; 4+ messages in thread
From: Aleix Conchillo Flaqué @ 2018-12-29 23:50 UTC (permalink / raw)
  To: guile-user

Hi!

happy holidays and almost happy new year to everyone!

I've added unit tests to guile-json and I have found a couple of
issues. This is the branch:

https://github.com/aconchillo/guile-json/tree/switch-to-alist-and-vectors

First one (which might not be a real issue) is that (test-end) doesn't
exit with an exit status different than 0 if a test fails. And this
will cause automake to believe the tests passed when they actually did
not. I have solved this with the following which works for my use
case, but I'm not sure if that's the right way:
   ...
   (test-end "test-builder")

   (exit (if (eqv? 0 (test-runner-fail-count (test-runner-current))) 0 1))

(I could have returned the fail-count directly, but since there are
only 255 exit values I thought it could wrap around.)

The other issue is that the beginning of the log files are corrupted:

%%%% Starting test test-builder  (Writing full log to "test-builder.log")
# of expected passes      19
r.scm"
  source-line: 33
  source-form: (test-equal "1234" (scm->json-string 1234))

This should be something like:

Test begin:
  source-file: "tests/test-builder.scm"
  source-line: 33
  source-form: (test-equal "1234" (scm->json-string 1234))
Test end:
  result-kind: pass
  actual-value: "1234"
  expected-value: "1234"

I don't know how to fix this one yet.

Has anyone else found these issues before?

Thanks in advance!

Aleix



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: issues unit testing with srfi-64
  2018-12-29 23:50 issues unit testing with srfi-64 Aleix Conchillo Flaqué
@ 2018-12-30  2:17 ` Christopher Lam
  2018-12-30  6:03   ` Aleix Conchillo Flaqué
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher Lam @ 2018-12-30  2:17 UTC (permalink / raw)
  To: Aleix Conchillo Flaqué; +Cc: guile-user

Hi
In gnucash I've resorted to writing my own srfi-64 test-runner. See the
entry point at (run-test-proper) at
https://github.com/Gnucash/gnucash/blob/maint/gnucash/report/standard-reports/test/test-transaction.scm

Its definition is at
https://github.com/Gnucash/gnucash/blob/maint/libgnucash/engine/test/srfi64-extras.scm
and takes care of both returning #f if any test fails, and also doing an
IMHO better job at logging tests.

On Sun., 30 Dec. 2018, 08:05 Aleix Conchillo Flaqué <aconchillo@gmail.com
wrote:

> Hi!
>
> happy holidays and almost happy new year to everyone!
>
> I've added unit tests to guile-json and I have found a couple of
> issues. This is the branch:
>
> https://github.com/aconchillo/guile-json/tree/switch-to-alist-and-vectors
>
> First one (which might not be a real issue) is that (test-end) doesn't
> exit with an exit status different than 0 if a test fails. And this
> will cause automake to believe the tests passed when they actually did
> not. I have solved this with the following which works for my use
> case, but I'm not sure if that's the right way:
>    ...
>    (test-end "test-builder")
>
>    (exit (if (eqv? 0 (test-runner-fail-count (test-runner-current))) 0 1))
>
> (I could have returned the fail-count directly, but since there are
> only 255 exit values I thought it could wrap around.)
>
> The other issue is that the beginning of the log files are corrupted:
>
> %%%% Starting test test-builder  (Writing full log to "test-builder.log")
> # of expected passes      19
> r.scm"
>   source-line: 33
>   source-form: (test-equal "1234" (scm->json-string 1234))
>
> This should be something like:
>
> Test begin:
>   source-file: "tests/test-builder.scm"
>   source-line: 33
>   source-form: (test-equal "1234" (scm->json-string 1234))
> Test end:
>   result-kind: pass
>   actual-value: "1234"
>   expected-value: "1234"
>
> I don't know how to fix this one yet.
>
> Has anyone else found these issues before?
>
> Thanks in advance!
>
> Aleix
>
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: issues unit testing with srfi-64
  2018-12-30  2:17 ` Christopher Lam
@ 2018-12-30  6:03   ` Aleix Conchillo Flaqué
  2018-12-30 19:47     ` Taylan Kammer
  0 siblings, 1 reply; 4+ messages in thread
From: Aleix Conchillo Flaqué @ 2018-12-30  6:03 UTC (permalink / raw)
  To: Christopher Lam; +Cc: guile-user

That worked great and fixed both of my issues. Thanks!

On Sat, Dec 29, 2018 at 6:17 PM Christopher Lam
<christopher.lck@gmail.com> wrote:
>
> Hi
> In gnucash I've resorted to writing my own srfi-64 test-runner. See the entry point at (run-test-proper) at https://github.com/Gnucash/gnucash/blob/maint/gnucash/report/standard-reports/test/test-transaction.scm
>
> Its definition is at https://github.com/Gnucash/gnucash/blob/maint/libgnucash/engine/test/srfi64-extras.scm and takes care of both returning #f if any test fails, and also doing an IMHO better job at logging tests.
>
> On Sun., 30 Dec. 2018, 08:05 Aleix Conchillo Flaqué <aconchillo@gmail.com wrote:
>>
>> Hi!
>>
>> happy holidays and almost happy new year to everyone!
>>
>> I've added unit tests to guile-json and I have found a couple of
>> issues. This is the branch:
>>
>> https://github.com/aconchillo/guile-json/tree/switch-to-alist-and-vectors
>>
>> First one (which might not be a real issue) is that (test-end) doesn't
>> exit with an exit status different than 0 if a test fails. And this
>> will cause automake to believe the tests passed when they actually did
>> not. I have solved this with the following which works for my use
>> case, but I'm not sure if that's the right way:
>>    ...
>>    (test-end "test-builder")
>>
>>    (exit (if (eqv? 0 (test-runner-fail-count (test-runner-current))) 0 1))
>>
>> (I could have returned the fail-count directly, but since there are
>> only 255 exit values I thought it could wrap around.)
>>
>> The other issue is that the beginning of the log files are corrupted:
>>
>> %%%% Starting test test-builder  (Writing full log to "test-builder.log")
>> # of expected passes      19
>> r.scm"
>>   source-line: 33
>>   source-form: (test-equal "1234" (scm->json-string 1234))
>>
>> This should be something like:
>>
>> Test begin:
>>   source-file: "tests/test-builder.scm"
>>   source-line: 33
>>   source-form: (test-equal "1234" (scm->json-string 1234))
>> Test end:
>>   result-kind: pass
>>   actual-value: "1234"
>>   expected-value: "1234"
>>
>> I don't know how to fix this one yet.
>>
>> Has anyone else found these issues before?
>>
>> Thanks in advance!
>>
>> Aleix
>>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: issues unit testing with srfi-64
  2018-12-30  6:03   ` Aleix Conchillo Flaqué
@ 2018-12-30 19:47     ` Taylan Kammer
  0 siblings, 0 replies; 4+ messages in thread
From: Taylan Kammer @ 2018-12-30 19:47 UTC (permalink / raw)
  To: Aleix Conchillo Flaqué; +Cc: guile-user

FWIW, I have a SRFI-64 implementation whose code-base and default test
runner is somewhat cleaner than the upstream one:

    https://github.com/TaylanUB/scheme-srfis/tree/master/srfi/64

(All actual code is in the *.body.scm files.  Others are R7RS library
wrappers.)

It sounds like using a custom test runner was the right thing in your
case though, so the default test runner of the implementation is
probably unimportant.

- Taylan



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-12-30 19:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-29 23:50 issues unit testing with srfi-64 Aleix Conchillo Flaqué
2018-12-30  2:17 ` Christopher Lam
2018-12-30  6:03   ` Aleix Conchillo Flaqué
2018-12-30 19:47     ` Taylan Kammer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).