• Stars
    star
    1,316
  • Rank 34,373 (Top 0.7 %)
  • Language
    Lua
  • License
    MIT License
  • Created almost 12 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Elegant Lua unit testing.

busted

Join the chat at https://gitter.im/lunarmodules/busted

Busted Luacheck GitHub tag (latest SemVer) Luarocks

busted is a unit testing framework with a focus on being easy to use. Supports Lua >= 5.1, luajit >= 2.0.0, and moonscript.

Check out the official docs for extended info.

busted test specs read naturally without being too verbose. You can even chain asserts and negations, such as assert.is_not.equal. Nest blocks of tests with contextual descriptions using describe, and add tags to blocks so you can run arbitrary groups of tests.

An extensible assert library allows you to extend and craft your own assert functions specific to your case with method chaining. A modular output library lets you add on your own output format, along with the default pretty and plain terminal output, JSON with and without streaming, and TAP-compatible output that allows you to run busted specs within most CI servers.

describe('Busted unit testing framework', function()
  describe('should be awesome', function()
    it('should be easy to use', function()
      assert.truthy('Yup.')
    end)

    it('should have lots of features', function()
      -- deep check comparisons!
      assert.same({ table = 'great'}, { table = 'great' })

      -- or check by reference!
      assert.is_not.equals({ table = 'great'}, { table = 'great'})

      assert.falsy(nil)
      assert.error(function() error('Wat') end)
    end)

    it('should provide some shortcuts to common functions', function()
      assert.unique({{ thing = 1 }, { thing = 2 }, { thing = 3 }})
    end)

    it('should have mocks and spies for functional tests', function()
      local thing = require('thing_module')
      spy.on(thing, 'greet')
      thing.greet('Hi!')

      assert.spy(thing.greet).was.called()
      assert.spy(thing.greet).was.called_with('Hi!')
    end)
  end)
end)

Contributing

See CONTRIBUTING.md. All issues, suggestions, and most importantly pull requests are welcome.

Testing

Assuming you have luarocks installed:

Install these dependencies for core testing:

luarocks install moonscript

Then to reinstall and run tests:

luarocks remove busted --force
luarocks make
busted spec

Docker

Alternatively Busted can be run as a standalone docker container. This approach is somewhat limited because many projects will require extra dependencies which will need to be installed inside the Docker container. Luarocks is provided in the container so many dependencies can be added. The images are based on Alpine Linux so you can also use apk add to install system dependencies if needed. The Docker use case is probably most advantageous for pure-Lua projects with no dependencies: i.g. small libraries not large apps.

The usage of docker is fairly simple. You can either build your own or download a prebuilt version. To build your own, execute the following command from the source directory of this project:

$ docker build -t ghcr.io/lunarmodules/busted:HEAD .

To use a prebuilt one, download it from the GitHub Container Registry. Here we use the one tagged latest, but you can substitute latest for any tagged release.

$ docker pull ghcr.io/lunarmodules/busted:latest

Once you have a container you can run it on one file or a source tree (substitute latest with HEAD if you built your own or with the tagged version you want if applicable):

# Run on an entire project
$ docker run -v "$(pwd):/data" ghcr.io/lunarmodules/busted:latest

# Run on one directory:
$ docker run -v "$(pwd):/data" ghcr.io/lunarmodules/busted:latest specs

A less verbose way to run it in most shells is with at alias:

# In a shell or in your shell's RC file:
$ alias busted='docker run -v "$(pwd):/data" ghcr.io/lunarmodules/busted:latest'

# Thereafter just run:
$ busted

Use as a CI job

There are actually many ways to run Busted remotely as part of a CI work flow. Because packages are available for many platforms, one way would be to just use your platforms native package installation system to pull them into whatever CI runner environment you already use. Another way is to pull in the prebuilt Docker container and run that.

As a case study, here is how a workflow could be setup in GitHub Actions:

name: Busted
on: [push, pull_request]
jobs:
  sile:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Run Busted
        uses: lunarmodules/busted@v0

By default the GH Action is configured to run busted --verbose, but you can also pass it your own args to replace the default input of ..

      - name: Run Busted
        uses: lunarmodules/busted@v0
        with:
            args: --tags=MYTAGS

License

Copyright 2012-2020 Olivine Labs, LLC. MIT licensed. See LICENSE for details.

More Repositories

1

Penlight

A set of pure Lua libraries focusing on input data handling (such as reading configuration files), functional programming (such as map, reduce, placeholder expressions,etc), and OS path management. Much of the functionality is inspired by the Python standard libraries.
Lua
1,790
star
2

luasocket

Network support for the Lua language
HTML
1,736
star
3

luafilesystem

LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution.
C
854
star
4

ldoc

LDoc is a LuaDoc-compatible documentation generator which can also process C extension source. Markdown may be optionally used to render comments, as well as integrated readme documentation and pretty-printed example files.
Lua
737
star
5

luasql

LuaSQL is a simple interface from Lua to a DBMS.
Lua
521
star
6

luasec

LuaSec
C
353
star
7

luacov

LuaCov is a simple coverage analyzer for Lua code.
Lua
290
star
8

lua-compat-5.3

Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1
C
216
star
9

copas

Copas is a dispatcher based on coroutines that can be used by TCP/IP servers.
Lua
197
star
10

luassert

Assertion library for Lua
Lua
191
star
11

lua_cliargs

A command-line argument parsing module for Lua.
Lua
113
star
12

md5

MD5 offers basic cryptographic facilities for Lua 5.1.
C
108
star
13

cgilua

CGILua is a tool for creating dynamic HTML pages and manipulating input data from Web forms.
Lua
92
star
14

lua-iconv

Lua bindings for POSIX iconv
Lua
88
star
15

lualogging

A simple API to use logging features in Lua
Lua
44
star
16

say

Lua string hashing library, useful for internationalization
Lua
37
star
17

luaexpat

LuaExpat is a SAX XML parser based on the Expat library
Lua
20
star
18

luasystem

Platform independent system calls for Lua
C
15
star
19

luasyslog

Addon for lualogging to log to the system log on unix systems
Lua
5
star
20

lua-mimetypes

fixed repo of https://luarocks.org/modules/luarocks/mimetypes
Lua
3
star
21

lunarmodules

providing the profile page (README.md) for the Lunar Modules organization
2
star
22

moon-sand

Sandbox to mess with CI‌ deployments using LunarModules CI key(s)
Lua
1
star
23

expadom

An XML DOM Level 2 Core implementation in Lua, based on the (Lua)Expat parser.
Lua
1
star
24

.github

Lunarmodules profile page and reusable workflows
1
star
25

lua-lace

Lua Access Control Engine
Lua
1
star