summaryrefslogtreecommitdiffstats
path: root/install/ui/test/ordered_map_tests.js
blob: f3d2d5b36aebea5ff3f4e7b6ddadb30a155b1156 (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
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
/*  Authors:
 *    Endi Sukma Dewata <edewata@redhat.com>
 *
 * Copyright (C) 2010 Red Hat
 * see file 'COPYING' for use and warranty information
 *
 * 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 <http://www.gnu.org/licenses/>.
 */

define(['freeipa/jquery'], function($) {
    return function() {

module('ordered_map');

test("Testing $.ordered_map constructor.", function() {

    var test = $.ordered_map();

    strictEqual(test.length, 0, "Checking length.");
    deepEqual(test.keys, [], "Checking keys.");
    deepEqual(test.values, [], "Checking values.");
    deepEqual(test.map, {}, "Checking map.");
});

test("Testing $.ordered_map.put().", function() {

    var test = $.ordered_map();

    var key1 = 'key1';
    var value1 = 'value1';

    var key2 = 'key2';
    var value2 = 'value2';

    var key3 = 'key3';
    var value3 = 'value3';

    var key4 = 'key4';
    var value4 = 'value4';

    var key5 = 'key5';
    var value5 = 'value5';

    var key6 = 'key6';
    var value6 = 'value6';

    var key7 = 'key7';
    var value7 = 'value7';

    var key8 = 'key8';
    var value8 = 'value8';

    var map = {};
    map[key1] = value1;
    map[key2] = value2;
    map[key3] = value3;
    map[key4] = value4;
    map[key5] = value5;
    map[key6] = value6;
    map[key7] = value7;
    map[key8] = value8;

    test.put(key1, value1);
    test.put(key2, value2);

    test.put(key3, value3, 1); //put before key2
    test.put(key4, value4, 0); //put at beginning
    test.put(key5, value5, -2); //put at beginning
    test.put(key6, value6, 5); //put at end
    test.put(key7, value7, 100); //put at end
    test.put(key8, value8, 'foobar'); //put at end

    strictEqual(test.length, 8, 'Checking length.');
    deepEqual(test.keys, [key5, key4, key1, key3, key2, key6, key7, key8], 'Checking keys.');
    deepEqual(test.values, [value5, value4, value1, value3, value2, value6, value7, value8], 'Checking values.');
    deepEqual(test.map, map, 'Checking map.');
});

test("Testing $.ordered_map.get().", function() {

    var test = $.ordered_map();

    var key1 = 'key1';
    var value1 = 'value1';

    var key2 = 'key2';
    var value2 = 'value2';

    var map = {};
    map[key1] = value1;
    map[key2] = value2;

    test.put(key1, value1);
    test.put(key2, value2);

    var result1 = test.get(key1);
    var result2 = test.get(key2);

    strictEqual(test.length, 2, 'Checking length.');
    deepEqual(test.keys, [key1, key2], 'Checking keys.');
    deepEqual(test.values, [value1, value2], 'Checking values.');
    deepEqual(test.map, map, 'Checking map.');
    strictEqual(result1, value1, 'Checking result 1.');
    strictEqual(result2, value2, 'Checking result 2.');
});

test("Testing $.ordered_map.remove().", function() {

    var test = $.ordered_map();

    var key1 = 'key1';
    var value1 = 'value1';

    var key2 = 'key2';
    var value2 = 'value2';

    var map = {};
    map[key2] = value2;

    test.put(key1, value1);
    test.put(key2, value2);

    var result1 = test.remove(key1);

    strictEqual(test.length, 1, 'Checking length.');
    deepEqual(test.keys, [key2], 'Checking keys.');
    deepEqual(test.values, [value2], 'Checking values.');
    deepEqual(test.map, map, 'Checking map.');
    strictEqual(result1, value1, 'Checking result.');
});

test("Testing $.ordered_map.empty().", function() {

    var test = $.ordered_map();

    var key1 = 'key1';
    var value1 = 'value1';

    var key2 = 'key2';
    var value2 = 'value2';

    test.put(key1, value1);
    test.put(key2, value2);

    test.empty();

    strictEqual(test.length, 0, 'Checking length.');
    deepEqual(test.keys, [], 'Checking keys.');
    deepEqual(test.values, [], 'Checking values.');
    deepEqual(test.map, {}, 'Checking map.');
});

};});