Is there a good way to unit test a function or a class using OpenGL commands?

For c++, I know I could make the class a template and pass a class doing direct opengl calls :

namespace myNamespace
{
struct RealOpenglCall
{
  static inline void glVertex2fv( const GLfloat * v)
  { ::glVertex2fv( v ); }
};

template< typename T >
class SomeRendering
{
  public:
    SomeRendering() : v()
    {
      // set v
    }
    void Draw()
    {
      T::glVertex2fv(v);
    }
    GLfloat v[4];
};

}

In C and c++, I could pass function pointers to functions calling opengl functions (then for unit testing passing pointers to mock functions).

I could also link with different library (instead of opengl), but that sounds like a big complication.

So, what are other techniques to unit test code calling opengl functions?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Here is a nice trick i learned a while back. You can use regular old #defines to let you mock all kinds of API functions:

#ifdef _test_
#define glVertex3f(x,y,z)  (mockGlVertex3f((x),(y),(z)))
...
#endif

With a configured preprocessor. There is no need to change your drawing-functions at all. Further: you can implement mockGlVertex3f in such a way that it e.g. checks the arguments or counts the number of calls to it which can then later be checked.

link|improve this answer
You could use unit-testing data and have the mocking functions dump that data for comparison, passing the unit test if it matches the expected output. – datenwolf Mar 11 '11 at 9:38
absolutely. :-) – eznme Mar 11 '11 at 9:42
@datenwolf Then it is not an unit test, since it would need to read disk and access real data. That slows down unit testing – BЈовић Mar 11 '11 at 13:43
@VJo: How do you distinct between real and testing data? And results can be dumped into memory, too. – datenwolf Mar 11 '11 at 13:49
@datenwolf: "how do you distinct between real and testing data?": The caller decides this by defining _test_ and then calls the function supplying any data he likes. The data will be handled by e.g. mockGlVertex3f() which can do with it whatever you want it to do. – eznme Mar 11 '11 at 13:55
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.