summaryrefslogtreecommitdiff
path: root/server/tests
AgeCommit message (Collapse)AuthorFilesLines
2010-02-16Add test for number of options in IPA and LDAP backendsJakub Hrozek1-0/+59
2010-02-10Fix handling of the global context in the leak detectorSumit Bose2-1/+3
2010-02-10Send a message to the user if the login is delayedSumit Bose2-22/+41
2010-02-03Make krb5 and open checks work if forking is disabledSumit Bose2-1/+6
When CK_FORK is set to 'no' the fixtures are executed for every new test inside of the same process. Global variables must be set to the expected values by the fixtures. check_and_open-tests.c: the filename template for mkstemp() was a globally defined character string. After the first call to mkstemp() the trailing XXXXXX are substituted by random values, a second call to mkstemp() with this character string fails. This patch initialize the filename template before mkstemp() is called with the help of strdup() and the memory is freed in the teardown fixture. krb5_utils-tests.c: this patch sets the just freed global talloc context to NULL to make a consistency check in the setup fixture pass.
2010-02-03Make resolve and failover test work with CK_FORK=noSumit Bose4-6/+11
The leak checking code which is used by the resolve and failover tests frees talloc's autofree context which is not recommended. As a consequence the initialization of tevent failed when it was called by the second test and CF_FORK=no, because it holds some data in the autofree context. This patch introduces a global talloc context which should be uses by the test as the root of their memory hierarchy instead of NULL. This global context is used in the leak checking routines. Not all types of memory leaks can be detected by the new version , it is recommended to use valgrind or similar tools additionally.
2010-02-02Warn the user if authentication happens offlineSumit Bose1-6/+97
2010-02-02Add offline failed login counterSumit Bose1-0/+332
2010-02-02Check cache_credentials in sysdb_cache_auth_send()Sumit Bose1-0/+9
2010-01-22Handle IPv6 addresses with the async resolverStephen Gallagher1-5/+5
2010-01-20Add sysdb request to authenticate against a cached passwordSumit Bose1-0/+135
The code for authentication against a cached password is moved from the pam responder to a generic sysdb tevent request. The new code can be used by other components of sssd to verify passwords on their own. Tests for the sysdb_cache_password and sysdb_cache_auth request are added and some unneeded or unused code and variables are removed.
2010-01-14Explicitly set async DNS timeoutStephen Gallagher2-2/+2
We will allow 5s per DNS server, no retries.
2009-12-15Cleanup db files after test runSumit Bose1-2/+19
2009-12-09Change ares usage to be c-ares 1.7.0 compatibleJakub Hrozek1-14/+12
* Rename structure accordingly to ares upstream * Use new ares parsing functions in the wrappers * fix tests for ares 1.7
2009-12-07Add checks to test the memberuid handlingSumit Bose1-13/+495
2009-12-07Fix nested group membershipsSimo Sorce1-1/+1
Search the local db to find the local DN using the original DN as search key. This way we do not have to rely on weak and faulty heuristicts based on DN names. Add a few helper functions in the process and change the way we pass members to sysdb_store_group_send(), instead of passing users and groups list, just add member DNs to the other sysdb attrs.
2009-12-07Add sysdb_search_custom requestSumit Bose1-62/+110
2009-11-20Only display errors in unit testsStephen Gallagher10-11/+21
If you want to turn verbosity back on, just set the environment variable CK_VERBOSITY=verbose
2009-11-20Improve handling of ccache filesSumit Bose1-0/+124
- save current ccache file to sysdb - use the saved ccache file if the user has running processes - create an empty ccache if offline - return enviroment variables if offline
2009-11-18Make the sysdb user and group names case-sensitiveStephen Gallagher1-0/+39
2009-11-10Refactor delete functions and add a fewSimo Sorce1-19/+22
Refactor user/group delete functions so that they can be used without a transaction (they autostart an operation). Add user and group search function where a subfilter can be specified.
2009-11-09IPA time rules parsing routinesJakub Hrozek1-0/+579
2009-11-09Check return, zero free hostent, adhere to styleSimo Sorce1-4/+6
2009-11-06Add fail over utility functionsMartin Nagy1-0/+303
These functions should be used by providers to centrally manage lists of servers. Servers are grouped into services and each service has it's own list of servers. If, however, you will try to add a same server into two different services, they will share a common structure. This means that a host will only be resolved once.
2009-11-06Add simple reference counting wrappers for tallocMartin Nagy1-0/+231
2009-11-06Add missing include file to files-tests.cMartin Nagy1-0/+1
2009-11-06Always set last update and expire timeSimo Sorce1-2/+2
modifications to existing users/groups were setting metadata, but creation was not. Fixes #259
2009-11-04Add sysdb_attrs_replace_name to sysdb API.Sumit Bose1-0/+45
2009-11-02add sysdb_delete_recursive request to sysdb APISumit Bose1-4/+107
2009-10-30remove old sysdb file before starting testsSumit Bose1-0/+8
2009-10-30Fix compiler warnings in krb5_utils-tests.Sumit Bose1-21/+21
2009-10-29Allow sysdb_search_entry request to return more than one resultSumit Bose1-0/+112
2009-10-29added a ASQ search API for sysdbSumit Bose1-0/+126
2009-10-27Move responsibility for entry expiration timeoutSimo Sorce1-2/+2
The providers are now responsible for determining how long a cached entry is considered valid. The default is the same as before (600s)
2009-10-22User home directories managementJakub Hrozek2-6/+381
Create and populate user directories on useradd, delete them on userdel Fixes: #212
2009-10-22update krb5 option handling to new option schemeSumit Bose1-2/+16
2009-10-22add store/search/delete interface for custom sysdb objectsSumit Bose1-0/+367
2009-10-22Various improvements to the resolv test suiteMartin Nagy2-59/+222
* The resolv test case can now test for TXT and SRV resolving by specifying -t host and -s host respectively. The -n flag must still be passed in to enable network tests. * Added test for the little complicated resolv_copy_hostent() function. * Leak checking using the new tests common functions. * Fix indentation for test_internet, since the whole function was modified to be able to handle SRV and TXT replies. * Initialize the debug variable in main(). Also removed one unused variable in krb5_utils-tests.c
2009-10-22Add a new set of helpful common functions for testsMartin Nagy2-0/+123
The leak_check_setup() and leak_check_teardown() functions can be added to a test case with tcase_add_checked_fixture(). They will make sure that all tests are checked for memory leaks. However, since talloc is hierarchical and automatically frees the children, this will not catch all cases, but might still be helpful. The check_leaks(ctx, bytes) function takes a talloc context as an argument and the number of bytes it should be using up (children included). The total byte size used up by the context is determined by the talloc_total_size() function. If the size doesn't agree, check_leaks() will print out a talloc report on the context and makes the current test fail. The check_leaks_push() and check_leaks_pop() both take a talloc context as an argument. Every time push is called, the context is "pushed" onto an internal stack and it's current size is noted. When the context is later "poped", the pop function will make sure that the size is the same as when it was pushed. It will also check that it's not called out-of-order or if the stack isn't empty.
2009-10-05more documentation and test for sssd.confSumit Bose1-0/+29
- add a hint to the man page about permissions on sssd.conf - add a test if a symbolic link can be opened
2009-10-05add utility call check_and_open_readonlySumit Bose1-0/+184
Use this new utility call to ensure that the config file is safe to read from.
2009-10-01update sysdb tests to new config file versionSumit Bose1-12/+3
2009-09-21Provide python bindings for sysdbJakub Hrozek1-0/+391
Implement a set of python bindings for the sysdb with feature set similar to what is available in the tools. The primary consumers would be applications like system-config-users. Resolves: Ticket #102
2009-09-14add krb5ccache_dir and krb5ccname_template optionSumit Bose1-0/+292
The configuration options krb5ccache_dir and krb5ccname_template are added to the Kerberos provider to create the user's credential caches the same way as pam_krb5 does. Due to the design of the sssd and the supported ccache types of MIT Kerberos only files are allowed.
2009-09-11Complete the removal of "legacy" option.Simo Sorce1-3/+3
The code was still dependent on it for the ldap driver. Changed the driver code to depend on the schema type. Fix defaults for user and groups trees. ATM if you use the rfc2307bis schema you have to put users and groups in 2 separate trees (what people does by default anyway. If this limitation will turn to be too hard, we will change this later.
2009-09-11Add strtoint32 and strtouint32 testsStephen Gallagher1-0/+454
2009-09-10Remove unused event context argument from confdb_initStephen Gallagher1-1/+1
Because the confdb always operates synchronously, it maintains its own private event context internally. The event context argument passed to it is never used, so we'll remove it to avoid confusion.
2009-09-08Split database in multiple filesSimo Sorce1-80/+47
The special persistent local database retains the original name. All other backends now have their own cache-NAME.ldb file.
2009-08-27Remove redunant function and always pass attrs.Simo Sorce1-2/+3
2009-08-21Fix sysdb testsJakub Hrozek1-17/+62
2009-08-05Consolidate tevent helpersJakub Hrozek1-9/+0