aboutsummaryrefslogtreecommitdiff
path: root/tests (unfollow)
Commit message (Collapse)Author
2023-10-02Remove accidentially duplicated tests from merge.Hugo Hörnquist
2023-09-13test fixes.Hugo Hörnquist
2023-09-11Fix bug causing for's continue to not work.Hugo Hörnquist
2023-09-11Introduce stream-split-by.Hugo Hörnquist
This procedure isn't currently used, but as noted is really useful for grouping a character stream into a word stream, which is a later commit will use for it for justifying posibly infinite streams of text.
2023-09-11Change how entry point is handled.Hugo Hörnquist
Replaces the old main sh bootstrap entry point to one written in C. The reasons are in the C file, but in short, Guile's command line is less than ideal.
2023-09-11Extend `for'-macro to allow improper list elements.Hugo Hörnquist
2023-09-11Change `kvlist->assq` and `group-by` to return pairs.Hugo Hörnquist
Each value in the return of group-by must have exactly two values, so cons pairs (instead of lists) is much better.
2023-09-11Fix seeding of UUIDs.Hugo Hörnquist
2023-09-11Require component for path append.Hugo Hörnquist
Changed the signature of `path-append` to require at least one argument. The alternative would have been that no components expands into '.'.
2023-09-11Split test/util.scm into groups.Hugo Hörnquist
2023-09-11Add `break` and `continue` support in `for`.Hugo Hörnquist
2023-09-11Add documentation and tests for xdg basedir.Hugo Hörnquist
2023-09-11Enable let-env to unset variables.Hugo Hörnquist
2023-09-05Major work on, something.Hugo Hörnquist
2023-05-03Move lens test.Hugo Hörnquist
2023-04-21Add tests for href stuff.datarewriteHugo Hörnquist
2023-04-21Remove old unit-test style seraliazation tests.Hugo Hörnquist
2023-04-21Add tests for serialization foramts.Hugo Hörnquist
These are outside the regular unit testing, since they are more of end to end tests. Parts of this functionality is however still in the unit tests.
2023-04-21Change xcal to work on namespaced sxml instead.Hugo Hörnquist
2023-04-18Move code for finding an available socket.Hugo Hörnquist
2023-04-18Move test runner to library.Hugo Hörnquist
This will both allow us multiple test entry points, since some integration tests doesn't fit to well in our current unit test setup. It will hopefully also allow me to reuse the code in other projects.
2023-04-18Update test cases from RFC 4791 to be parsable by Guile.Hugo Hörnquist
2023-04-18Flush ports between tests.Hugo Hörnquist
In some cases diffs would appear in the wrong places. This also ensures a cleaner slate for each test.
2023-04-18Move test runner diff to variable.Hugo Hörnquist
A first step towards making diff configurable. As can already be seen with the (out commented) alternative (git diff ...)
2023-04-18Import test cases from RFC 4791 (CalDAV).Hugo Hörnquist
2023-04-14Fix propfind.Hugo Hörnquist
* Allows propfind elements to appear in any order * properly ignored unknown elements * works directly with namespaced sxml
2023-04-12Fix copy for file resources.Hugo Hörnquist
2023-04-12UNFINISHED webdav server.Hugo Hörnquist
2023-04-12Add with-locale1.Hugo Hörnquist
2023-04-10UNFINISHED work on formats.Hugo Hörnquist
2023-04-10Fix command line handling in test runner.Hugo Hörnquist
2023-04-10Add (sxml namespaced).Hugo Hörnquist
2023-04-10Add init+last.Hugo Hörnquist
2023-04-10Add number of missing (hnh util) tests.Hugo Hörnquist
2023-04-10Reorder (util .*) tests.Hugo Hörnquist
Added test groups for each exported procedure (meaning that the TODOs are now updated (at least for (hnh util))). Split path tests out into own file. Also rename those files so they map 1-1 onto their core module names.
2023-04-10Borrow state-monad from guile-dns.Hugo Hörnquist
Also imports the tests from guile-dns. Minor rewrites have been done, to match a differing project structure.
2023-04-10Fix guile3 deprecation notices.Hugo Hörnquist
2023-02-23Change child/parent interface for vcomponent.Hugo Hörnquist
2023-02-23Start using (vcomponent create) in tests.Hugo Hörnquist
This allows us to focus on what we are testing, instead of on the parser in question. It also makes the code parser-agnostic.
2023-02-23Change group-by to return direct pairs.Hugo Hörnquist
Each value in the return of group-by must have exactly two values, so cons pairs (instead of lists) is much better.
2023-02-23Extend `for'-macro to allow improper list elements.Hugo Hörnquist
2023-02-23Add (vcomponent create).Hugo Hörnquist
2023-02-21Change kvlist->assq to return pairs.Hugo Hörnquist
2023-02-21Fix seeding of UUIDs.Hugo Hörnquist
2023-02-11Add test for path-append without components.Hugo Hörnquist
2022-10-16Change gettext '_' to 'G_'.Hugo Hörnquist
Guile 3 reserves _ for other stuff.
2022-09-23Move all generally usable scripts to module dir.Hugo Hörnquist
2022-09-18Add procedure relative-to.Hugo Hörnquist
2022-09-18Rewrote make-routes to use define-syntax.Hugo Hörnquist
This is the first step into adding extra functionallity, since I now want have to worry about how namespace pollution works.
2022-07-21Add diff view to test runner.Hugo Hörnquist