2 Unix SMB/CIFS implementation.
4 Copyright (C) Volker Lendecke 2012
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.
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.
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/>.
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"
28 bool run_dbwrap_watch1(int dummy
)
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
;
40 ev
= tevent_context_init(talloc_tos());
42 fprintf(stderr
, "tevent_context_init failed\n");
45 msg
= messaging_init(ev
, ev
);
47 fprintf(stderr
, "messaging_init failed\n");
50 db
= db_open(msg
, "test_watch.tdb", 0, TDB_DEFAULT
,
51 O_CREAT
|O_RDWR
, 0644, DBWRAP_LOCK_ORDER_1
);
53 fprintf(stderr
, "db_open failed: %s\n", strerror(errno
));
56 dbwrap_watch_db(db
, msg
);
57 rec
= dbwrap_fetch_locked(db
, db
, key
);
59 fprintf(stderr
, "dbwrap_fetch_locked failed\n");
62 req
= dbwrap_record_watch_send(talloc_tos(), ev
, rec
, msg
);
64 fprintf(stderr
, "dbwrap_record_watch_send failed\n");
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",
76 if (!tevent_req_poll(req
, ev
)) {
77 fprintf(stderr
, "tevent_req_poll failed\n");
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",