s3:torture:delete: really fail the test in a failure case
[kai/samba.git] / source3 / torture / test_dbwrap_watch.c
1 /*
2    Unix SMB/CIFS implementation.
3    Test dbwrap_watch API
4    Copyright (C) Volker Lendecke 2012
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21 #include "torture/proto.h"
22 #include "system/filesys.h"
23 #include "lib/dbwrap/dbwrap.h"
24 #include "lib/dbwrap/dbwrap_open.h"
25 #include "lib/dbwrap/dbwrap_watch.h"
26 #include "lib/util/util_tdb.h"
27
28 bool run_dbwrap_watch1(int dummy)
29 {
30         struct tevent_context *ev = NULL;
31         struct messaging_context *msg = NULL;
32         struct db_context *db = NULL;
33         const char *keystr = "key";
34         TDB_DATA key = string_term_tdb_data(keystr);
35         struct db_record *rec = NULL;
36         struct tevent_req *req = NULL;
37         NTSTATUS status;
38         bool ret = false;
39
40         ev = tevent_context_init(talloc_tos());
41         if (ev == NULL) {
42                 fprintf(stderr, "tevent_context_init failed\n");
43                 goto fail;
44         }
45         msg = messaging_init(ev, ev);
46         if (msg == NULL) {
47                 fprintf(stderr, "messaging_init failed\n");
48                 goto fail;
49         }
50         db = db_open(msg, "test_watch.tdb", 0, TDB_DEFAULT,
51                      O_CREAT|O_RDWR, 0644, DBWRAP_LOCK_ORDER_1);
52         if (db == NULL) {
53                 fprintf(stderr, "db_open failed: %s\n", strerror(errno));
54                 goto fail;
55         }
56         dbwrap_watch_db(db, msg);
57         rec = dbwrap_fetch_locked(db, db, key);
58         if (rec == NULL) {
59                 fprintf(stderr, "dbwrap_fetch_locked failed\n");
60                 goto fail;
61         }
62         req = dbwrap_record_watch_send(talloc_tos(), ev, rec, msg);
63         if (req == NULL) {
64                 fprintf(stderr, "dbwrap_record_watch_send failed\n");
65                 goto fail;
66         }
67         TALLOC_FREE(rec);
68
69         status = dbwrap_store_int32_bystring(db, keystr, 1);
70         if (!NT_STATUS_IS_OK(status)) {
71                 fprintf(stderr, "dbwrap_store_int32 failed: %s\n",
72                         nt_errstr(status));
73                 goto fail;
74         }
75
76         if (!tevent_req_poll(req, ev)) {
77                 fprintf(stderr, "tevent_req_poll failed\n");
78                 goto fail;
79         }
80
81         status = dbwrap_record_watch_recv(req, talloc_tos(), &rec);
82         if (!NT_STATUS_IS_OK(status)) {
83                 fprintf(stderr, "dbwrap_record_watch_recv failed: %s\n",
84                         nt_errstr(status));
85                 goto fail;
86         }
87
88         ret = true;
89 fail:
90         TALLOC_FREE(req);
91         TALLOC_FREE(rec);
92         TALLOC_FREE(db);
93         TALLOC_FREE(msg);
94         TALLOC_FREE(ev);
95         return ret;
96 }