-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating describe/it methods #588
Comments
Looks interesting. Can you explain what the use case is? |
Motivated by https://mochajs.org/#inclusive-tests. Specially when writing tests, I'd like to be able to have
Or if you want to for now |
I gave it some thought and I don't like it. I see the use case, but I think there is a risk when you use those, that you accidentally forget one of them and then unknowingly skip part of the tests on each test run. The common way to do this is by using tags: describe('NewTest', function()
it('run this one alone, and nothing else #only', function()
end)
end) and execute it using For skipping you'd use a The existing approach using tags cannot accidentally be merged and then silently skip tests in CI for example. With your proposed approach you would run that risk. Not my call in the end. Maybe @ajacksified or @DorianGray have different opinions. |
I would still like to be able to modify/extend these methods. If I try to do local busted = require('busted')
busted.describe = ... I get How can I extend these methods? |
I don't know, probably updating busted itself is easier than extending it at runtime. The code is heavily event based, I find it hard to reason about. The error is probably generated by some meta table, so maybe inspect that? |
I got at least half of the functionalities I wanted using local busted = require 'busted'
busted.subscribe({'test', 'start'}, function(md)
if os.getenv('VERBOSE') ~= nil then
print(string.format('### running test %s ###', md['trace']['message']))
end
end) thanks for the info! |
@Tieske I have another use case where I do need to extend it. I want to provide a "data provider" support for my tests. So for example, instead of doing this: describe('myUtil', function()
it('should test something', function()
assert.are.equal('foo1', myUtil.evaluate('bar1'))
assert.are.equal('foo2', myUtil.evaluate('bar2'))
assert.are.equal('foo3, myUtil.evaluate('bar13))
end)
end) to something like: describe('myUtil', function()
local provider = function()
return {
{'foo1', 'bar1'},
{'foo2', 'bar2'},
{'foo3', 'bar13'}
}
end)
it('should test something', function(expected, input)
assert.are.equal(expected, myUtil.evaluate(input))
end, provider)
end) (Of course, |
This is what I have done so far: _G.dataProvider = function(test, ...)
local arg = {...}
local data = {}
local provider = arg[1]
if #arg == 1 then
if type(provider) == 'table' then
data = provider
elseif type(provider) == 'function' then
data = provider()
else
error('Unsupported type ' .. type(provider) .. ' provided')
end
else
data = arg
end
for _, value in pairs(data) do
test(table.unpack(value))
end
end Then tests look like: describe('util', function()
-- Provider as a function
local provider = function()
return {
{'expected-result1', 'arg1a', 'arg1b'},
{'expected-result2', 'arg2a', 'arg2b'},
...
}
end
-- Provider as a table
local provider = {
{'expected-result1', 'arg1a', 'arg1b'},
{'expected-result2', 'arg2a', 'arg2b'},
...
}
dataProvider(function(expected, arg1, arg2)
it('should run some test', function()
assert.are.equal(expected, util.someMethod(arg1, arg2))
end)
end, provider)
-- Or provider inline as multiple arguments
dataProvider(function(expected, arg1, arg2)
it('should run some test', function()
assert.are.equal(expected, util.someMethod(arg1, arg2))
end)
end, {'expected', 'arg1', 'arg2'}, {'expected', 'arg3', 'arg4'})
end) |
Closing this, in fav of #589 |
I'd like to add
describe.skip
anddescribe.only
(and toit
) as well for my test runners. How can I update/register new executors?The text was updated successfully, but these errors were encountered: