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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
/* testmultimap.vala
*
* Copyright (C) 2008 Jürg Billeter
* Copyright (C) 2009 Didier Villevalois, Julien Peeters
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library 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
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author:
* Jürg Billeter <j@bitron.ch>
* Didier 'Ptitjes' Villevalois <ptitjes@free.fr>
* Julien Peeters <contact@julienpeeters.fr>
*/
using GLib;
using Gee;
public abstract class MultiMapTests : Gee.TestCase {
public MultiMapTests (string name) {
base (name);
add_test ("[MultiMap] size", test_size);
add_test ("[MultiMap] getting and setting", test_getting_setting);
add_test ("[MultiMap] keys, all keys and values", test_keys_all_keys_values);
}
protected MultiMap<string,string> test_multi_map;
private void test_size () {
// Check the map exists
assert (test_multi_map != null);
assert (test_multi_map.size == 0);
test_multi_map.set ("0", "0");
assert (test_multi_map.size == 1);
test_multi_map.set ("0", "1");
assert (test_multi_map.size == 2);
test_multi_map.remove ("0", "1");
assert (test_multi_map.size == 1);
test_multi_map.set ("0", "1");
test_multi_map.remove_all ("0");
assert (test_multi_map.size == 0);
test_multi_map.set ("0", "0");
assert (test_multi_map.size == 1);
test_multi_map.set ("1", "1");
assert (test_multi_map.size == 2);
}
private void test_getting_setting () {
// Check the map exists
assert (test_multi_map != null);
test_multi_map.set ("0", "0");
assert (test_multi_map.contains ("0"));
assert (test_multi_map.get ("0").size == 1);
assert (test_multi_map.get ("0").contains ("0"));
assert (test_multi_map.get ("1").size == 0);
test_multi_map.set ("0", "1");
assert (test_multi_map.get ("0").size == 2);
assert (test_multi_map.get ("0").contains ("0"));
assert (test_multi_map.get ("0").contains ("1"));
test_multi_map.set ("1", "1");
assert (test_multi_map.contains ("1"));
assert (test_multi_map.get ("0").size == 2);
assert (test_multi_map.get ("0").contains ("0"));
assert (test_multi_map.get ("0").contains ("1"));
assert (test_multi_map.get ("1").size == 1);
assert (test_multi_map.get ("0").contains ("1"));
// Check remove if bindings exist
assert (test_multi_map.remove ("0", "0"));
assert (test_multi_map.contains ("0"));
assert (! test_multi_map.get ("0").contains ("0"));
assert (test_multi_map.get ("0").contains ("1"));
assert (test_multi_map.contains ("1"));
assert (test_multi_map.get ("1").contains ("1"));
// Check remove if only one binding exists
assert (test_multi_map.remove ("0", "1"));
assert (! test_multi_map.contains ("0"));
assert (! test_multi_map.get ("0").contains ("0"));
assert (! test_multi_map.get ("0").contains ("1"));
assert (test_multi_map.contains ("1"));
assert (test_multi_map.get ("1").contains ("1"));
// Check remove if no binding exists
assert (! test_multi_map.remove ("0", "1"));
assert (! test_multi_map.contains ("0"));
assert (! test_multi_map.get ("0").contains ("0"));
assert (! test_multi_map.get ("0").contains ("1"));
assert (test_multi_map.contains ("1"));
assert (test_multi_map.get ("1").contains ("1"));
test_multi_map.clear ();
assert (! test_multi_map.contains ("0"));
assert (! test_multi_map.contains ("1"));
// Check remove_all
test_multi_map.set ("0", "0");
test_multi_map.set ("0", "1");
test_multi_map.set ("1", "1");
assert (test_multi_map.size == 3);
assert (test_multi_map.contains ("0"));
assert (test_multi_map.contains ("1"));
assert (test_multi_map.get ("0").size == 2);
assert (test_multi_map.get ("0").contains ("0"));
assert (test_multi_map.get ("0").contains ("1"));
assert (test_multi_map.get ("1").size == 1);
assert (test_multi_map.get ("0").contains ("1"));
// Check remove_all if bindings exist
assert (test_multi_map.remove_all ("0"));
assert (! test_multi_map.contains ("0"));
assert (! test_multi_map.get ("0").contains ("0"));
assert (! test_multi_map.get ("0").contains ("1"));
assert (test_multi_map.contains ("1"));
assert (test_multi_map.get ("1").contains ("1"));
// Check remove_all if no binding exists
assert (! test_multi_map.remove_all ("0"));
assert (! test_multi_map.contains ("0"));
assert (! test_multi_map.get ("0").contains ("0"));
assert (! test_multi_map.get ("0").contains ("1"));
assert (test_multi_map.contains ("1"));
assert (test_multi_map.get ("1").contains ("1"));
}
private void test_keys_all_keys_values () {
// Check the map exists
assert (test_multi_map != null);
test_multi_map.set ("0", "0");
test_multi_map.set ("0", "1");
test_multi_map.set ("1", "1");
// Check for keys, all_keys and values
Set<string> keys = test_multi_map.get_keys ();
MultiSet<string> all_keys = test_multi_map.get_all_keys ();
Collection<string> values = test_multi_map.get_values ();
assert (keys.contains ("0"));
assert (keys.contains ("1"));
assert (all_keys.count ("0") == 2);
assert (all_keys.count ("1") == 1);
assert (values.contains ("0"));
assert (values.contains ("1"));
bool zero_found = false;
bool zero_found_once = true;
bool one_found = false;
bool one_found_twice = false;
bool nothing_more = true;
foreach (string value in values) {
if (value == "0") {
if (zero_found) {
zero_found_once = false;
}
zero_found = true;
} else if (value == "1") {
if (one_found) {
if (one_found_twice) {
one_found_twice = false;
} else {
one_found_twice = true;
}
}
one_found = true;
} else {
nothing_more = false;
}
}
assert (zero_found);
assert (zero_found_once);
assert (one_found);
assert (one_found_twice);
assert (nothing_more);
}
}
|