/* Authors: * Adam Young * * 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 . */ var details_container; module('details', { setup: function() { IPA.ajax_options.async = false; IPA.init( "data", true, function(data, text_status, xhr) { IPA.metadata = data.result.results[0]; IPA.messages = data.result.results[1].messages; IPA.whoami = data.result.results[2].result[0]; IPA.env = data.result.results[3].result; IPA.dns_enabled = data.result.results[4].result; }, function(xhr, text_status, error_thrown) { ok(false, "ipa_init() failed: "+error_thrown); } ); details_container = $('
').appendTo(document.body); var obj_name = 'user'; IPA.entity_factories.user= function(){ return IPA.entity({name:obj_name}); }; IPA.start_entities(); }, teardown: function() { details_container.remove(); } }); test("Testing IPA.details_section.create().", function() { var section = IPA.details_list_section({ name:'IDIDID', label:'NAMENAMENAME'}). text({name:'cn'}). text({name:'uid'}). text({name:'mail'}); section.entity_name = 'user'; section.init(); var fields = section.fields; var container = $("
"); section.create(container); var dl = $('dl', container); same( dl.length, 1, 'Checking dl tag' ); same( dl.attr('id'), section.name, 'Checking section name' ); var dts = $('dt', dl); same( dts.length, fields.length, // each field generates dt & dd 'Checking number of children' ); for (var i=0; i"); var details = $("
"); container.append(details); var result = {}; section.create(container); section.setup(container); section.load(result); //var h2= container.find('h2'); //ok(h2); //ok(h2[0].innerHTML.indexOf(section.label) > 1,"find name in html"); var dl = $('dl', container); ok( dl.length, 'dl is created' ); same( dl[0].id, section.name, 'checking section name' ); var dt = $('dt', dl); same( dt.length, 3, '3 dt' ); same( dt[0].innerHTML, fields[0].label+":", 'inner HTML matches label' ); var dd = $('dd', dl); same( dd.length, 3, '3 dd' ); var span = $('span[name="cn"]', dd[0]); same( span.length, 1, '1 span' ); });