summaryrefslogtreecommitdiffstats
path: root/install/static/test/details_tests.js
blob: 1a7efc10bc8ce98f3445453f9fb8797399cda645 (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
/*  Authors:
 *    Adam Young <ayoung@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_details_create().", function() {

    var fields = [
        {name:'cn', label:'Entity Name'},
        {name:'description', label:'Description'},
        {name:'number', label:'Entity ID'}
    ];

    var sections = [
        {name:'identity', label:'Entity Details', fields:fields}
    ];

    var identity = sections[0];
    var key = 'entity';

    var container = $("<div/>",{id: key});
    ipa_details_create(container, sections);

    same(
        container[0].title, key,
        "Checking container name"
    );
    
    var dl = container.find('dl#identity');
    ok(
        dl,
        "Checking section"
    );

    same(
        dl[0].children.length, fields.length,
        "Checking fields"
    );

});


test("Testing  _ipa_create_text_input().", function(){

    var name = "name";
    var value="value";
    var input = _ipa_create_text_input(name, value);
    ok(input,"input not null");

    same(input[0].name,name );
    same(input[0].value,value );
    same(input[0].type,"text" );
});



test("Testing ipa_details_section_setup()",function(){

    var fields = [
        {name:'cn', label:'Entity Name'},
        {name:'description', label:'Description'},
        {name:'number', label:'Entity ID'}
    ];

    var section = {
        name: 'IDIDID',
        label: 'NAMENAMENAME',
        fields: fields
    };

    var container = $("<div title='entity'/>");
    var details = $("<div/>");
    container.append(details);

    ipa_details_section_setup(container, details, section);

    ok(container.find('hr'));

    var h2= container.find('h2');
    ok(h2);
    ok(h2[0].innerHTML.indexOf(section.label) > 1,"find name in html");

    var dl = container.find('dl');
    ok(dl);
    same(dl[0].children.length,3);
    same(dl[0].id, section.name);
    same(dl[0].children[0].title, fields[0].name);
    same(dl[0].children[0].innerHTML, fields[0].label+":");
    same(dl[0].children[2].title, fields[2].name);
    same(dl[0].children[2].innerHTML, fields[2].label+":");

});