>From f304938084333321882a1050ea55048a04f17781 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 2 Feb 2020 19:08:15 +0100 Subject: [PATCH 10/11] omap-c++: Add tests. * tests/test-omap-c++.cc: New file. * modules/omap-c++-tests: New file. --- ChangeLog | 4 +++ modules/omap-c++-tests | 17 +++++++++++++ tests/test-omap-c++.cc | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 89 insertions(+) create mode 100644 modules/omap-c++-tests create mode 100644 tests/test-omap-c++.cc diff --git a/ChangeLog b/ChangeLog index 3b2616e..05f0dcc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2020-02-02 Bruno Haible + omap-c++: Add tests. + * tests/test-omap-c++.cc: New file. + * modules/omap-c++-tests: New file. + omap-c++: New module. * lib/gl_omap.hh: New file, based on lib/gl_omap.h. * modules/omap-c++: New file. diff --git a/modules/omap-c++-tests b/modules/omap-c++-tests new file mode 100644 index 0000000..1f723dd --- /dev/null +++ b/modules/omap-c++-tests @@ -0,0 +1,17 @@ +Files: +tests/test-omap-c++.cc +tests/macros.h + +Depends-on: +ansi-c++-opt +array-omap + +configure.ac: + +Makefile.am: +if ANSICXX +TESTS += test-omap-c++ +check_PROGRAMS += test-omap-c++ +test_omap_c___SOURCES = test-omap-c++.cc +test_omap_c___LDADD = $(LDADD) @LIBINTL@ +endif diff --git a/tests/test-omap-c++.cc b/tests/test-omap-c++.cc new file mode 100644 index 0000000..7d3b061 --- /dev/null +++ b/tests/test-omap-c++.cc @@ -0,0 +1,68 @@ +/* Test of ordered map data type implementation as a C++ class. + Copyright (C) 2020 Free Software Foundation, Inc. + Written by Bruno Haible , 2020. + + This program 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 3 of the License, or + (at your option) any later version. + + This program 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 this program. If not, see . */ + +#include + +#include "gl_omap.hh" +#include "gl_array_omap.h" + +#include + +#include "macros.h" + +static const int integers[6] = { 0, 1, 2, 3, 4, 5 }; + +int +main (int argc, char *argv[]) +{ + gl_OMap map1; + + map1 = gl_OMap (GL_ARRAY_OMAP, strcmp, NULL, NULL); + map1.put ("five", integers); + map1.put ("one", integers + 1); + map1.put ("two", integers + 2); + map1.put ("three", integers + 3); + map1.put ("four", integers + 4); + map1.put ("five", integers + 5); + ASSERT (map1.size () == 5); + + ASSERT (map1.get ("two")[0] == 2); + + gl_OMap::iterator iter1 = map1.begin (); + const char *key; + const int *val; + ASSERT (iter1.next (key, val)); + ASSERT (strcmp (key, "five") == 0); + ASSERT (*val == 5); + ASSERT (iter1.next (key, val)); + ASSERT (strcmp (key, "four") == 0); + ASSERT (*val == 4); + ASSERT (iter1.next (key, val)); + ASSERT (strcmp (key, "one") == 0); + ASSERT (*val == 1); + ASSERT (iter1.next (key, val)); + ASSERT (strcmp (key, "three") == 0); + ASSERT (*val == 3); + ASSERT (iter1.next (key, val)); + ASSERT (strcmp (key, "two") == 0); + ASSERT (*val == 2); + ASSERT (!iter1.next (key, val)); + + map1.free (); + + return 0; +} -- 2.7.4