aboutsummaryrefslogtreecommitdiff
path: root/documentation/book
diff options
context:
space:
mode:
authorEduardo Julian2021-08-19 04:59:06 -0400
committerEduardo Julian2021-08-19 04:59:06 -0400
commitd772fe99d5d4990c6774481fb64d12280cdb6aae (patch)
tree209a2ce3b8e896be15db40bc58db830a5304b4f9 /documentation/book
parente00ba096c8837abe85d366e0c1293c09dbe84d81 (diff)
Enabled compile-time code evaluation (i.e. "eval" function).
Diffstat (limited to 'documentation/book')
-rw-r--r--documentation/book/the_lux_programming_language/chapter_15.md2
-rw-r--r--documentation/book/the_lux_programming_language/chapter_16.md172
2 files changed, 173 insertions, 1 deletions
diff --git a/documentation/book/the_lux_programming_language/chapter_15.md b/documentation/book/the_lux_programming_language/chapter_15.md
index d03014f42..c87494929 100644
--- a/documentation/book/the_lux_programming_language/chapter_15.md
+++ b/documentation/book/the_lux_programming_language/chapter_15.md
@@ -89,5 +89,5 @@ These data-structures are very easy to use and offer decent performance, so you'
The next chapter is going to be slightly different, in that we're going to be learning not how to write programs, but how to test them.
-See you in the next chapter!
+See you in [the next chapter](chapter_16.md)!
diff --git a/documentation/book/the_lux_programming_language/chapter_16.md b/documentation/book/the_lux_programming_language/chapter_16.md
new file mode 100644
index 000000000..929188f35
--- /dev/null
+++ b/documentation/book/the_lux_programming_language/chapter_16.md
@@ -0,0 +1,172 @@
+# Chapter 16: Testing
+
+_Where you will learn how to avoid annoying bug reports._
+
+---
+
+Automated testing is a fundamental aspect of modern software development.
+
+Long gone are the days of manual, ad-hoc testing.
+
+With modern testing tools and frameworks, it's somewhat easy to increase the quality of programs by implementing comprehensive test suites that can cover large percentages of a program's functionality and behavior.
+
+Lux doesn't stay behind and includes a testing module as part of its standard library.
+
+The `library/lux/test` module contains the machinery you need to write unit-testing suites for your programs.
+
+Not only that, but the _Aedifex_ build tool for Lux also includes a command for testing: `lux test`
+
+How do you set that up?
+Let's take a look at the `project.lux` file for the Lux standard library itself.
+
+```
+{#identity ["com.github.luxlang" "stdlib" "0.6.0"]
+
+#deploy_repositories {"snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"
+ "releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"}
+
+#repositories ["https://oss.sonatype.org/content/repositories/snapshots/"
+ "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]
+
+#compiler ["com.github.luxlang" "lux-jvm" "0.6.0" "jar"]
+#description "Standard library for the Lux programming language."
+#test "test/lux"}
+```
+
+The `#test` parameter is similar to the `#program` parameter in that it specifies the name of a Lux module.
+
+Here is a summary of the file:
+
+```
+(.module:
+ [library
+ ["/" lux #*
+ [program (#+ program:)]
+ ["_" test (#+ Test)]
+ [control
+ ["." io]]
+ ...
+ ]])
+
+(program: args
+ (io.io (_.run! (_.times 100 ..test))))
+
+```
+
+A test suit consists of a `Test` (or a composite of as many `Test`s as you want), which is then `run!`.
+The `times` combinator allows you to execute `Test`s several times.
+This can be very useful when using random data generation within your tests, as each run of the tests will lead to the generation of different sorts of data.
+This will help you cover many possible scenarios within the same test run, and perhaps uncover tricky corner cases you wouldn't have thought of.
+
+But where do those tests come from?
+Nothing is being defined here.
+
+Let's take a look at the tests defined in a simpler module.
+
+Well, the run macro, from lux/test pulls in all the tests from the imported modules to run them later once the program starts.
+
+To know how tests work, let's take a look at one of those modules.
+
+ From `test/lux/data/collection/stack`.
+
+```
+(.module:
+ [library
+ [lux #*
+ ["_" test (#+ Test)]
+ [abstract
+ [monad (#+ do)]
+ [\\specification
+ ["$." equivalence]
+ ["$." functor (#+ Injection)]]]
+ [control
+ ["." maybe]]
+ [data
+ ["." bit ("#\." equivalence)]]
+ [math
+ ["." random]
+ [number
+ ["n" nat]]]]]
+ [\\library
+ ["." /]])
+
+(def: (injection value)
+ (Injection /.Stack)
+ (/.top value /.empty))
+
+(def: .public test
+ Test
+ (<| (_.covering /._)
+ (_.for [/.Stack])
+ (do random.monad
+ [size (\ random.monad map (n.% 100) random.nat)
+ sample (random.stack size random.nat)
+ expected_top random.nat]
+ ($_ _.and
+ (_.for [/.equivalence]
+ ($equivalence.spec (/.equivalence n.equivalence) (random.stack size random.nat)))
+ (_.for [/.functor]
+ ($functor.spec ..injection /.equivalence /.functor))
+
+ (_.cover [/.size]
+ (n.= size (/.size sample)))
+ (_.cover [/.empty?]
+ (bit\= (n.= 0 (/.size sample))
+ (/.empty? sample)))
+ (_.cover [/.empty]
+ (/.empty? /.empty))
+ (_.cover [/.value]
+ (case (/.value sample)
+ #.None
+ (/.empty? sample)
+
+ (#.Some _)
+ (not (/.empty? sample))))
+ (_.cover [/.next]
+ (case (/.next sample)
+ #.None
+ (/.empty? sample)
+
+ (#.Some [top remaining])
+ (\ (/.equivalence n.equivalence) =
+ sample
+ (/.top top remaining))))
+ (_.cover [/.top]
+ (case (/.next (/.top expected_top sample))
+ (#.Some [actual_top actual_sample])
+ (and (same? expected_top actual_top)
+ (same? sample actual_sample))
+
+ #.None
+ false))
+ ))))
+
+```
+
+There's a lot going on here.
+
+First of all, by using the `covering` macro, you can tell the test suit to track the coverage that your test suite has of a given module.
+That way, if your tests miss some _exported_, the report you'll get after running the tests will tell you, so you can judiciously choose to either expand your coverage, or skip covering them.
+The `for` and `cover` macros then signal whenever one or more definitions are being covered by a given test.
+
+Lux also defines some _specifications_, which are basically parameterizable tests, which implement consistent testing for various interfaces in the standard library.
+That way, when testing an implementation of those interfaces, instead of having to copy-paste, or re-invent the testing every time, the specification is imported.
+This enables consistent testing of implementations.
+
+`and` allows you to _sequentially_ compose `Test`s into a larger `Test`.
+
+You can also see an example of how to use randomness to generate sample data for testing.
+
+---
+
+If you want to learn more about how to write tests, feel free to check out the test-suite for the Lux standard library.
+It's very comprehensive and filled with good examples.
+
+---
+
+Without tests, the reliability of programs becomes a matter of faith, not engineering.
+
+Automated tests can be integrated into processes of continuous delivery and integration to increase the confidence of individuals and teams that real value is being delivered, and that the customer won't be dissatisfied by buggy software.
+
+Now that you know how to test your programs, you know everything you need to know to be a Lux programmer.
+