<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sssd.git/src/tests, branch err_facility</title>
<subtitle>Experimental work on SSSD - Systen Security Services Daemon</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/'/>
<entry>
<title>krb5-utils-tests: remove invalid condition</title>
<updated>2013-03-13T12:28:06+00:00</updated>
<author>
<name>Pavel Březina</name>
<email>pbrezina@redhat.com</email>
</author>
<published>2013-03-13T10:51:18+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=ac821fee0289abce3d3afc2878e06341c33ff6b9'/>
<id>ac821fee0289abce3d3afc2878e06341c33ff6b9</id>
<content type='text'>
This condition is invalid because different_realm is not set, when
EINVAL is returned. It can make the test fail sometimes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This condition is invalid because different_realm is not set, when
EINVAL is returned. It can make the test fail sometimes.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix segfault in nss responder unit test</title>
<updated>2013-03-13T12:28:06+00:00</updated>
<author>
<name>Pavel Březina</name>
<email>pbrezina@redhat.com</email>
</author>
<published>2013-03-12T14:24:05+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=f51639d8e48e353402e5f649f2fac7ff3143dfbd'/>
<id>f51639d8e48e353402e5f649f2fac7ff3143dfbd</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/1833

state is expected to be a pointer
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/1833

state is expected to be a pointer
</pre>
</div>
</content>
</entry>
<entry>
<title>CMocka based test for the NSS responder</title>
<updated>2013-03-08T21:19:26+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2013-02-12T16:40:01+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=150b76e13b7c4f3ccf1d709bf517ca2af6b2c9a2'/>
<id>150b76e13b7c4f3ccf1d709bf517ca2af6b2c9a2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add utility functions for tests that use sysdb or tevent.</title>
<updated>2013-03-08T21:19:26+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2013-02-12T12:18:00+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=da33a9d7742d45975bd97d33dd8ad04a843e7656'/>
<id>da33a9d7742d45975bd97d33dd8ad04a843e7656</id>
<content type='text'>
There was shared code for several unit tests that connected to their own
sysdb instance. This patch adds common code to run a generic request to
completion or connect to a test sysdb.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There was shared code for several unit tests that connected to their own
sysdb instance. This patch adds common code to run a generic request to
completion or connect to a test sysdb.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use SSSD specific errors for offline auth</title>
<updated>2013-03-04T22:40:25+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2012-11-21T21:52:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=ab967283b710dfa05d11ee5b30c7ac916486ceec'/>
<id>ab967283b710dfa05d11ee5b30c7ac916486ceec</id>
<content type='text'>
This prevents reportin false errors when internal functions return
a generic EINVAL or EACCES that should just be treated as internal
errors.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This prevents reportin false errors when internal functions return
a generic EINVAL or EACCES that should just be treated as internal
errors.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change the way domains are linked.</title>
<updated>2013-02-10T21:08:47+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-15T01:30:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=bba1a5fd62cffcae076d1351df5a83fbc4a6ec17'/>
<id>bba1a5fd62cffcae076d1351df5a83fbc4a6ec17</id>
<content type='text'>
- Use a double-linked list for domains and subdomains.
- Never remove a subdomain, simply mark it as disabled if it becomes
  unused.
- Rework the way subdomains are refreshed.
  Now sysdb_update_subdomains() actually updates the current subdomains
  and marks as disabled the ones not found in the sysdb or add new ones
  found. It never removes them.
  Removal of missing domains from sysdb is deferred to the providers,
  which will perform it at refresh time, for the ipa provider that is
  done by ipa_subdomains_write_mappings() now.
  sysdb_update_subdomains() is then used to update the memory hierarchy
  of the subdomains.

- Removes sysdb_get_subdomains()
- Removes copy_subdomain()
- Add sysdb_subdomain_delete()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use a double-linked list for domains and subdomains.
- Never remove a subdomain, simply mark it as disabled if it becomes
  unused.
- Rework the way subdomains are refreshed.
  Now sysdb_update_subdomains() actually updates the current subdomains
  and marks as disabled the ones not found in the sysdb or add new ones
  found. It never removes them.
  Removal of missing domains from sysdb is deferred to the providers,
  which will perform it at refresh time, for the ipa provider that is
  done by ipa_subdomains_write_mappings() now.
  sysdb_update_subdomains() is then used to update the memory hierarchy
  of the subdomains.

- Removes sysdb_get_subdomains()
- Removes copy_subdomain()
- Add sysdb_subdomain_delete()
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove sysdb_subdom completely</title>
<updated>2013-02-10T21:08:47+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-14T21:47:51+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=95e94691178297f2b8225a83d43ae388cab04b45'/>
<id>95e94691178297f2b8225a83d43ae388cab04b45</id>
<content type='text'>
struct sss_domain_info is always used to represent domains now.
Adjust tests accordingly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
struct sss_domain_info is always used to represent domains now.
Adjust tests accordingly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid sysdb_subdom in sysdb_get_subdomains()</title>
<updated>2013-02-10T21:08:46+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-14T16:56:03+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=aab938c5975f0e3b85c7c79a5d718e5fefed7217'/>
<id>aab938c5975f0e3b85c7c79a5d718e5fefed7217</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add realm info to sss_domain_info</title>
<updated>2013-02-10T21:08:46+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-13T18:23:31+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=b8dcd1216e5ea7065213c750a92dabfe01fa3b70'/>
<id>b8dcd1216e5ea7065213c750a92dabfe01fa3b70</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TESTS: include error message on fail</title>
<updated>2013-01-29T15:11:18+00:00</updated>
<author>
<name>Ondrej Kos</name>
<email>okos@redhat.com</email>
</author>
<published>2013-01-22T14:10:31+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=c931d373501bff1d7386a6f7f5c955380d3a61ed'/>
<id>c931d373501bff1d7386a6f7f5c955380d3a61ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
