luaunit

luaunit

功能全面的Lua单元测试框架

LuaUnit是一款广受欢迎的Lua单元测试框架,具有xUnit风格的接口。它支持多种输出格式,可轻松集成到持续集成流程中。LuaUnit以单文件形式提供,无需外部依赖,使用方便。该框架提供丰富的断言功能和详细的差异分析,支持通过命令行选项灵活控制测试执行。此外,LuaUnit还可作为独立的断言库使用,并提供强大的对象字符串化能力。

LuaUnit单元测试Lua开源持续集成Github开源项目

CI Build status Documentation Status Coverage Status Downloads License CII Best Practices

LuaUnit

by Philippe Fremy

LuaUnit is a popular unit-testing framework for Lua, with an interface typical of xUnit libraries (Python unittest, Junit, NUnit, ...). It supports several output formats (Text, TAP, JUnit, ...) to be used directly or work with Continuous Integration platforms (Jenkins, Hudson, ...).

LuaUnit may be installed as a rock or directly added to your project. For simplicity, LuaUnit is contained into a single-file and has no external dependency.

Tutorial and reference documentation is available on read-the-docs

LuaUnit may also be used as an assertion library, to validate assertions inside a running program. In addition, it provides a pretty stringifier which converts any type into a nicely formatted string (including complex nested or recursive tables).

More details

LuaUnit provides a wide range of assertions and goes into great efforts to provide the most useful output. For example since version 3.3 , comparing lists will provide a detailed difference analysis:

-- lua test code. Can you spot the difference ? function TestListCompare:test1() local A = { 121221, 122211, 121221, 122211, 121221, 122212, 121212, 122112, 122121, 121212, 122121 } local B = { 121221, 122211, 121221, 122211, 121221, 122212, 121212, 122112, 121221, 121212, 122121 } lu.assertEquals( A, B ) end
$ lua test_some_lists_comparison.lua TestListCompare.test1 ... FAIL test/some_lists_comparisons.lua:22: expected: List difference analysis: * lists A (actual) and B (expected) have the same size * lists A and B start differing at index 9 * lists A and B are equal again from index 10 * Common parts: = A[1], B[1]: 121221 = A[2], B[2]: 122211 = A[3], B[3]: 121221 = A[4], B[4]: 122211 = A[5], B[5]: 121221 = A[6], B[6]: 122212 = A[7], B[7]: 121212 = A[8], B[8]: 122112 * Differing parts: - A[9]: 122121 + B[9]: 121221 * Common parts at the end of the lists = A[10], B[10]: 121212 = A[11], B[11]: 122121

The command-line options provide a flexible interface to select tests by name or patterns, control output format, set verbosity and more. See the documentation .

LuaUnit also provides some dedicated support to scientific computing. See the documentation .

LuaUnit is very well tested: code coverage is 99.5% . The test suite is run on every version of Lua (Lua 5.1 to 5.4, LuaJIT 2.0 and 2.1 beta) and on many OS (Windows Seven, Windows Server 2012, MacOs X and Ubuntu). You can check the continuous build results on Travis-CI and AppVeyor.

LuaUnit is maintained on GitHub: https://github.com/bluebird75/luaunit . We gladly accept feature requests and even better Pull Requests. For more information on LuaUnit development, please check: Developing LuaUnit .

LuaUnit is released under the BSD license.

The main developer can be reached at phil.fremy at free.fr . If you have security issue to report requiring confidentiality, this is the address to use.

LuaUnit successes

Version 3.2 of LuaUnit has been downloaded more than 235 000 times on LuaRocks

LuaUnit is used in some very nice technological products. I like to mention:

  • SchedMD/Slurm: Slurm is an open-source cluster resource management and job scheduling system that strives to be simple, scalable, portable, fault-tolerant, and interconnect agnostic. On the June 2017 Top 500 computer list, Slurm was performing workload management on six of the ten most powerful computers in the world including the number 1 system, Sunway TaihuLight with 10,649,600 computing cores. LuaUnit is used by Slurm to validate plugins written in Lua. Thanks Douglas Jacobsen to contribute back to LuaUnit. See the GitHub repository of Slurm .

  • MAD by the CERN: CERN is the European Organization for Nuclear Research, where physicists and engineers are probing the fundamental structure of the universe. MAD is one of the CERN project: MAD aims to be at the forefront of computational physics in the field of particle accelerator design and simulation. Its scripting language is de facto the standard to describe particle accelerators, simulate beam dynamics and optimize beam optics at CERN. Lua is the main language of MAD-ng, the new generatino of MAD. A fork of LuaUnit is used extensively for all MAD calculation and framework validation. Thanks Laurent Deniau for contributing back to LuaUnit. See the GitHub repository of MAD .

Contributors

Installation

LuaRocks

LuaUnit is available on LuaRocks. To install it, you need at least LuaRocks version 2.4.4 (due to old versions of wget being incompatible with GitHub https downloading)

GitHub

The simplest way to install LuaUnit is to fetch the GitHub version:

git clone git@github.com:bluebird75/luaunit.git

Then copy the file luaunit.lua into your project or the Lua libs directory.

The version of the main branch on GitHub is always stable and can be used safely.

History

Version 3.4 - 02 March 2021

  • support for Lua 5.4
  • assertAlmostEquals() works also on tables and nested structures
  • choose test output style with environment variable LUAUNIT_OUTPUT
  • setOutputType() accepts the xml filename as second argument when using the format junit
  • improve printing of table information in case of cycles
  • add ability to skip tests with skip() and skipIf()
  • detect attempts to exit the test suite before it is finished running
  • add assertErrorMsgContentEquals() to validate exactly any error message
  • filter out some stack entries when printing assertions (useful when embedding LuaUnit inside another test layer) with STRIP_EXTRA_ENTRIES_IN_STACK_TRACE
  • add assertTableContains() and assertNotTableContains() to verify the presence of a given value within a table
  • remove option TABLE_EQUALS_KEYBYCONTENT, it did not make sense
  • bugfix:
    • assertIs()/assertNotIs() deals better with protected metatables
    • assertEquals() deals better with tables containing cycles of different structure
    • fix table length comparison for table returning inconsistent length

Version 3.3 - 6. March 2018

  • General
    • when comparing lists with assertEquals(), failure message provides an advanced comparison of the lists
    • assertErrorMsgEquals() can check for error raised as tables
    • tests may be finished early with fail(), failIf(), success() or successIf()
    • improve printing of recursive tables
    • improvements and fixes to JUnit and TAP output
    • stricter assertTrue() and assertFalse(): they only succeed with boolean values
    • add assertEvalToTrue() and assertEvalToFalse() with previous assertTrue()/assertFalse() behavior of coercing to boolean before asserting ** all assertion functions accept an optional extra message, to be printed along the failure
  • New command-line arguments:
    • can now shuffle tests with --shuffle or -s
    • possibility to repeat tests (for example to trigger a JIT), with --repeat NUM or -r NUM
    • more flexible test selection with inclusion (--pattern / -p) or exclusion (--exclude / -x) or combination of both
  • Scientific computing dedicated support (see documentation):
    • provide the machine epsilon in lu.EPS
    • new functions: assertNan(), assertInf(), assertPlusInf(), assertMinusInf(), assertPlusZero(), assertMinusZero()
    • in assertAlmostEquals( a, b, margin ), margin no longer provides a default value of 1E-11, the machine epsilon is used instead
  • Platform and continuous integration support:
    • validate LuaUnit on MacOs platform (thank to Travis CI)
    • validate LuaUnit with 32 bits numbers (floats) and 64 bits numbers (double)
    • add test coverage measurements thank to coveralls.io . Status: 99.76% of the code is verified.
    • use cache for AppVeyor and Travis builds
    • support for luarocks doc command
  • General doc improvements (detailed description of all output, more cross-linking between sections)

Version 3.2 - 12. Jul 2016

  • distinguish between failures (failed assertion) and errors
  • add command-line option to stop on first error or failure
  • support for new versions: Lua 5.3 and LuaJIT (2.0, 2.1 beta)
  • validation of all lua versions on Travis CI and AppVeyor
  • added compatibility layer with forked luaunit v2.x
  • added documentation about development process
  • improved support for table containing keys of type table
  • small bug fixes, several internal improvements

Version 3.1 - 10 Mar. 2015

  • luaunit no longer pollutes global namespace, unless defining EXPORT_ASSERT_TO_GLOBALS to true
  • fixes and validation of JUnit XML generation
  • strip luaunit internal information from stacktrace
  • general improvements of test results with duration and other details
  • improve printing for tables, with an option to always print table id
  • fix printing of recursive tables

Important note when upgrading to version 3.1 : assertions functions are no longer exported directly to the global namespace. See documentation for upgrade paths.

Version 3.0 - 9. Oct 2014

Since some people have forked LuaUnit and release some 2.x version, I am jumping the version number to 3.

  • moved to Github
  • full documentation available in text, html and pdf at read-the-docs.org
  • new output format: JUnit
  • much better table assertions
  • new assertions for strings, with patterns and case insensitivity: assertStrContains, assertNotStrContains, assertNotStrIContains, assertStrIContains, assertStrMatches
  • new assertions for floats: assertAlmostEquals, assertNotAlmostEquals
  • type assertions: assertIsString, assertIsNumber, ...
  • error assertions: assertErrorMsgEquals, assertErrorMsgContains, assertErrorMsgMatches
  • improved error messages for several assertions
  • command-line options to select test, control output type and verbosity

Version 2.0

Unofficial fork from version 1.3 by rjbcomupting

  • lua 5.2 module style, without global namespace pollution
  • setUp() may be named Setup() or setup()
  • tearDown() may be named Teardown() or teardown()
  • wrapFunction() may be called WrapFunctions() or wrap_functions()
  • run() may also be called Run()
  • table deep comparision (also available in 1.4)
  • control verbosity with setVerbosity() SetVerbosity() and set_verbosity()
  • More assertions:
    • is<Type>, is_<type>, assert<Type> and assert_<type> (e.g. assert( LuaUnit.isString( getString() ) )
    • assertNot<Type> and assert_not_<type>

Version 1.5 - 8. Nov 2012

  • compatibility with Lua 5.1 and 5.2
  • better object model internally
  • a lot more of internal tests
  • several internal bug fixes
  • make it easy to customize the test output
  • running test functions no longer requires a wrapper
  • several level of verbosity

Version 1.4 - 26. Jul 2012

  • table deep comparison
  • switch from X11 to more popular BSD license
  • add TAP output format for integration into Jenkins
  • official repository now on GitHub

Version 1.3 - 30. Oct 2007

  • port to lua 5.1
  • iterate over the test classes, methods and functions in the alphabetical order
  • change the default order of expected, actual in assertEquals (adjustable with USE_EXPECTED_ACTUAL_IN_ASSERT_EQUALS).

Version 1.2 - 13. Jun 2005

  • first public release

Version 1.1

  • move global variables to internal variables
  • assertion order is configurable between expected/actual or actual/expected
  • new assertion to check that a function call returns an error
  • display the calling stack when an error is spotted
  • two verbosity level, like in python

编辑推荐精选

Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞智文

讯飞智文

一键生成PPT和Word,让学习生活更轻松

讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。

AI办公办公工具AI工具讯飞智文AI在线生成PPTAI撰写助手多语种文档生成AI自动配图热门
讯飞星火

讯飞星火

深度推理能力全新升级,全面对标OpenAI o1

科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。

热门AI开发模型训练AI工具讯飞星火大模型智能问答内容创作多语种支持智慧生活
Spark-TTS

Spark-TTS

一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型

Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。

Trae

Trae

字节跳动发布的AI编程神器IDE

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
咔片PPT

咔片PPT

AI助力,做PPT更简单!

咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。

讯飞绘文

讯飞绘文

选题、配图、成文,一站式创作,让内容运营更高效

讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。

热门AI辅助写作AI工具讯飞绘文内容运营AI创作个性化文章多平台分发AI助手
材料星

材料星

专业的AI公文写作平台,公文写作神器

AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。

openai-agents-python

openai-agents-python

OpenAI Agents SDK,助力开发者便捷使用 OpenAI 相关功能。

openai-agents-python 是 OpenAI 推出的一款强大 Python SDK,它为开发者提供了与 OpenAI 模型交互的高效工具,支持工具调用、结果处理、追踪等功能,涵盖多种应用场景,如研究助手、财务研究等,能显著提升开发效率,让开发者更轻松地利用 OpenAI 的技术优势。

Hunyuan3D-2

Hunyuan3D-2

高分辨率纹理 3D 资产生成

Hunyuan3D-2 是腾讯开发的用于 3D 资产生成的强大工具,支持从文本描述、单张图片或多视角图片生成 3D 模型,具备快速形状生成能力,可生成带纹理的高质量 3D 模型,适用于多个领域,为 3D 创作提供了高效解决方案。

下拉加载更多