]> git.sesse.net Git - movit/commitdiff
Start on unit testing (adds a dependency on Google Test). Right now, we have a single...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 11 Oct 2012 22:35:18 +0000 (00:35 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 11 Oct 2012 22:35:18 +0000 (00:35 +0200)
.gitignore
Makefile
demo.cpp [moved from main.cpp with 100% similarity]
effect_chain_test.cpp [new file with mode: 0644]
gtest_sdl_main.cpp [new file with mode: 0644]

index 0b4a5ba18215529354dff091c7253bf50938eb73..6dffcb17c37b86d31e5b2e6c03a1856e7fde3738 100644 (file)
@@ -1,8 +1,9 @@
 *.o
 *.a
 *.d
-test
 *.jpg
 *.png
 perf.data
 *.dot
+demo
+effect_chain_test
index ff768438c45a9366724837b1516b73fc1e209f78..b575bb02814cf5795fa313c8e04c0eab22f0f7cd 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,13 @@
+GTEST_DIR = /usr/src/gtest
+
 CC=gcc
 CXX=g++
-CXXFLAGS=-Wall -g $(shell pkg-config --cflags eigen3 )
-LDFLAGS=-lSDL -lSDL_image -lGL -lrt
+CXXFLAGS=-Wall -g -I$(GTEST_DIR)/include $(shell pkg-config --cflags eigen3 )
+LDFLAGS=-lSDL -lSDL_image -lGL -lrt -lpthread
 RANLIB=ranlib
 
-TEST_OBJS=main.o
+DEMO_OBJS=demo.o
+TESTS=effect_chain_test
 
 # Core.
 LIB_OBJS=util.o widgets.o effect.o effect_chain.o
@@ -31,11 +34,26 @@ LIB_OBJS += resize_effect.o
 LIB_OBJS += deconvolution_sharpen_effect.o
 LIB_OBJS += sandbox_effect.o
 
-OBJS=$(TEST_OBJS) $(LIB_OBJS)
+# Default target:
+all: $(TESTS) demo
+
+# Google Test.
+GDEMO_OBJS = gtest-all.o gtest_sdl_main.o
+
+gtest-all.o: $(GTEST_DIR)/src/gtest-all.cc
+       $(CXX) -MMD $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c $< -o $@
+gtest_sdl_main.o: gtest_sdl_main.cpp
+       $(CXX) -MMD $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c $< -o $@
 
-# A small test program (not a unit test).
-test: libmovit.a $(TEST_OBJS)
-       $(CXX) -o test $(TEST_OBJS) libmovit.a $(LDFLAGS)
+# Unit tests.
+effect_chain_test: effect_chain_test.o $(GDEMO_OBJS) libmovit.a
+       $(CXX) -o $@ effect_chain_test.o $(GDEMO_OBJS) libmovit.a $(LDFLAGS)
+
+OBJS=$(DEMO_OBJS) $(LIB_OBJS) $(GDEMO_OBJS)
+
+# A small demo program.
+demo: libmovit.a $(DEMO_OBJS)
+       $(CXX) -o demo $(DEMO_OBJS) libmovit.a $(LDFLAGS)
 
 # The library itself.
 libmovit.a: $(LIB_OBJS)
@@ -49,6 +67,11 @@ DEPS=$(OBJS:.o=.d)
 -include $(DEPS)
 
 clean:
-       $(RM) test libmovit.a $(OBJS) $(DEPS)
+       $(RM) demo $(TESTS) libmovit.a $(OBJS) $(DEPS)
+
+check: $(TESTS)
+       for TEST in $(TESTS); do \
+           ./$$TEST; \
+       done
 
-.PHONY: clean
+.PHONY: clean check all
similarity index 100%
rename from main.cpp
rename to demo.cpp
diff --git a/effect_chain_test.cpp b/effect_chain_test.cpp
new file mode 100644 (file)
index 0000000..c8fd946
--- /dev/null
@@ -0,0 +1,109 @@
+// Unit tests for EffectChain.
+
+#include "effect_chain.h"
+#include "flat_input.h"
+#include "sandbox_effect.h"
+#include "opengl.h"
+#include "gtest/gtest.h"
+
+#include <stdio.h>
+#include <math.h>
+
+#include <algorithm>
+
+class EffectChainTester {
+public:
+       EffectChainTester(const float *data, unsigned width, unsigned height, ColorSpace color_space, GammaCurve gamma_curve)
+               : chain(width, height), width(width), height(height)
+       {
+               ImageFormat format;
+               format.color_space = color_space;
+               format.gamma_curve = gamma_curve;
+       
+               FlatInput *input = new FlatInput(format, FORMAT_GRAYSCALE, GL_FLOAT, width, height);
+               input->set_pixel_data(data);
+               chain.add_input(input);
+       }
+
+       EffectChain *get_chain() { return &chain; }
+
+       void run(float *out_data, ColorSpace color_space, GammaCurve gamma_curve)
+       {
+               ImageFormat format;
+               format.color_space = color_space;
+               format.gamma_curve = gamma_curve;
+               chain.add_output(format);
+               chain.finalize();
+
+               glViewport(0, 0, width, height);
+               chain.render_to_screen();
+
+               glReadPixels(0, 0, width, height, GL_RED, GL_FLOAT, out_data);
+
+               // Flip upside-down to compensate for different origin.
+               for (unsigned y = 0; y < height / 2; ++y) {
+                       unsigned flip_y = height - y - 1;
+                       for (unsigned x = 0; x < width; ++x) {
+                               std::swap(out_data[y * width + x], out_data[flip_y * width + x]);
+                       }
+               }
+       }
+
+private:
+       EffectChain chain;
+       unsigned width, height;
+};
+
+void expect_equal(const float *ref, const float *result, unsigned width, unsigned height)
+{
+       float largest_difference = -1.0f;
+       float squared_difference = 0.0f;
+
+       for (unsigned y = 0; y < height; ++y) {
+               for (unsigned x = 0; x < width; ++x) {
+                       float diff = ref[y * width + x] - result[y * width + x];
+                       largest_difference = std::max(largest_difference, fabsf(diff));
+                       squared_difference += diff * diff;
+               }
+       }
+
+       const float largest_difference_limit = 1.5 / 255.0;
+       const float rms_limit = 0.5 / 255.0;
+
+       EXPECT_LT(largest_difference, largest_difference_limit);
+
+       float rms = sqrt(squared_difference) / (width * height);
+       EXPECT_LT(rms, rms_limit);
+
+       if (largest_difference >= largest_difference_limit || rms >= rms_limit) {
+               fprintf(stderr, "Dumping matrices for easier debugging, since at least one test failed.\n");
+
+               fprintf(stderr, "Reference:\n");
+               for (unsigned y = 0; y < height; ++y) {
+                       for (unsigned x = 0; x < width; ++x) {
+                               fprintf(stderr, "%7.4f ", ref[y * width + x]);
+                       }
+                       fprintf(stderr, "\n");
+               }
+
+               fprintf(stderr, "\nResult:\n");
+               for (unsigned y = 0; y < height; ++y) {
+                       for (unsigned x = 0; x < width; ++x) {
+                               fprintf(stderr, "%7.4f ", result[y * width + x]);
+                       }
+                       fprintf(stderr, "\n");
+               }
+       }
+}
+
+TEST(EffectChainTest, Identity) {
+       float data[] = {
+               0.0f, 0.25f, 0.3f,
+               0.75f, 1.0f, 1.0f,
+       };
+       float out_data[6];
+       EffectChainTester tester(data, 3, 2, COLORSPACE_sRGB, GAMMA_LINEAR);
+       tester.run(out_data, COLORSPACE_sRGB, GAMMA_LINEAR);
+
+       expect_equal(data, out_data, 3, 2);
+}
diff --git a/gtest_sdl_main.cpp b/gtest_sdl_main.cpp
new file mode 100644 (file)
index 0000000..01eedf2
--- /dev/null
@@ -0,0 +1,15 @@
+#include <SDL/SDL.h>
+#include "gtest/gtest.h"
+
+int main(int argc, char **argv) {
+       // Set up an OpenGL context using SDL.
+       SDL_Init(SDL_INIT_VIDEO);
+       SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0);
+       SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 0);
+       SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
+       SDL_SetVideoMode(1280, 720, 0, SDL_OPENGL);
+       SDL_WM_SetCaption("OpenGL window for unit test", NULL);
+
+       testing::InitGoogleTest(&argc, argv);
+       return RUN_ALL_TESTS();
+}