Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 06834f72628e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 141f63c29b26
Choose a head ref
  • 6 commits
  • 5 files changed
  • 2 contributors

Commits on Oct 29, 2018

  1. lib/trivial: Update function comments for doc generation

    Expands on some of the function comments and add some of the
    special syntaxes recognised by nixdoc.
    tazjin committed Oct 29, 2018
    Copy the full SHA
    09772db View commit details
  2. lib/strings: Update documentation comments for doc generation

    Updates documentation comments with extra information for nixdoc[1]
    compatibility.
    
    Some documentation strings have additionally been reworded for
    clarity.
    
    "Faux types" are added where applicable, but some functions do things
    that are not trivially representable in the type notation used so they
    were ignored for this purpose.
    
    [1]: https://github.com/tazjin/nixdoc
    tazjin committed Oct 29, 2018
    Copy the full SHA
    34cd613 View commit details
  3. lib/lists: Update documentation comments for doc generation

    Updates documentation comments with extra information for nixdoc[1]
    compatibility.
    
    [1]: https://github.com/tazjin/nixdoc
    tazjin committed Oct 29, 2018
    Copy the full SHA
    20d8273 View commit details
  4. lib/debug: Update documentation comments for docs generation

    Documents functions in `lib.debug` for docs generation with nixdoc.
    
    Note that type signatures and clearer descriptions are still missing
    on some of these functions, but this is good enough for a first run.
    tazjin committed Oct 29, 2018
    Copy the full SHA
    a53c60d View commit details
  5. lib/options: Update documentation comments for docs generation

    Documents functions in `lib.options` for docs generation with nixdoc.
    
    The formatting change in the `mkOption` arguments is due to the way
    `nixdoc` parses documentation comments on pattern arguments. It's not
    ideal, but it works.
    tazjin committed Oct 29, 2018
    Copy the full SHA
    acb1efb View commit details

Commits on Nov 10, 2018

  1. Merge pull request #49387 from tazjin/chore/backport-doc-comments

    Backport documentation comment changes to release-18.09
    samueldr authored Nov 10, 2018
    Copy the full SHA
    141f63c View commit details
Showing with 540 additions and 178 deletions.
  1. +75 −19 lib/debug.nix
  2. +136 −48 lib/lists.nix
  3. +89 −30 lib/options.nix
  4. +153 −51 lib/strings.nix
  5. +87 −30 lib/trivial.nix
94 changes: 75 additions & 19 deletions lib/debug.nix
Original file line number Diff line number Diff line change
@@ -23,27 +23,54 @@ rec {

# -- TRACING --

/* Trace msg, but only if pred is true.
/* Conditionally trace the supplied message, based on a predicate.
Type: traceIf :: bool -> string -> a -> a
Example:
traceIf true "hello" 3
trace: hello
=> 3
*/
traceIf = pred: msg: x: if pred then trace msg x else x;
traceIf =
# Predicate to check
pred:
# Message that should be traced
msg:
# Value to return
x: if pred then trace msg x else x;

/* Trace the supplied value after applying a function to it, and
return the original value.
/* Trace the value and also return it.
Type: traceValFn :: (a -> b) -> a -> a
Example:
traceValFn (v: "mystring ${v}") "foo"
trace: mystring foo
=> "foo"
*/
traceValFn = f: x: trace (f x) x;
traceValFn =
# Function to apply
f:
# Value to trace and return
x: trace (f x) x;

/* Trace the supplied value and return it.
Type: traceVal :: a -> a
Example:
traceVal 42
# trace: 42
=> 42
*/
traceVal = traceValFn id;

/* `builtins.trace`, but the value is `builtins.deepSeq`ed first.
Type: traceSeq :: a -> b -> b
Example:
trace { a.b.c = 3; } null
trace: { a = <CODE>; }
@@ -52,7 +79,11 @@ rec {
trace: { a = { b = { c = 3; }; }; }
=> null
*/
traceSeq = x: y: trace (builtins.deepSeq x x) y;
traceSeq =
# The value to trace
x:
# The value to return
y: trace (builtins.deepSeq x x) y;

/* Like `traceSeq`, but only evaluate down to depth n.
This is very useful because lots of `traceSeq` usages
@@ -76,27 +107,49 @@ rec {
in trace (generators.toPretty { allowPrettyValues = true; }
(modify depth snip x)) y;

/* A combination of `traceVal` and `traceSeq` */
traceValSeqFn = f: v: traceValFn f (builtins.deepSeq v v);
/* A combination of `traceVal` and `traceSeq` that applies a
provided function to the value to be traced after `deepSeq`ing
it.
*/
traceValSeqFn =
# Function to apply
f:
# Value to trace
v: traceValFn f (builtins.deepSeq v v);

/* A combination of `traceVal` and `traceSeq`. */
traceValSeq = traceValSeqFn id;

/* A combination of `traceVal` and `traceSeqN` that applies a
provided function to the value to be traced. */
traceValSeqNFn =
# Function to apply
f:
depth:
# Value to trace
v: traceSeqN depth (f v) v;

/* A combination of `traceVal` and `traceSeqN`. */
traceValSeqNFn = f: depth: v: traceSeqN depth (f v) v;
traceValSeqN = traceValSeqNFn id;


# -- TESTING --

/* Evaluate a set of tests. A test is an attribute set {expr,
expected}, denoting an expression and its expected result. The
result is a list of failed tests, each represented as {name,
expected, actual}, denoting the attribute name of the failing
test and its expected and actual results. Used for regression
testing of the functions in lib; see tests.nix for an example.
Only tests having names starting with "test" are run.
Add attr { tests = ["testName"]; } to run these test only
/* Evaluate a set of tests. A test is an attribute set `{expr,
expected}`, denoting an expression and its expected result. The
result is a list of failed tests, each represented as `{name,
expected, actual}`, denoting the attribute name of the failing
test and its expected and actual results.
Used for regression testing of the functions in lib; see
tests.nix for an example. Only tests having names starting with
"test" are run.
Add attr { tests = ["testName"]; } to run these tests only.
*/
runTests = tests: lib.concatLists (lib.attrValues (lib.mapAttrs (name: test:
runTests =
# Tests to run
tests: lib.concatLists (lib.attrValues (lib.mapAttrs (name: test:
let testsToRun = if tests ? tests then tests.tests else [];
in if (substring 0 4 name == "test" || elem name testsToRun)
&& ((testsToRun == []) || elem name tests.tests)
@@ -105,8 +158,11 @@ rec {
then [ { inherit name; expected = test.expected; result = test.expr; } ]
else [] ) tests));

# create a test assuming that list elements are true
# usage: { testX = allTrue [ true ]; }
/* Create a test assuming that list elements are `true`.
Example:
{ testX = allTrue [ true ]; }
*/
testAllTrue = expr: { inherit expr; expected = map (x: true) expr; };


Loading