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_ctdb.h"
26 bool run_local_dbwrap_ctdb(int dummy
)
28 struct db_context
*db
;
34 db
= db_open_ctdb(talloc_tos(), "torture.tdb", 0, TDB_DEFAULT
,
35 O_RDWR
, 0755, DBWRAP_LOCK_ORDER_1
, DBWRAP_FLAG_NONE
);
37 perror("db_open_ctdb failed");
41 res
= dbwrap_transaction_start(db
);
43 fprintf(stderr
, "dbwrap_transaction_start failed");
46 res
= dbwrap_transaction_cancel(db
);
48 fprintf(stderr
, "dbwrap_transaction_cancel failed");
52 res
= dbwrap_transaction_start(db
);
54 fprintf(stderr
, "dbwrap_transaction_start failed");
58 status
= dbwrap_store_uint32_bystring(db
, "foo", 1);
59 if (!NT_STATUS_IS_OK(status
)) {
60 fprintf(stderr
, "store_uint32 failed: %s\n",
64 status
= dbwrap_fetch_uint32_bystring(db
, "foo", &val
);
65 if (!NT_STATUS_IS_OK(status
)) {
66 fprintf(stderr
, "fetch_uint32 failed: %s\n",
71 fprintf(stderr
, "fetch_uint32 gave %u, expected 1",
76 status
= dbwrap_store_uint32_bystring(db
, "bar", 5);
77 if (!NT_STATUS_IS_OK(status
)) {
78 fprintf(stderr
, "store_uint32 failed: %s\n",
82 status
= dbwrap_fetch_uint32_bystring(db
, "bar", &val
);
83 if (!NT_STATUS_IS_OK(status
)) {
84 fprintf(stderr
, "fetch_uint32 failed: %s\n",
89 fprintf(stderr
, "fetch_uint32 gave %u, expected 5",
94 status
= dbwrap_store_uint32_bystring(db
, "foo", 2);
95 if (!NT_STATUS_IS_OK(status
)) {
96 fprintf(stderr
, "store_uint32 failed: %s\n",
100 status
= dbwrap_fetch_uint32_bystring(db
, "foo", &val
);
101 if (!NT_STATUS_IS_OK(status
)) {
102 fprintf(stderr
, "fetch_uint32 failed: %s\n",
107 fprintf(stderr
, "fetch_uint32 gave %u, expected 2",
112 res
= dbwrap_transaction_commit(db
);
114 fprintf(stderr
, "dbwrap_transaction_commit failed");
119 * check that the values have reached the disk
121 status
= dbwrap_fetch_uint32_bystring(db
, "foo", &val
);
122 if (!NT_STATUS_IS_OK(status
)) {
123 fprintf(stderr
, "fetch_uint32 failed: %s\n",
128 fprintf(stderr
, "fetch_uint32 gave %u, expected 1",
133 status
= dbwrap_fetch_uint32_bystring(db
, "bar", &val
);
134 if (!NT_STATUS_IS_OK(status
)) {
135 fprintf(stderr
, "fetch_uint32 failed: %s\n",
140 fprintf(stderr
, "fetch_uint32 gave %u, expected 1",