diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-05-22 10:39:49 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-05-22 10:39:49 +0200 | 
| commit | 158838f9b52d21610626f55964170a3e82f6ccdb (patch) | |
| tree | 0dee778483d667209aca5f2a0a09d9f0c213bca0 /test | |
| parent | bef1d5542f926a3b942374707dd56041013d35ff (diff) | |
| parent | 2699cb7d324ffb1d2adc62e1f62434397aa39e2d (diff) | |
Merge with master
Diffstat (limited to 'test')
| -rw-r--r-- | test/Makefile.am | 11 | ||||
| -rw-r--r-- | test/configtest.cc | 219 | ||||
| -rw-r--r-- | test/test.cc | 2 | 
3 files changed, 230 insertions, 2 deletions
| diff --git a/test/Makefile.am b/test/Makefile.am index e5760c8..6526f22 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,7 +1,7 @@  # Rules for the test code (use `make check` to execute)  include $(top_srcdir)/src/Makefile.am.drumgizmo -TESTS = engine gui resampler lv2 cachemanager +TESTS = engine gui resampler lv2 configfile cachemanager  check_PROGRAMS = $(TESTS) @@ -54,3 +54,12 @@ lv2_SOURCES = \  	test.cc \  	lv2_test_host.cc \  	lv2.cc + +configfile_CXXFLAGS = -DOUTPUT=\"configfile\" $(CPPUNIT_CFLAGS) \ +	-I$(top_srcdir)/hugin +configfile_LDFLAGS = $(CPPUNIT_LIBS) +configfile_SOURCES = \ +	$(top_srcdir)/src/configfile.cc \ +	$(top_srcdir)/hugin/hugin.c \ +	test.cc \ +	configtest.cc diff --git a/test/configtest.cc b/test/configtest.cc new file mode 100644 index 0000000..24a7048 --- /dev/null +++ b/test/configtest.cc @@ -0,0 +1,219 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/*************************************************************************** + *            configtest.cc + * + *  Thu May 14 20:58:29 CEST 2015 + *  Copyright 2015 Bent Bisballe Nyeng + *  deva@aasimon.org + ****************************************************************************/ + +/* + *  This file is part of DrumGizmo. + * + *  DrumGizmo is free software; you can redistribute it and/or modify + *  it under the terms of the GNU General Public License as published by + *  the Free Software Foundation; either version 2 of the License, or + *  (at your option) any later version. + * + *  DrumGizmo is distributed in the hope that it will be useful, + *  but WITHOUT ANY WARRANTY; without even the implied warranty of + *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + *  GNU General Public License for more details. + * + *  You should have received a copy of the GNU General Public License + *  along with DrumGizmo; if not, write to the Free Software + *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA. + */ +#include <cppunit/extensions/HelperMacros.h> + +#include <unistd.h> +#include <stdio.h> + +#include "../src/configfile.h" + +class TestConfigFile : public ConfigFile { +public: +  TestConfigFile() : ConfigFile("") {} + +protected: +  // Overload the built-in open method to use local file instead of homedir. +  virtual bool open(std::string mode) +  { +    fp = fopen("test.conf", mode.c_str()); +    return fp != NULL; +  } +}; + +class test_configtest : public CppUnit::TestFixture +{ +  CPPUNIT_TEST_SUITE(test_configtest); +	CPPUNIT_TEST(loading_no_newline); +	CPPUNIT_TEST(loading_equal_sign); +	CPPUNIT_TEST(loading_newline); +	CPPUNIT_TEST(loading_padding_space); +	CPPUNIT_TEST(loading_padding_space_newline); +	CPPUNIT_TEST(loading_padding_tab); +	CPPUNIT_TEST(loading_padding_tab_newline); +	CPPUNIT_TEST(loading_comment); +	CPPUNIT_TEST(loading_inline_comment); +	CPPUNIT_TEST(loading_single_quoted_string); +	CPPUNIT_TEST(loading_double_quoted_string); +	CPPUNIT_TEST(loading_error_no_key); +	CPPUNIT_TEST(loading_error_no_value); +	CPPUNIT_TEST(loading_error_string_not_terminated_single); +	CPPUNIT_TEST(loading_error_string_not_terminated_double); +	CPPUNIT_TEST_SUITE_END(); + +public: +	void setUp() +  { +  } + +	void tearDown() +  { +    unlink("test.conf"); +  } + +  void writeFile(const char* str) +  { +    FILE* fp = fopen("test.conf", "w"); +    fprintf(fp, "%s", str); +    fclose(fp); +  } + +  void loading_no_newline() +  { +    writeFile("a:b"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("b"), cf.getValue("a")); +	} + +  void loading_equal_sign() +  { +    writeFile(" a =\tb\t\n"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("b"), cf.getValue("a")); +	} + +  void loading_newline() +  { +    writeFile("a:b\n"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("b"), cf.getValue("a")); +	} + +  void loading_padding_space() +  { +    writeFile(" a : b "); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("b"), cf.getValue("a")); +	} + +  void loading_padding_tab() +  { +    writeFile("\ta\t:\tb\t"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("b"), cf.getValue("a")); +	} + +  void loading_padding_space_newline() +  { +    writeFile(" a : b \n"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("b"), cf.getValue("a")); +	} + +  void loading_padding_tab_newline() +  { +    writeFile("\ta\t:\tb\t\n"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("b"), cf.getValue("a")); +	} + +  void loading_comment() +  { +    writeFile("# comment\na:b\n"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("b"), cf.getValue("a")); +	} + +  void loading_inline_comment() +  { +    writeFile("a:b #comment\n"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("b"), cf.getValue("a")); +	} + +  void loading_single_quoted_string() +  { +    writeFile("a: '#\"b\" ' \n"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("#\"b\" "), cf.getValue("a")); +	} + +  void loading_double_quoted_string() +  { +    writeFile("a: \"#'b' \" \n"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(true, cf.load()); +    CPPUNIT_ASSERT_EQUAL(std::string("#'b' "), cf.getValue("a")); +	} + +  void loading_error_no_key() +  { +    writeFile(":foo"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(false, cf.load()); +	} + +  void loading_error_no_value() +  { +    writeFile("key"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(false, cf.load()); +	} + +  void loading_error_string_not_terminated_single() +  { +    writeFile("a:'b\n"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(false, cf.load()); +	} + +  void loading_error_string_not_terminated_double() +  { +    writeFile("a:\"b\n"); + +    TestConfigFile cf; +    CPPUNIT_ASSERT_EQUAL(false, cf.load()); +	} +}; + +// Registers the fixture into the 'registry' +CPPUNIT_TEST_SUITE_REGISTRATION(test_configtest); + + diff --git a/test/test.cc b/test/test.cc index 88c72e6..282062d 100644 --- a/test/test.cc +++ b/test/test.cc @@ -40,7 +40,7 @@ int main(int argc, char* argv[])    runner.addTest( suite );    std::ofstream myfile; -  myfile.open("result_"OUTPUT".xml"); +  myfile.open("result_" OUTPUT ".xml");    runner.setOutputter(new CppUnit::XmlOutputter(&runner.result(), myfile));    // Run the tests. | 
