Unit Testing C Code - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T03:47:16Zhttp://stackoverflow.com/feeds/question/65820http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/65820/unit-testing-c-code23Unit Testing C CodePaul Osborne2008-09-15T19:12:00Z2009-09-11T21:01:49Z
<p>I worked on an embedded system this summer written in straight C. It was an existing project that the company I work for had taken over. I have become quite accustomed to writing unit tests in Java using JUnit but was at a loss as to the best way to write unit tests for existing code (which needed refactoring) as well as new code added to the system.</p>
<p>Are there any projects out there that make unit testing plain C code as easy as unit testing Java code with JUnit? Any insight that would apply specifically to embedded development (cross-compiling to arm-linux platform) would be greatly appreciated.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/65845#6584515Answer by Adam Rosenfield for Unit Testing C CodeAdam Rosenfield2008-09-15T19:14:36Z2009-02-04T19:58:06Z<p>One unit testing framework in C is <a href="http://check.sourceforge.net/" rel="nofollow">Check</a>; a list of unit testing frameworks in C can be found <a href="http://check.sourceforge.net/doc/check.html/check_3.html#SEC3" rel="nofollow">here</a>. Depending on how many standard library functions your runtime has, you may or not be able to use one of those.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/65852#658521Answer by phjr for Unit Testing C Codephjr2008-09-15T19:14:53Z2008-09-15T19:26:11Z<p>Google has excellent testing framework. <a href="http://code.google.com/p/googletest/wiki/GoogleTestPrimer" rel="nofollow">http://code.google.com/p/googletest/wiki/GoogleTestPrimer</a></p>
<p>And yes, as far as I see it will work with plain C, i.e. doesn't require C++ features (may require C++ compiler, not sure).</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/65916#659161Answer by landon9720 for Unit Testing C Codelandon97202008-09-15T19:22:11Z2008-09-15T19:22:11Z<p>cmockery at <a href="http://code.google.com/p/cmockery/" rel="nofollow">http://code.google.com/p/cmockery/</a></p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/65918#659181Answer by Kwondri for Unit Testing C CodeKwondri2008-09-15T19:22:11Z2008-09-15T19:22:11Z<p>If you are familiar with JUnit then I recommend CppUnit.
<a href="http://cppunit.sourceforge.net/cppunit-wiki" rel="nofollow">http://cppunit.sourceforge.net/cppunit-wiki</a></p>
<p>That is assuming you have c++ compiler to do the unit tests. if not then I have to agree with Adam Rosenfield that check is what you want.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/65921#659210Answer by quamrana for Unit Testing C Codequamrana2008-09-15T19:22:34Z2008-09-15T19:22:34Z<p>One technique to use is to develop the unit test code with a C++ xUnit framework (and C++ compiler), while maintaining the source for the target system as C modules.</p>
<p>Make sure you regularly compile your C source under your cross-compiler, automatically with your unit tests if possible.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/65958#659583Answer by Prakash for Unit Testing C CodePrakash2008-09-15T19:27:28Z2008-09-15T19:27:28Z<p>There is <a href="http://cunit.sourceforge.net/" rel="nofollow"><strong>CUnit</strong></a></p>
<p>And <a href="https://sourceforge.net/projects/embunit/" rel="nofollow"><strong>Embedded Unit</strong></a> is unit testing framework for Embedded C System. Its design was copied from JUnit and CUnit and more, and then adapted somewhat for Embedded C System. Embedded Unit does not require std C libs. All objects are allocated to const area.</p>
<p>And <a href="http://www.hitex.de/perm/tessy.htm" rel="nofollow"><strong>Tessy</strong></a> automates the unit testing of embedded software.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/65962#659626Answer by Matteo Caprari for Unit Testing C CodeMatteo Caprari2008-09-15T19:27:50Z2009-06-24T12:44:15Z<p><a href="http://www.jera.com/techinfo/jtns/jtn002.html" rel="nofollow">Minunit</a> is an incredibly simple unit testing framework.
I'm using it to unit test c microcontroller code for avr.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/66713#667130Answer by Kevin for Unit Testing C CodeKevin2008-09-15T20:39:24Z2008-09-15T20:39:24Z<p>First, look here: <a href="http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks#C" rel="nofollow">http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks#C</a></p>
<p>My company has a C library our customers use. We use CxxTest (a C++ unit test library) to test the code. CppUnit will also work. If you're stuck in C, I'd recommend RCUNIT (but CUnit is good too).</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/67718#677183Answer by Zing- for Unit Testing C CodeZing-2008-09-15T22:47:08Z2008-09-15T22:52:23Z<p>I use CxxTest for an embedded c/c++ environment (primarily C++). </p>
<p>I prefer CxxTest because it has a perl/python script to build the test runner. After a small slope to get it setup (smaller still since you don't have to write the test runner), it's pretty easy to use (includes samples and useful documentation). The most work was setting up the 'hardware' the code accesses so I could unit/module test effectively. After that it's easy to add new unit test cases.</p>
<p>As mentioned previously it is a C/C++ unit test framework. So you will need a C++ compiler.</p>
<p><a href="http://cxxtest.sourceforge.net/guide.html" rel="nofollow">CxxTest User Guide</a>
<a href="http://cxxtest.com/index.php?title=Main_Page" rel="nofollow">CxxTest Wiki</a></p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/69820#698207Answer by Ovid for Unit Testing C CodeOvid2008-09-16T06:32:12Z2008-09-16T06:32:12Z<p>You also might want to take a look at <a href="http://www.onlamp.com/pub/a/onlamp/2006/01/19/libtap.html" rel="nofollow">libtap</a>, a C testing framework which outputs the Test Anything Protocol (TAP) and thus integrates well with a variety of tools coming out for this technology. It's mostly used in the dynamic language world, but it's easy to use and becoming very popular.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/72495#724951Answer by navicore for Unit Testing C Codenavicore2008-09-16T13:54:28Z2008-09-16T13:54:28Z<p>I don't use a framework, I just use autotools "check" target support. Implement a "main" and use assert(s).</p>
<p>My test dir Makefile.am(s) look like:</p>
<pre><code>check_PROGRAMS = test_oe_amqp
test_oe_amqp_SOURCES = test_oe_amqp.c
test_oe_amqp_LDADD = -L$(top_builddir)/components/common -loecommon
test_oe_amqp_CFLAGS = -I$(top_srcdir)/components/common -static
TESTS = test_oe_amqp
</code></pre>
http://stackoverflow.com/questions/65820/unit-testing-c-code/73721#737210Answer by Alejandro Bologna for Unit Testing C CodeAlejandro Bologna2008-09-16T15:40:09Z2008-09-16T15:40:09Z<p><a href="http://code.google.com/p/cmockery/" rel="nofollow">Cmockery</a> is a recently launched Google Code project that consists on a very simple to use C library for writing unit tests.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/75133#751336Answer by Michael Burr for Unit Testing C CodeMichael Burr2008-09-16T18:00:38Z2008-09-16T18:00:38Z<p>I'm currently using the CuTest unit test framework:</p>
<p><a href="http://cutest.sourceforge.net/" rel="nofollow">http://cutest.sourceforge.net/</a></p>
<p>It's ideal for embedded systems as it's very lightweight and simple. I had no problems getting it to work on the target platform as well as on the desktop. In addition to writing the unit tests, all that's required is:</p>
<ul>
<li>a header file included wherever
you're calling the CuTest routines</li>
<li>a single additional 'C' file to be
compiled/linked into the image</li>
<li>some simple code added to to main to
set up and call the unit tests - I
just have this in a special main()
function that gets compiled if
UNITTEST is defined during the
build.</li>
</ul>
<p>The system needs to support a heap and some stdio functionality (which not all embedded systems have). But the code is simple enough that you could probably work in alternatives to those requirements if your platform doesn't have them.</p>
<p>With some judicious use of extern "C"{} blocks it also supports testing C++ just fine.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/84848#848480Answer by Tom for Unit Testing C CodeTom2008-09-17T16:04:22Z2008-09-17T16:04:22Z<p>I voted for CXXTest but can't edit the response. So'll I'll just add it here.</p>
<p>One of the great features of CXXTest is it's support for Mocks. As it turns out the Mocks in CXXTest are really only meant for regular functions so they work really well for C.</p>
<p>One problem is that you need to use namespaces when invoking the Mocks. This may or may not be a problem for you.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/194264#1942640Answer by Johannes Passing for Unit Testing C CodeJohannes Passing2008-10-11T16:18:50Z2008-10-11T16:18:50Z<p>In case you are targeting Win32 platforms or NT kernel mode, you should have a look at <a href="http://cfix.sf.net/" rel="nofollow">cfix</a>.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/317020#3170201Answer by Gerhard for Unit Testing C CodeGerhard2008-11-25T11:12:08Z2008-11-25T11:12:08Z<p>I used <a href="http://rcunit.sourceforge.net/" rel="nofollow">RCUNIT</a> to do some unit testing for embedded code on PC before testing on the target. Good hardware interface abstraction is important else endianness and memory mapped registers are going to kill you. </p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/434114#4341140Answer by Dushara for Unit Testing C CodeDushara2009-01-12T00:30:39Z2009-01-12T00:30:39Z<p>If you're still on the hunt for test frameworks, <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a> is one for the Win32/NT platform.</p>
<p>This solves one fundamental problem that I faced with other testing frameworks. Namely global/static variables are in a deterministic state because each test is executed as a separate process.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/1410143#14101431Answer by mikelong for Unit Testing C Codemikelong2009-09-11T10:19:22Z2009-09-11T21:01:49Z<p>Personally I like the <a href="http://code.google.com/p/googletest/" rel="nofollow">Google Test framework</a>. </p>
<p>The real difficulty in testing C code is breaking the dependencies on external modules so you can isolate code in units. This can be especially problematic when you are trying to get tests around legacy code. In this case I often find myself using the linker to use stubs functions in tests.</p>
<p>This is what people are referring to when they talk about "<strong>seams</strong>". In C your only option really is to use the pre-processor or the linker to mock out your dependencies.</p>
<p>A typical test suite in one of my C projects might look like this:</p>
<pre><code>#include "myimplementationfile.c"
#include <gtest/gtest.h>
// Mock out external dependency on mylogger.o
void Logger_log(...){}
TEST(FactorialTest, Zero) {
EXPECT_EQ(1, Factorial(0));
}
</code></pre>
<p><strong>Note that you are actually including the C file and not the header file</strong>. This gives the advantage of access to all the static data members. Here I mock out my logger (which might be in logger.o and give an empty implementation. This means that the test file compiles and links independently from the rest of the code base and executes in isolation.</p>
<p>As for cross-compiling the code, for this to work you need good facilities on the target. I have done this with googletest cross compiled to Linux on a PowerPC architecture. This makes sense because there you have a full shell and os to gather your results. For less rich environments (which I classify as anything without a full OS) you should just build and run on the host. You should do this anyway so you can run the tests automatically as part of the build.</p>
<p>I find testing C++ code is generally much easier due to the fact that OO code is in general much less coupled than procedural (of course this depends a lot on coding style). Also in C++ you can use tricks like dependency injection and method overriding to get seams into code that is otherwise encapsulated.</p>
<p>Michael Feathers has an <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">excellent book about testing legacy code</a>. In one chapter he covers techniques for dealing with non-OO code which I highly recommend.</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/1412819#14128191Answer by Frank Schwieterman for Unit Testing C CodeFrank Schwieterman2009-09-11T19:21:05Z2009-09-11T19:21:05Z<p>Michael Feather's book "Working Effectively with Legacy Code" presents a lot of techniques specific to unit testing C development. Their are techniques related to dependency injection that are specific to C which I haven't seen anywhere else.</p>