summaryrefslogtreecommitdiff
path: root/src/tests
AgeCommit message (Collapse)AuthorFilesLines
2012-07-09heimdal: fix compile error in krb5-child-testRambaldi1-0/+4
2012-07-06AD: Add AD identity providerStephen Gallagher1-0/+109
This new identity provider takes advantage of existing code for the LDAP provider, but provides sensible defaults for operating against an Active Directory 2008 R2 or later server.
2012-06-29TESTS: Print messages when LDAP options do not matchStephen Gallagher1-2/+10
2012-06-26libcrypto fully implementedGeorge McCollister1-6/+40
Implemented working versions of the following functions for libcrypto: sss_base64_encode sss_base64_decode sss_hmac_sha1 sss_password_encrypt sss_password_decrypt test_encrypt_decrypt now expects EOK from libcrypto. test_hmac_sha1 now expects EOK from libcrypto. Added test_base64_encode to test base64 encoding implementation. Added test_base64_decode to test base64 decoding implementation. Signed-off-by: George McCollister <George.McCollister@gmail.com>
2012-06-21PAC responder: test suiteJan Zeleny1-0/+106
2012-06-15KRB5: Auto-detect DIR cache support in configureStephen Gallagher2-0/+7
We can't support the DIR cache features in systems with kerberos libraries older than 1.10. Make sure we don't build it on those systems.
2012-06-14Use Kerberos context in KRB5_DEBUGJakub Hrozek1-10/+4
Passing Kerberos context to sss_krb5_get_error_message will allow us to get better error messages.
2012-06-14Add support for storing credential caches in the DIR: back endJakub Hrozek2-17/+95
https://fedorahosted.org/sssd/ticket/974
2012-06-14Add a credential cache back end structureJakub Hrozek2-50/+32
To be able to add support for new credential cache types easily, this patch creates a new structure sss_krb5_cc_be that defines common operations with a credential cache, such as create, check if used or remove.
2012-06-14Add a krb5_child test toolJakub Hrozek1-0/+551
https://fedorahosted.org/sssd/ticket/1127
2012-06-08sss_idmap: fix typo which prevents sub auth larger then 2^31Sumit Bose1-0/+37
A test to cover this is added as well.
2012-06-08sss_idmap: add support for samba struct dom_sidSumit Bose1-2/+100
The samba ndr libraries use struct dom_sid to handle SIDs. Since there is no public samba library which offers conversion from other representations, e.g. as string, this is added to libsss_idmap. To avoid compile-time or run-time dependency to any samba library or header file the definition of the struct is copied here.
2012-06-04Fixed setting of debug level in test suiteJan Zeleny2-4/+2
2012-05-31Ghost members - various small changesJan Zeleny1-1/+1
2012-05-14Rename struct dom_sid to struct sss_dom_sidSumit Bose1-8/+8
To avoid conflicts with struct dom_sid used by samba the sss_ prefix is added to the struct used by libsss_idmap.
2012-05-11SYSDB: Handle user and group renames betterJakub Hrozek1-0/+143
Fixes a regression in the local domain tools where sss_groupadd no longer detected a GID duplicate. The check for EEXIST is moved one level up into more high level function. The patch also adds the same rename support for users. I found it odd that we allowed a rename of groups but not users. There is a catch when storing a user -- his cached password would be gone. I think that renaming a user is such a rare operation that it's not severe, plus there is a warning in the logs.
2012-05-04Fix endian issue in SID conversionSumit Bose1-1/+3
Since the byte-order is only important when dealing with the binary SID the sub-auth values are stored in host order and are only converted while reading or writing the binary SID.
2012-05-01Allow different SID representations in libidmapSumit Bose1-0/+206
Besides as strings it is now possible to use binary SIDs or a struct containing all SID information. Functions to convert between these formats are added as well.
2012-04-24UTIL: Add HMAC-SHA-1 functionJan Cholasta1-0/+36
2012-04-24Sysdb routines for subdomainsJan Zeleny1-0/+232
2012-04-20Test RFC2307bis and RFC2307 option mapsJakub Hrozek1-0/+28
https://fedorahosted.org/sssd/ticket/1281 Only user, group and autofs maps are different. Services and netgroups are using the same map.
2012-04-20Move atomic io function to a separate moduleJakub Hrozek1-9/+9
We'll be using it on various places of the SSSD. The function is in its own file to allow using just the one piece without having to drag in the whole util.c module.
2012-04-20sss_atomic_io: Do not fail reads with EPIPE if there is not enough data to readJakub Hrozek1-0/+206
Also adds a unit test for sss_atomic_io()
2012-03-29Return correct resolv_status on resolver timeoutJakub Hrozek1-11/+72
https://fedorahosted.org/sssd/ticket/1274
2012-03-28Remove old compatibility testsStephen Gallagher1-11/+1
These are now replaced by the more accurate tests. This patch also drops the runtime option-count check, since we are always performing the more complete check at build-time.
2012-03-28Add better tests for sdap_attr compabilityStephen Gallagher3-0/+69
2012-03-28Add better dp_option testsStephen Gallagher3-0/+49
2012-03-26Add idmap librarySumit Bose1-0/+231
2012-02-29Keep sysdb context in domain info structSumit Bose2-18/+6
2012-02-24Delete missing attributes from netgroups to be storedJan Zeleny1-1/+1
https://fedorahosted.org/sssd/ticket/1136
2012-02-07AUTOFS: IPA providerJakub Hrozek1-0/+2
2012-01-31IPA: Add support for services lookups (non-enum)Stephen Gallagher1-0/+1
2012-01-31SYSDB: extend sysdb_store_service() to accept additional attributesStephen Gallagher1-4/+4
2012-01-27SYSDB: Add indexes for servicePort and serviceProtocolStephen Gallagher1-0/+14
2012-01-27SYSDB: Add sysdb routines for manipulating service entriesStephen Gallagher1-0/+358
2012-01-09Add a random + identity test for murmurhash3Simo Sorce1-0/+29
This test always generate a random string so each time the test is run we will test the hash function with a new value. It also hashes the same string twice and compares the result so that we have a chance of catching if uninitialized variables are getting mixed into the value calculation and end up generating different results for the same input.
2012-01-09util: add murmurhash3 hash functionSimo Sorce1-0/+24
2012-01-04tests: fix test group of utf8 testsSimo Sorce1-5/+5
2011-12-21Honor case sensitive flag when creating the ccname templateJakub Hrozek1-7/+39
2011-12-19Securely set umask when using mkstempStephen Gallagher2-0/+12
Coverity 12394, 12395, 12396, 12397 and 12398
2011-12-16Use the case sensitivity flag in the simple access providerJakub Hrozek1-0/+30
2011-12-16sss_utf8_tolower utility function+unit testsJakub Hrozek1-0/+96
2011-11-02Fixes debug-tests.c coverity issues: NEGATIVE_RETURNS, FORWARD_NULLPavel Březina1-49/+140
https://fedorahosted.org/sssd/ticket/1046
2011-10-13SysDB commands that save lastUpdate allows this value to be passed inPavel Březina1-11/+11
https://fedorahosted.org/sssd/ticket/836
2011-10-13Add option to follow symlinks to check_file()Jakub Hrozek1-1/+28
2011-09-28Multiline macro cleanupJakub Hrozek2-2/+2
This is mostly a cosmetic patch. The purpose of wrapping a multi-line macro in a do { } while(0) is to make the macro usable as a regular statement, not a compound statement. When the while(0) is terminated with a semicolon, the do { } while(0); block becomes a compound statement again.
2011-09-08DEBUG timestamps offer higher precision - unit tests updatedPavel Březina1-14/+215
https://fedorahosted.org/sssd/ticket/956
2011-08-25New DEBUG facility - SSSDBG_UNRESOLVED changed from -1 to 0Pavel Březina12-19/+50
Removed: SSS_UNRESOLVED_DEBUG_LEVEL (completely replaced with SSSDBG_UNRESOLVED) Added new macro: CONVERT_AND_SET_DEBUG_LEVEL(new_value) Changes unresolved debug level value (SSSDBG_UNRESOLVED) from -1 to 0 so DEBUG macro could be reduced by one condition. Anyway, it has a minor effect, every time you want to load debug_level from command line parameters, you have to use following pattern: /* Set debug level to invalid value so we can deside if -d 0 was used. */ debug_level = SSSDBG_INVALID; pc = poptGetContext(argv[0], argc, argv, long_options, 0); while((opt = poptGetNextOpt(pc)) != -1) { ... } CONVERT_AND_SET_DEBUG_LEVEL(debug_level);
2011-08-25New DEBUG facility - unit testsPavel Březina1-0/+742
https://fedorahosted.org/sssd/ticket/925
2011-08-25New DEBUG facility - conversionPavel Březina12-6/+16
https://fedorahosted.org/sssd/ticket/925 Conversion of the old debug_level format to the new one. (only where it was necessary) Removed: SSS_DEFAULT_DEBUG_LEVEL (completely replaced with SSSDBG_DEFAULT)