Symbolics Graphics Reel 1989
Posted on 25th of April 2022 | 26 wordsThis is a collection of promotional and commercial work done by the Symbolics Graphics Division (and customers) showing off the capabilities of the Symbolics LISP Machine.
This is a collection of promotional and commercial work done by the Symbolics Graphics Division (and customers) showing off the capabilities of the Symbolics LISP Machine.
I’ve always found tremendous value in testing my software. Especially what might be closest to home for developers - or at least should be - are unit tests. While unit tests are not necessarily the best way of making safe working code (this often requires a little bit more exhaustive testing) but at least they’re very beneficial for your future self and/or co-workers who might be working with your code since with them you can quickly see any new errors that might’ve come from regression.
That being said, often, writing unit tests can be quite cumbersome. I would love to see some mature tooling for randomized testing like QuickCheck in Haskell (and later some other languages too) that would “just work”, but often something like that just isn’t possible, especially when the project reaches a certain degree of complexity. Tests and test suites should be designed on their own as well as your code itself. Unfortunately, people tend to forget this. In these kinds of cases, quite simple table-driven test design can come to help!
I first stumbled upon table-driven test design when I was working with Go, since in there, this seems to be a quite popular way of doing unit tests, and at least, in my opinion, it works quite nicely!
Often while writing unit tests, you would want to write various failing and passing test cases, which often leads to quite a bit of duplication. For example:
TEST(TwoSumTests, PassingTest) { std::vector<int> nums{2, 7, 11, 15}; auto got = twoSum(nums, 9); std::vector<int> expected{0, 1}; EXPECT_EQ(got, expected); } TEST(TwoSumTests, FailingTest) { std::vector<int> nums{2, 7, 11, 15}; auto got = twoSum(nums, 9); std::vector<int> expected{0, 123}; EXPECT_NEQ(got, expected); }
So even with this elementary example, we can see that most of the code in the test case is duplicated and/or boilerplate. So we can do better. For example, with quite a simple table for tests, we can loop through multiple tests without duplication and easily add new tests.
Regarding testing functions, we often care about what is going in and what should go out. Everything else in unit tests is often boilerplate. So where table-driven design help in setting up these input and expected outputs.
typedef struct { std::vector<int> nums; int target; std::vector<int> expected; } twoSumTestCase; TEST(TwoSumTests, BasicAssertions) { twoSumTestCase tests[] = { { std::vector<int>{2, 7, 11, 15}, 9, std::vector<int>{0, 1}, }, { std::vector<int>{3, 2, 4}, 6, std::vector<int>{1, 2}, }, { std::vector<int>{3, 3}, 6, std::vector<int>{0, 1}, }, }; for (auto t : tests) { auto got = twoSum(t.nums, t.target); EXPECT_EQ(got, t.expected); } }
So when we run this we can easily run all the tests at once:
[==========] Running 1 test from 1 test suite. [----------] Global test environment set-up. [----------] 1 test from TwoSumTests [ RUN ] TwoSumTests.BasicAssertions [ OK ] TwoSumTests.BasicAssertions (0 ms) [----------] 1 test from TwoSumTests (0 ms total) [----------] Global test environment tear-down [==========] 1 test from 1 test suite ran. (0 ms total) [ PASSED ] 1 test.
To demonstrate failing test case, let’s add new test there:
{ std::vector<int>{3, 3}, 6, std::vector<int>{0, 2}, },
We get the following output:
Expected equality of these values: got Which is: { 0, 1 } t.expected Which is: { 0, 2 } [ FAILED ] TwoSumTests.BasicAssertions (0 ms) [----------] 1 test from TwoSumTests (0 ms total) [----------] Global test environment tear-down [==========] 1 test from 1 test suite ran. (0 ms total) [ PASSED ] 0 tests. [ FAILED ] 1 test, listed below: [ FAILED ] TwoSumTests.BasicAssertions 1 FAILED TEST
Of course, with that information, test logs can be pretty misleading. Thankfully, we can just change the table to our liking. For example, we could add names to the tests:
typedef struct { std::string name; std::vector<int> nums; int target; std::vector<int> expected; } twoSumTestCases;
That we could then use on diagnostic messages in GTest’s macros:
EXPECT_TRUE(false) << "diagnostic message"; // format to your liking
With this kind of formatting, we easily extend these test cases with just playing around a little bit with your test struct, so it could involve enumeration, subtests and much more. Which could help you making your tests/code easier to fix, but also easier for adding new useful and good tests.
So I wanted to add a “Now playing” footer to my posts so I can easily
share the music I’m listening to. Maybe some people can find something
new and exciting with that, so I implemented a very quick and poor
man’s implementation for it! I only play with YouTube’s search_query
URL parameter and pass in the song to that from the Hugo post’s front
matter. I pass in the current song as a slice in the post’s front
matter similar to this:
--- nowPlaying: ["DAF", "Liebe auf den Erste Blick"] ---
Then I just parse that in the template:
{{ if .Params.nowPlaying }} {{ $artist := index .Params.nowPlaying 0 }} {{ $song := index .Params.nowPlaying 1 }} {{ $query := querify "search_query" ( printf "%s %s" $artist $song ) "search_type" "videos" }} <a href="https://www.youtube.com/results?{{ $query | safeURL }}" target="_blank"> {{ $artist }} - {{ $song }} </a> {{ end }}
Stumbled upon this weird experimental avant-garde jazz black metal type of band a while ago and have been loving them ever since!
So I found myself in Berlin after living many good years in Helsinki. Moving here has been a plan of mine for quite some time, and initially, it was a big reason why I joined my current employer. I had a plan on moving here a lot earlier, but due to all this COVID nonsense around the world, these plans were a little bit postponed. But hey, here we are finally in lovely Kreuzberg.
Time will tell how long I will enjoy my stay here, but I sold my earthly belongings before moving here, so the move was pretty painless. Also, if I don’t gather too much more material things around my life, moving somewhere else would probably be as easy!
Also, this post marks the start of my (hopefully) more frequent posting in a form of these smaller rambles. This is mainly due to the reason I try to stay “off-the-grid” from all these social platforms, and my friends and the family wanted to hear more updates from my side, so I might as well do it here!
Looking forward to my future here in Berlin!