summaryrefslogtreecommitdiff
path: root/tests/test-map-c++.cc
blob: 4ecece2b673857c8c727890151adf192e4b835c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* Test of map data type implementation as a C++ class.
   Copyright (C) 2020-2023 Free Software Foundation, Inc.
   Written by Bruno Haible <bruno@clisp.org>, 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 <https://www.gnu.org/licenses/>.  */

#include <config.h>

#include "gl_map.hh"
#include "gl_array_map.h"

#include <string.h>

#include "macros.h"

static const int integers[6] = { 0, 1, 2, 3, 4, 5 };

static bool
streq (const char *str1, const char *str2)
{
  return strcmp (str1, str2) == 0;
}

int
main (int argc, char *argv[])
{
  gl_Map<const char *, const int *> map1;

  map1 = gl_Map<const char *, const int *> (GL_ARRAY_MAP, streq, NULL, 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_Map<const char *, const int *>::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, "one") == 0);
  ASSERT (*val == 1);
  ASSERT (iter1.next (key, val));
  ASSERT (strcmp (key, "two") == 0);
  ASSERT (*val == 2);
  ASSERT (iter1.next (key, val));
  ASSERT (strcmp (key, "three") == 0);
  ASSERT (*val == 3);
  ASSERT (iter1.next (key, val));
  ASSERT (strcmp (key, "four") == 0);
  ASSERT (*val == 4);
  ASSERT (!iter1.next (key, val));

  map1.free ();

  return 0;
}