mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 01:41:14 -06:00
07ace112af
Implements the role, privilege, permission, delegation and selfservice entities ui. Targetgroup has been added to the object types. The groups lists need to be filter. The filter is currently hidden, with a hyperlink that reads 'filter' to unhide it. Each keystroke in this filter performs an AJAX request to the server. There are bugs on the server side that block some of the functionality from completing Creating a Permission requires one of 4 target types. The add dialog in this version assumes the user will want to create a filter type. They can change this on the edit page. Most search results come back with the values as arrays, but ACIs seem not to. Search and details both required special code to handle non-arrays. The unit tests now make use of the 'module' aspect of QUnit. This means that future unit test will also need to specify the module. The advantage is that multiple tests can share a common setup and teardown. Bugs that need to be fixed before this works 100% are https://fedorahosted.org/freeipa/ticket/634 https://fedorahosted.org/freeipa/ticket/633
44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>IPA Test Suite</title>
|
|
<link rel="stylesheet" href="qunit.css" type="text/css" media="screen">
|
|
<style type="text/css">
|
|
#content {
|
|
font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
|
|
font-size: smaller;
|
|
|
|
border-bottom: 1px solid #fff;
|
|
padding: 0.5em 0.5em 0.5em 2.5em;
|
|
|
|
color: #2b81af;
|
|
background-color: #D2E0E6;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 id="qunit-header">IPA Test Suite</h1>
|
|
|
|
<h2 id="qunit-banner" class="qunit-pass"></h2>
|
|
|
|
<div id="content">
|
|
<a href="all_tests.html">Complete Test Suite</a>
|
|
<ul>
|
|
<li><a href="ipa_tests.html">Core Test Suite</a>
|
|
<li><a href="entity_tests.html">Entity Test Suite</a>
|
|
<li><a href="details_tests.html">Details Test Suite</a>
|
|
<li><a href="association_tests.html">Association Test Suite</a>
|
|
<li><a href="navigation_tests.html">Navigation Test Suite</a>
|
|
<li><a href="certificate_tests.html">Certificate Test Suite</a>
|
|
<li><a href="aci_tests.html">Access Control Interface Test Suite</a>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
<div id="qunit-testresult">
|
|
<br>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|