r21688: Add simple tests for genrand
[Samba.git] / source / lib / util / tests / genrand.c
blob6160e1d1561d9abb7884cf82ab1a634a6b60bece
1 /*
2 Unix SMB/CIFS implementation.
4 local testing of random data routines.
6 Copyright (C) Jelmer Vernooij <jelmer@samba.org>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
24 #include "torture/torture.h"
26 static void dummy_reseed(int *d)
28 *d = 42;
31 static bool test_reseed_callback(struct torture_context *tctx)
33 set_rand_reseed_callback(dummy_reseed);
34 return true;
37 static bool test_check_password_quality(struct torture_context *tctx)
39 torture_assert(tctx, !check_password_quality(""), "empty password");
40 torture_assert(tctx, !check_password_quality("a"), "one char password");
41 torture_assert(tctx, !check_password_quality("aaaaaaaaaaaa"), "same char password");
42 torture_assert(tctx, !check_password_quality("BLA"), "multiple upcases password");
43 torture_assert(tctx, !check_password_quality("123"), "digits only");
44 torture_assert(tctx, check_password_quality("A2e"), "valid");
45 torture_assert(tctx, check_password_quality("BA2eLi443"), "valid");
46 return true;
49 static bool test_generate_random_str(struct torture_context *tctx)
51 TALLOC_CTX *mem_ctx = talloc_init(__FUNCTION__);
52 char *r = generate_random_str(mem_ctx, 10);
53 torture_assert_int_equal(tctx, strlen(r), 10, "right length generated");
54 r = generate_random_str(mem_ctx, 5);
55 torture_assert_int_equal(tctx, strlen(r), 5, "right length generated");
56 return true;
59 struct torture_suite *torture_local_genrand(TALLOC_CTX *mem_ctx)
61 struct torture_suite *suite = torture_suite_create(mem_ctx, "GENRAND");
62 torture_suite_add_simple_test(suite, "reseed_callback", test_reseed_callback);
63 torture_suite_add_simple_test(suite, "check_password_quality", test_check_password_quality);
64 torture_suite_add_simple_test(suite, "generate_random_str", test_generate_random_str);
65 return suite;