summaryrefslogtreecommitdiffstats
path: root/install/static/test/entity_tests.js
blob: 08fc3111d0aeb365a530a0d60f157e06ffa036e8 (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
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/*  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; version 2 only
 *
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

test('Testing ipa_entity_set_search_definition().', function() {

    var uid_callback = function() {
        return true;
    };

    ipa_entity_set_search_definition('user', [
        ['uid', 'Login', uid_callback]
    ]);

    var facet = ipa_entity_get_search_facet('user');
    ok(
        facet,
        'ipa_entity_get_search_facet(\'user\') is not null'
    );

    var column = facet.get_columns()[0];
    ok(
        column,
        'column is not null'
    );

    equals(
        column.name, 'uid',
        'column.name'
    );

    equals(
        column.label, 'Login',
        'column.label'
    );

    ok(
        column.setup,
        'column.setup not null'
    );

    ok(
        column.setup(),
        'column.setup() works'
    );
});

test('Testing ipa_entity_generate_views().', function() {

    var orig_show_page = IPA.show_page;
    IPA.ajax_options.async = false;

    IPA.init(
        'data',
        true,
        function(data, text_status, xhr) {
            ok(true, 'ipa_init() succeeded.');
        },
        function(xhr, text_status, error_thrown) {
            ok(false, 'ipa_init() failed: '+error_thrown);
        }
    );

    var entity = ipa_entity({
        'name': 'user'
    });

    IPA.add_entity(entity);

    var facet = entity.create_association_facet({
        'name': 'associate'
    });

    var container = $('<div/>');

    var counter = 0;
    IPA.show_page = function(entity_name, facet_name, other_entity) {
        counter++;
    };

    facet.setup_views(container);

    var list = container.children();
    var views = list.children();

    equals(
        views.length, 4,
        'Checking number of views'
    );

    facet = views.first();
    var attribute_members = IPA.metadata['user'].attribute_members;
    for (attribute_member in attribute_members) {
        var objects = attribute_members[attribute_member];
        for (var i = 0; i < objects.length; i++) {
            var object = objects[i];

            equals(
                facet.attr('title'), object,
                'Checking the '+object+' facet'
            );

            facet.click();

            facet = facet.next();
        }
    }

    equals(
        counter, 4,
        'Checking callback invocations'
    );

    IPA.show_page = orig_show_page;
});

test('Testing ipa_entity_quick_links().', function() {

    var orig_push_state = nav_push_state;
    var orig_get_state = nav_get_state;
    var orig_remove_state = nav_remove_state;

    var state = {};

    nav_push_state = function(params) {
        $.extend(state, params);
    };
    nav_get_state = function(key) {
        return state[key];
    };
    nav_remove_state = function(key) {
        delete state[key];
    };

    IPA.ajax_options.async = false;

    IPA.init(
        'data',
        true,
        function(data, text_status, xhr) {
            ok(true, 'ipa_init() succeeded.');
        },
        function(xhr, text_status, error_thrown) {
            ok(false, 'ipa_init() failed: '+error_thrown);
        }
    );

    var obj_name = 'user';
    var pkey = IPA.metadata[obj_name].primary_key;
    var pkey_value = 'test';

    var entry_attrs = {};
    entry_attrs[pkey] =  [pkey_value];

    var container = $('<div/>', {
        title: obj_name,
        class: 'entity-container'
    });

    var search_table = $('<table/>', {
        class: 'search-table'
    }).appendTo(container);

    var tbody = $('<tbody/>').appendTo(search_table);
    var tr = $('<tr/>').appendTo(tbody);

    ipa_entity_quick_links(tr, null, null, entry_attrs);

    var td = tr.children().first();
    var link = td.children().first();

    equals(
        link.attr('href'), '#details',
        'Checking details link'
    );

    link.click();

    equals(
        state[obj_name+'-facet'], 'details',
        'Checking state[\''+obj_name+'-facet\']'
    );

    equals(
        state[obj_name+'-pkey'], pkey_value,
        'Checking state[\''+obj_name+'-pkey\']'
    );

    var attribute_members = IPA.metadata[obj_name].attribute_members;
    for (attr_name in attribute_members) {
        var objs = attribute_members[attr_name];
        for (var i = 0; i < objs.length; ++i) {
            var m = objs[i];

            link = link.next();

            equals(
                link.attr('href'), '#'+m,
                'Checking '+m+' link'
            );

            link.click();

            equals(
                state[obj_name+'-facet'], 'associate',
                'Checking state[\''+obj_name+'-facet\']'
            );

            equals(
                state[obj_name+'-enroll'], m,
                'Checking state[\''+obj_name+'-enroll\']'
            );

            equals(
                state[obj_name+'-pkey'], pkey_value,
                'Checking state[\''+obj_name+'-pkey\']'
            );
        }
    }

    nav_push_state = orig_push_state;
    nav_get_state = orig_get_state;
    nav_remove_state = orig_remove_state;
});