aboutsummaryrefslogtreecommitdiff
path: root/tests (unfollow)
Commit message (Collapse)Author
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
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
2022-07-07Tests allows multiple --only and --skip.Hugo Hörnquist
2022-07-07Better expected/actual printing in tests.Hugo Hörnquist
2022-07-07Various test cleanups.Hugo Hörnquist
2022-07-07Clean up crypto test.Hugo Hörnquist
2022-07-07Better messages for test-assert failures.Hugo Hörnquist
2022-07-07Automatic test name now narrower.Hugo Hörnquist
Truncated-width defaults to 79 chars, which is to wide with our padding and tree structure to the left.
2022-07-07Change run-tests shebang.Hugo Hörnquist
Now works no matter where bash is.
2022-07-07Add time[+-] overflow tests.Hugo Hörnquist
2022-07-07Group base64 tests.Hugo Hörnquist
2022-07-07Tests '--skip'-flag now uses test names.Hugo Hörnquist
This allows us both to (as before) skip complete files, as every file is run with its own name as a test group, but also individual tests and test group inside files. See GitHub issue #57
2022-06-23Replace datetime tests.Hugo Hörnquist
2022-06-23Update test-runner.Hugo Hörnquist
2022-06-23Remove (add|remove)-day, and month[+-].Hugo Hörnquist
Procedures where overly specific, and doing it manually was almost no more work.
2022-06-23Reformat test/datetime.scmHugo Hörnquist
2022-06-23Normalize base64 errors.Hugo Hörnquist
2022-06-23Clean up btn.Hugo Hörnquist
2022-06-23Remove ->str and ->quoted-string.Hugo Hörnquist
->str as an alias of ->string is removed. ->string is however left. ->quoted-string was always weird, and was only used once.