lib:crypto: Remove our implementation of AES GCM
[samba.git] / source4 / torture / local / local.c
index 73ee366dcd214db63ad27b87c3085d8e21f1a523..913daa39fbefb3d49e2e30401e9822fb3683d174 100644 (file)
 #include "includes.h"
 #include "torture/smbtorture.h"
 #include "torture/local/proto.h"
-#include "torture/ndr/ndr.h"
 #include "torture/ndr/proto.h"
 #include "torture/auth/proto.h"
 #include "../lib/crypto/test_proto.h"
+#ifndef HAVE_GNUTLS_AES_CMAC
+#include "../lib/crypto/aes_cmac_test_proto.h"
+#endif
 #include "lib/registry/tests/proto.h"
+#include "lib/replace/replace-testsuite.h"
 
 /* ignore me */ static struct torture_suite *
        (*suite_generators[]) (TALLOC_CTX *mem_ctx) =
 { 
        torture_local_binding_string, 
        torture_ntlmssp, 
+       torture_smbencrypt,
        torture_local_messaging, 
        torture_local_irpc, 
        torture_local_util_strlist, 
        torture_local_util_str, 
        torture_local_util_time, 
        torture_local_util_data_blob, 
+       torture_local_util_binsearch,
+       torture_local_util_asn1,
+       torture_local_util_anonymous_shared,
+       torture_local_util_strv,
+       torture_local_util_strv_util,
+       torture_local_util,
        torture_local_idtree, 
+       torture_local_dlinklist,
        torture_local_genrand, 
        torture_local_iconv,
        torture_local_socket, 
-       torture_local_socket_wrapper, 
-       torture_local_nss_wrapper,
        torture_pac, 
        torture_local_resolve,
        torture_local_sddl,
        torture_local_share,
        torture_local_loadparm,
        torture_local_charset,
+       torture_local_convert_string_handle,
+       torture_local_convert_string,
+       torture_local_string_case_handle,
+       torture_local_string_case,
        torture_local_compression,
        torture_local_event, 
+       torture_local_tevent_req,
        torture_local_torture,
        torture_local_dbspeed, 
        torture_local_credentials,
        torture_ldb,
+       torture_dsdb_dn,
+       torture_dsdb_syntax,
        torture_registry,
+       torture_local_verif_trailer,
+       torture_local_nss,
+       torture_local_fsrvp,
+       torture_local_util_str_escape,
+       torture_local_tfork,
+       torture_local_mdspkt,
        NULL
 };
 
-NTSTATUS torture_local_init(void)
+NTSTATUS torture_local_init(TALLOC_CTX *ctx)
 {
        int i;
        struct torture_suite *suite = torture_suite_create(
-               talloc_autofree_context(),
-               "LOCAL");
+               ctx, "local");
        
-       torture_suite_add_simple_test(suite, "TALLOC", torture_local_talloc);
-       torture_suite_add_simple_test(suite, "REPLACE", torture_local_replace);
+       torture_suite_add_simple_test(suite, "talloc", torture_local_talloc);
+       torture_suite_add_simple_test(suite, "replace", torture_local_replace);
        
        torture_suite_add_simple_test(suite, 
-                                     "CRYPTO-MD4", torture_local_crypto_md4);
-       torture_suite_add_simple_test(suite, "CRYPTO-MD5", 
-                                     torture_local_crypto_md5);
-       torture_suite_add_simple_test(suite, "CRYPTO-HMACMD5", 
-                                     torture_local_crypto_hmacmd5);
+                                     "crypto.md4", torture_local_crypto_md4);
+#ifndef HAVE_GNUTLS_AES_CMAC
+       torture_suite_add_simple_test(suite, "crypto.aes_cmac_128",
+                                     torture_local_crypto_aes_cmac_128);
+#endif
 
        for (i = 0; suite_generators[i]; i++)
                torture_suite_add_suite(suite,
-                                       suite_generators[i](talloc_autofree_context()));
+                                       suite_generators[i](ctx));
        
        suite->description = talloc_strdup(suite, 
                                           "Local, Samba-specific tests");
 
-       torture_register_suite(suite);
+       torture_register_suite(ctx, suite);
 
        return NT_STATUS_OK;
 }