Add a way to access the current test var in :each fixtures for clojure.test
Description
Environment
Attachments
- 22 Nov 2016, 05:30 PM
- 26 Oct 2011, 12:26 AM
- 22 Oct 2011, 04:34 AM
Activity
Joe Littlejohn March 28, 2017 at 9:26 AM
Thanks for taking the time to think about that todo list, Alex. Much appreciated. I'll investigate these things.
Alex Miller March 23, 2017 at 8:56 PM
Can you check that changing the function ordering here hasn't affected the stack trace inspection in do-report? Basically it would be helpful to know in all the various cases (neither each nor once, each but not once, once but not each, and both) that error reporting is unaffected for all those cases. Also, tools like Leiningen monkeypatch parts of this as well. I think all of that's fine, but I'm probably not going to get around to checking all that soon.
Joe Littlejohn March 23, 2017 at 5:42 PM
Any chance this one could be considered for inclusion now? The file clj840-20161122.diff is still valid and can be applied to the current HEAD of master.
Joe Littlejohn December 2, 2016 at 3:08 PM
The proposed patch (clj840-20161122.diff) allows 'each' fixtures to access the var associated with the currently executing test by using (first
testing-vars)
. As a result of this change, 'each' fixtures are able to access the metadata associated with the current test var, including the name.
The patch achieves the above by changing the order in which functions are wrapped when a test and its associated 'each' fixtures are run. Before this patch, 'each' fixtures were combined into a single higher-order function, which was then given a thunk containing an invocation of the test-var
function to execute as its body. After this patch, the test-var
function is now responsible for joining and executing 'each' fixtures but, importantly, it does so within the scope of the binding expression that adds the current test var to testing-vars. test-var
now invokes the joined fixtures function, rather than the joined fixtures function being given a thunk that invokes test-var
.
Hopefully that's clear, ish
Alex Miller November 29, 2016 at 2:56 PM
If you could update the ticket to better describe the approach of the patch that would be helpful.
Details
Assignee
UnassignedUnassignedReporter
Hugo DuncanHugo DuncanLabels
Approval
TriagedPatch
CodePriority
Major
Details
Details
Assignee
Reporter
Labels
Approval
Patch
Priority

When looking at (log) output from tests written with clojure.test, I would like to be able to identify the output associated with each test. A mechanism to expose the current test var within an :each fixture would enable this.
One mechanism might be to bind a test-var var with the current test var before calling the each-fixture-fn in clojure.test/test-all-vars.
Proposed: The proposed patch (clj840-20161122.diff) allows 'each' fixtures to access the var associated with the currently executing test by using
(first
testing-vars)
. As a result of this change, 'each' fixtures are able to access the metadata associated with the current test var, including the name.The patch achieves the above by changing the order in which functions are wrapped when a test and its associated 'each' fixtures are run. Before this patch, 'each' fixtures were combined into a single higher-order function, which was then given a thunk containing an invocation of the
test-var
function to execute as its body. After this patch, thetest-var
function is now responsible for joining and executing 'each' fixtures but, importantly, it does so within the scope of the binding expression that adds the current test var to testing-vars.test-var
now invokes the joined fixtures function, rather than the joined fixtures function being given a thunk that invokestest-var
.Patch: clj840-20161122.diff