summaryrefslogtreecommitdiffstats
path: root/install/static/test/entity_tests.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2010-10-27 22:32:30 -0500
committerAdam Young <ayoung@redhat.com>2010-10-28 09:28:17 -0400
commit528145d5df30d4b344cd0edafa8e8adba0b817b1 (patch)
treebd5df2342bbf1144a484b0f39b70b906524cf9b1 /install/static/test/entity_tests.js
parent70a57924c8e265df1e97b7f0be1adf8da802fbfd (diff)
downloadfreeipa-528145d5df30d4b344cd0edafa8e8adba0b817b1.tar.gz
freeipa-528145d5df30d4b344cd0edafa8e8adba0b817b1.tar.xz
freeipa-528145d5df30d4b344cd0edafa8e8adba0b817b1.zip
Framework for custom UI
This patch introduces a new framework for implementing custom UI. It consists of the following classes: Main: - IPA: global namespace and object repository - ipa_entity: base class for entities - ipa_facet: base class for facets Add dialog: - ipa_add_dialog: default add dialog - ipa_add_field: the fields used in the dialog Search facet: - ipa_search_facet: default search facet - ipa_search_column: the columns in the search result Details facet: - ipa_details_facet: default details facet - ipa_details_section: the sections in the details facet - ipa_details_field: the fields in the details facet Association facet: - ipa_association_facet: default association facet - ipa_association_config: the association configurations To use this framework, create a class extending the ipa_entity (e.g. ipa_hbac). Use the create_* methods to create add dialog, search facet, details facet, and association facet. The fields/columns for the dialog and facets can be specified using the init() function. Custom UI can be defined by overwriting the base methods (e.g. setup, save, load). The entity must be added into the repository using IPA.add_entity(). The original ipa_entity_setup() has been generalized by moving facet- specific codes into the corresponding facet. Some facet names are still hard-coded. This will be fixed in follow-up patches. Some global variables have been removed because their function has been replaced by the object repository: - ipa_entity_add_list - ipa_entity_search_list - ipa_entity_details_list - window_hash_cache Some functions and variables have been moved into IPA namespace: - ipa_json_url -> IPA.json_url - ipa_use_static_files -> IPA.use_static_files - ipa_ajax_options -> IPA.ajax_options - ipa_objs -> IPA.metadata - ipa_messages -> IPA.messages - ipa_dialog -> IPA.error_dialog - ipa_init() -> IPA.init() Initially the HBAC and Service entities have been rewritten to use the new framework. The DNS is partially converted, the ipa_records_facet is used to define custom records facet. Other entities can still work using the old framework. The old framework has been modified to be a wrapper for the new framework. Eventually all entities will be converted to use the new framework. Some unit tests have been modified to use the new framework.
Diffstat (limited to 'install/static/test/entity_tests.js')
-rw-r--r--install/static/test/entity_tests.js160
1 files changed, 77 insertions, 83 deletions
diff --git a/install/static/test/entity_tests.js b/install/static/test/entity_tests.js
index 09967c2c5..cc43b8798 100644
--- a/install/static/test/entity_tests.js
+++ b/install/static/test/entity_tests.js
@@ -18,110 +18,102 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-test("Testing ipa_entity_set_search_definition().", function() {
+test('Testing ipa_entity_set_search_definition().', function() {
var uid_callback = function() {
return true;
};
- ipa_entity_set_search_definition("user", [
- ["uid", "Login", uid_callback],
+ ipa_entity_set_search_definition('user', [
+ ['uid', 'Login', uid_callback]
]);
- var list = ipa_entity_search_list["user"];
+ var facet = ipa_entity_get_search_facet('user');
ok(
- list,
- "ipa_entity_search_list[\"user\"] is not null"
+ facet,
+ 'ipa_entity_get_search_facet(\'user\') is not null'
);
- var attr = list[0];
+ var column = facet.get_columns()[0];
ok(
- attr,
- "ipa_entity_search_list[\"user\"][0] is not null"
+ column,
+ 'column is not null'
);
equals(
- attr[0], "uid",
- "ipa_entity_search_list[\"user\"][0][0]"
+ column.name, 'uid',
+ 'column.name'
);
equals(
- attr[1], "Login",
- "ipa_entity_search_list[\"user\"][0][1]"
+ column.label, 'Login',
+ 'column.label'
);
- var callback = attr[2];
ok(
- callback,
- "ipa_entity_search_list[\"user\"][0][2] not null"
+ column.setup,
+ 'column.setup not null'
);
ok(
- callback(),
- "ipa_entity_search_list[\"user\"][0][2]() works"
+ column.setup(),
+ 'column.setup() works'
);
});
-test("Testing ipa_entity_generate_views().", function() {
+test('Testing ipa_entity_generate_views().', function() {
- ipa_ajax_options["async"] = false;
+ var orig_show_page = IPA.show_page;
+ IPA.ajax_options.async = false;
- ipa_init(
- "data",
+ IPA.init(
+ 'data',
true,
function(data, text_status, xhr) {
- ok(true, "ipa_init() succeeded.");
+ ok(true, 'ipa_init() succeeded.');
},
function(xhr, text_status, error_thrown) {
- ok(false, "ipa_init() failed: "+error_thrown);
+ ok(false, 'ipa_init() failed: '+error_thrown);
}
);
- var container = $("<div/>");
+ var entity = ipa_entity({
+ 'name': 'user'
+ });
+
+ IPA.add_entity(entity);
+
+ var facet = entity.create_association_facet({
+ 'name': 'associate'
+ });
+
+ var container = $('<div/>');
var counter = 0;
- var callback = function() {
+ IPA.show_page = function(entity_name, facet_name, other_entity) {
counter++;
};
- ipa_entity_generate_views("user", container, callback);
+ facet.setup_views(container);
var list = container.children();
- var facets = list.children();
-
- equals(
- facets.length, 6,
- "Checking number of facets"
- )
-
- var search = facets.first();
+ var views = list.children();
equals(
- search.attr("title"), "search",
- "Checking the search facet"
- )
-
- search.click();
-
- var details = search.next();
-
- equals(
- details.attr("title"), "details",
- "Checking the details facet"
- )
-
- details.click();
+ views.length, 4,
+ 'Checking number of views'
+ );
- var facet = details.next();
- var attribute_members = ipa_objs["user"].attribute_members;
+ 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.attr('title'), object,
+ 'Checking the '+object+' facet'
);
facet.click();
@@ -131,12 +123,14 @@ test("Testing ipa_entity_generate_views().", function() {
}
equals(
- counter, 6,
- "Checking callback invocations"
+ counter, 4,
+ 'Checking callback invocations'
);
+
+ IPA.show_page = orig_show_page;
});
-test("Testing ipa_entity_quick_links().", function() {
+test('Testing ipa_entity_quick_links().', function() {
var orig_push_state = nav_push_state;
var orig_get_state = nav_get_state;
@@ -154,37 +148,37 @@ test("Testing ipa_entity_quick_links().", function() {
delete state[key];
};
- ipa_ajax_options["async"] = false;
+ IPA.ajax_options.async = false;
- ipa_init(
- "data",
+ IPA.init(
+ 'data',
true,
function(data, text_status, xhr) {
- ok(true, "ipa_init() succeeded.");
+ ok(true, 'ipa_init() succeeded.');
},
function(xhr, text_status, error_thrown) {
- ok(false, "ipa_init() failed: "+error_thrown);
+ ok(false, 'ipa_init() failed: '+error_thrown);
}
);
- var obj_name = "user";
- var pkey = ipa_objs[obj_name].primary_key;
- var pkey_value = "test";
+ 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/>", {
+ var container = $('<div/>', {
title: obj_name,
- class: "search-container"
+ class: 'search-container'
});
var search_table = $('<table/>', {
class: 'search-table'
}).appendTo(container);
- var tbody = $("<tbody/>").appendTo(search_table);
- var tr = $("<tr/>").appendTo(tbody);
+ var tbody = $('<tbody/>').appendTo(search_table);
+ var tr = $('<tr/>').appendTo(tbody);
ipa_entity_quick_links(tr, null, null, entry_attrs);
@@ -192,23 +186,23 @@ test("Testing ipa_entity_quick_links().", function() {
var link = td.children().first();
equals(
- link.attr("href"), "#details",
- "Checking details link"
+ link.attr('href'), '#details',
+ 'Checking details link'
);
link.click();
equals(
- state[obj_name+"-facet"], "details",
- "Checking state[\""+obj_name+"-facet\"]"
+ state[obj_name+'-facet'], 'details',
+ 'Checking state[\''+obj_name+'-facet\']'
);
equals(
- state[obj_name+"-pkey"], pkey_value,
- "Checking state[\""+obj_name+"-pkey\"]"
+ state[obj_name+'-pkey'], pkey_value,
+ 'Checking state[\''+obj_name+'-pkey\']'
);
- var attribute_members = ipa_objs[obj_name].attribute_members;
+ 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) {
@@ -217,25 +211,25 @@ test("Testing ipa_entity_quick_links().", function() {
link = link.next();
equals(
- link.attr("href"), "#"+m,
- "Checking "+m+" link"
+ link.attr('href'), '#'+m,
+ 'Checking '+m+' link'
);
link.click();
equals(
- state[obj_name+"-facet"], "associate",
- "Checking state[\""+obj_name+"-facet\"]"
+ state[obj_name+'-facet'], 'associate',
+ 'Checking state[\''+obj_name+'-facet\']'
);
equals(
- state[obj_name+"-enroll"], m,
- "Checking state[\""+obj_name+"-enroll\"]"
+ state[obj_name+'-enroll'], m,
+ 'Checking state[\''+obj_name+'-enroll\']'
);
equals(
- state[obj_name+"-pkey"], pkey_value,
- "Checking state[\""+obj_name+"-pkey\"]"
+ state[obj_name+'-pkey'], pkey_value,
+ 'Checking state[\''+obj_name+'-pkey\']'
);
}
}