r16527: Add target argument for smbtorture.
[metze/samba/wip.git] / source4 / torture / local / torture.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    local testing of torture
5
6    Copyright (C) Jelmer Vernooij 2006
7    
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.
12    
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.
17    
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.
21 */
22
23 #include "includes.h"
24 #include "torture/torture.h"
25 #include "system/wait.h"
26 #include "torture/util.h"
27
28 static BOOL test_tempdir(struct torture_context *torture, 
29                                                            const void *_data)
30 {
31         char *location = NULL;
32         
33         torture_assert_ntstatus_ok(torture, torture_temp_dir(torture, "tempdir", &location), 
34                                                                 "torture_temp_dir should return NT_STATUS_OK" );
35
36         torture_assert(torture, directory_exist(location), 
37                                    "created dir doesn't exist");
38
39         return True;
40 }
41
42 static BOOL test_setup_server(struct torture_context *torture, 
43                                                            const void *_data)
44 {
45         pid_t pid;
46
47         torture_assert_ntstatus_ok(torture, torture_setup_server(torture, 
48                                                                         "setupserver-success",
49                                                                         "./script/tests/mktestsetup.sh",
50                                                                         "./bin/smbd", &pid),
51                                                            "starting smbd failed");
52
53         torture_assert(torture, pid > 0, "Pid invalid");
54
55         torture_comment(torture, "Created smbd with pid %d", pid);
56
57         kill(pid, SIGINT);
58
59         waitpid(pid, NULL, 0);
60
61         torture_assert_ntstatus_equal(torture, torture_setup_server(torture, 
62                                                                         "setupserver-fail",
63                                                                         "./invalid-script",
64                                                                         "./bin/smbd", &pid), 
65                                                                   NT_STATUS_UNSUCCESSFUL,
66                                                            "invalid script specified");
67
68         torture_assert(torture, pid == -1, "Pid not -1 after failure");
69
70         return True;
71 }
72
73 struct torture_suite *torture_local_torture(TALLOC_CTX *mem_ctx)
74 {
75         struct torture_suite *suite = torture_suite_create(mem_ctx, 
76                                                                                                            "LOCAL-TORTURE");
77
78         torture_suite_add_simple_tcase(suite, "tempdir", test_tempdir, NULL);
79         torture_suite_add_simple_tcase(suite, "setup server", test_setup_server, NULL);
80
81         return suite;
82 }