19eaabe833b5e71da6075e65520e11517d5da538
[mat/samba.git] / source4 / param / tests / loadparm.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba utility functions
4    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
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 "param/share.h"
22 #include "param/param.h"
23 #include "torture/torture.h"
24
25 static bool test_create(struct torture_context *tctx)
26 {
27         struct loadparm_context *lp_ctx = loadparm_init(tctx);
28         torture_assert(tctx, lp_ctx != NULL, "lp_ctx");
29         return true;
30 }
31
32 static bool test_set_option(struct torture_context *tctx)
33 {
34         struct loadparm_context *lp_ctx = loadparm_init(tctx);
35         torture_assert(tctx, lpcfg_set_option(lp_ctx, "workgroup=werkgroep"), "lpcfg_set_option failed");
36         torture_assert_str_equal(tctx, "WERKGROEP", lpcfg_workgroup(lp_ctx), "workgroup");
37         return true;
38 }
39
40 static bool test_set_cmdline(struct torture_context *tctx)
41 {
42         struct loadparm_context *lp_ctx = loadparm_init(tctx);
43         torture_assert(tctx, lpcfg_set_cmdline(lp_ctx, "workgroup", "werkgroep"), "lpcfg_set_cmdline failed");
44         torture_assert(tctx, lpcfg_do_global_parameter(lp_ctx, "workgroup", "barbla"), "lpcfg_set_option failed");
45         torture_assert_str_equal(tctx, "WERKGROEP", lpcfg_workgroup(lp_ctx), "workgroup");
46         return true;
47 }
48
49 static bool test_do_global_parameter(struct torture_context *tctx)
50 {
51         struct loadparm_context *lp_ctx = loadparm_init(tctx);
52         torture_assert(tctx, lpcfg_do_global_parameter(lp_ctx, "workgroup", "werkgroep42"),
53                        "lpcfg_set_cmdline failed");
54         torture_assert_str_equal(tctx, lpcfg_workgroup(lp_ctx), "WERKGROEP42", "workgroup");
55         return true;
56 }
57
58
59 static bool test_do_global_parameter_var(struct torture_context *tctx)
60 {
61         struct loadparm_context *lp_ctx = loadparm_init(tctx);
62         torture_assert(tctx, lpcfg_do_global_parameter_var(lp_ctx, "workgroup", "werk%s%d", "groep", 42),
63                        "lpcfg_set_cmdline failed");
64         torture_assert_str_equal(tctx, lpcfg_workgroup(lp_ctx), "WERKGROEP42", "workgroup");
65         return true;
66 }
67
68
69 static bool test_set_option_invalid(struct torture_context *tctx)
70 {
71         struct loadparm_context *lp_ctx = loadparm_init(tctx);
72         torture_assert(tctx, !lpcfg_set_option(lp_ctx, "workgroup"), "lpcfg_set_option succeeded");
73         return true;
74 }
75
76 static bool test_set_option_parametric(struct torture_context *tctx)
77 {
78         struct loadparm_context *lp_ctx = loadparm_init(tctx);
79         torture_assert(tctx, lpcfg_set_option(lp_ctx, "some:thing=blaat"), "lpcfg_set_option failed");
80         torture_assert_str_equal(tctx, lpcfg_parm_string(lp_ctx, NULL, "some", "thing"), "blaat",
81                                  "invalid parametric option");
82         return true;
83 }
84
85 static bool test_lp_parm_double(struct torture_context *tctx)
86 {
87         struct loadparm_context *lp_ctx = loadparm_init(tctx);
88         torture_assert(tctx, lpcfg_set_option(lp_ctx, "some:thing=3.4"), "lpcfg_set_option failed");
89         torture_assert(tctx, lpcfg_parm_double(lp_ctx, NULL, "some", "thing", 2.0) == 3.4,
90                                  "invalid parametric option");
91         torture_assert(tctx, lpcfg_parm_double(lp_ctx, NULL, "some", "bla", 2.0) == 2.0,
92                                  "invalid parametric option");
93         return true;
94 }
95
96 static bool test_lp_parm_bool(struct torture_context *tctx)
97 {
98         struct loadparm_context *lp_ctx = loadparm_init(tctx);
99         torture_assert(tctx, lpcfg_set_option(lp_ctx, "some:thing=true"), "lpcfg_set_option failed");
100         torture_assert(tctx, lpcfg_parm_bool(lp_ctx, NULL, "some", "thing", false) == true,
101                                  "invalid parametric option");
102         torture_assert(tctx, lpcfg_parm_bool(lp_ctx, NULL, "some", "bla", true) == true,
103                                  "invalid parametric option");
104         return true;
105 }
106
107 static bool test_lp_parm_int(struct torture_context *tctx)
108 {
109         struct loadparm_context *lp_ctx = loadparm_init(tctx);
110         torture_assert(tctx, lpcfg_set_option(lp_ctx, "some:thing=34"), "lpcfg_set_option failed");
111         torture_assert_int_equal(tctx, lpcfg_parm_int(lp_ctx, NULL, "some", "thing", 20), 34,
112                                  "invalid parametric option");
113         torture_assert_int_equal(tctx, lpcfg_parm_int(lp_ctx, NULL, "some", "bla", 42), 42,
114                                  "invalid parametric option");
115         return true;
116 }
117
118 static bool test_lp_parm_bytes(struct torture_context *tctx)
119 {
120         struct loadparm_context *lp_ctx = loadparm_init(tctx);
121         torture_assert(tctx, lpcfg_set_option(lp_ctx, "some:thing=16K"), "lpcfg_set_option failed");
122         torture_assert_int_equal(tctx, lpcfg_parm_bytes(lp_ctx, NULL, "some", "thing", 20), 16 * 1024,
123                                  "invalid parametric option");
124         torture_assert_int_equal(tctx, lpcfg_parm_bytes(lp_ctx, NULL, "some", "bla", 42), 42,
125                                  "invalid parametric option");
126         return true;
127 }
128
129 static bool test_lp_do_service_parameter(struct torture_context *tctx)
130 {
131         struct loadparm_context *lp_ctx = loadparm_init(tctx);
132         struct loadparm_service *service = lpcfg_add_service(lp_ctx, lpcfg_default_service(lp_ctx), "foo");
133         torture_assert(tctx, lpcfg_do_service_parameter(lp_ctx, service,
134                                                      "some:thing", "foo"), "lpcfg_set_option failed");
135         torture_assert_str_equal(tctx, lpcfg_parm_string(lp_ctx, service, "some", "thing"), "foo",
136                                  "invalid parametric option");
137         return true;
138 }
139
140 static bool test_lp_service(struct torture_context *tctx)
141 {
142         struct loadparm_context *lp_ctx = loadparm_init(tctx);
143         struct loadparm_service *service = lpcfg_add_service(lp_ctx, lpcfg_default_service(lp_ctx), "foo");
144         torture_assert(tctx, service == lpcfg_service(lp_ctx, "foo"), "invalid service");
145         return true;
146 }
147
148 static bool test_server_role_default(struct torture_context *tctx)
149 {
150         struct loadparm_context *lp_ctx = loadparm_init(tctx);
151         torture_assert_int_equal(tctx, lpcfg_server_role(lp_ctx), ROLE_STANDALONE, "ROLE should be standalone by default");
152         return true;
153 }
154
155 static bool test_server_role_dc_specified(struct torture_context *tctx)
156 {
157         struct loadparm_context *lp_ctx = loadparm_init(tctx);
158         torture_assert(tctx, lpcfg_set_option(lp_ctx, "server role=domain controller"), "lpcfg_set_option failed");
159         torture_assert_int_equal(tctx, lpcfg_server_role(lp_ctx), ROLE_DOMAIN_CONTROLLER, "ROLE should be DC");
160         return true;
161 }
162
163 static bool test_server_role_member_specified(struct torture_context *tctx)
164 {
165         struct loadparm_context *lp_ctx = loadparm_init(tctx);
166         torture_assert(tctx, lpcfg_set_option(lp_ctx, "server role=member"), "lpcfg_set_option failed");
167         torture_assert_int_equal(tctx, lpcfg_server_role(lp_ctx), ROLE_DOMAIN_MEMBER, "ROLE should be member");
168         return true;
169 }
170
171 static bool test_server_role_dc_domain_logons(struct torture_context *tctx)
172 {
173         struct loadparm_context *lp_ctx = loadparm_init(tctx);
174         torture_assert(tctx, lpcfg_set_option(lp_ctx, "domain logons=true"), "lpcfg_set_option failed");
175         torture_assert_int_equal(tctx, lpcfg_server_role(lp_ctx), ROLE_DOMAIN_PDC, "ROLE should be PDC");
176         return true;
177 }
178
179 static bool test_server_role_dc_domain_logons_and_not_master(struct torture_context *tctx)
180 {
181         struct loadparm_context *lp_ctx = loadparm_init(tctx);
182         torture_assert(tctx, lpcfg_set_option(lp_ctx, "domain logons=true"), "lpcfg_set_option failed");
183         torture_assert(tctx, lpcfg_set_option(lp_ctx, "domain master=false"), "lpcfg_set_option failed");
184         torture_assert_int_equal(tctx, lpcfg_server_role(lp_ctx), ROLE_DOMAIN_BDC, "ROLE should be BDC");
185         return true;
186 }
187
188 static bool test_server_role_security_ads(struct torture_context *tctx)
189 {
190         struct loadparm_context *lp_ctx = loadparm_init(tctx);
191         torture_assert(tctx, lpcfg_set_option(lp_ctx, "security=ads"), "lpcfg_set_option failed");
192         torture_assert_int_equal(tctx, lpcfg_server_role(lp_ctx), ROLE_DOMAIN_MEMBER, "ROLE should be MEMBER");
193         return true;
194 }
195
196 static bool test_server_role_security_domain(struct torture_context *tctx)
197 {
198         struct loadparm_context *lp_ctx = loadparm_init(tctx);
199         torture_assert(tctx, lpcfg_set_option(lp_ctx, "security=domain"), "lpcfg_set_option failed");
200         torture_assert_int_equal(tctx, lpcfg_server_role(lp_ctx), ROLE_DOMAIN_MEMBER, "ROLE should be MEMBER");
201         return true;
202 }
203
204 static bool test_server_role_security_share(struct torture_context *tctx)
205 {
206         struct loadparm_context *lp_ctx = loadparm_init(tctx);
207         torture_assert(tctx, lpcfg_set_option(lp_ctx, "security=share"), "lpcfg_set_option failed");
208         torture_assert_int_equal(tctx, lpcfg_server_role(lp_ctx), ROLE_STANDALONE, "ROLE should be STANDALONE");
209         return true;
210 }
211
212 static bool test_server_role_security_server(struct torture_context *tctx)
213 {
214         struct loadparm_context *lp_ctx = loadparm_init(tctx);
215         torture_assert(tctx, lpcfg_set_option(lp_ctx, "security=server"), "lpcfg_set_option failed");
216         torture_assert_int_equal(tctx, lpcfg_server_role(lp_ctx), ROLE_STANDALONE, "ROLE should be STANDALONE");
217         return true;
218 }
219
220 struct torture_suite *torture_local_loadparm(TALLOC_CTX *mem_ctx)
221 {
222         struct torture_suite *suite = torture_suite_create(mem_ctx, "loadparm");
223
224         torture_suite_add_simple_test(suite, "create", test_create);
225         torture_suite_add_simple_test(suite, "set_option", test_set_option);
226         torture_suite_add_simple_test(suite, "set_cmdline", test_set_cmdline);
227         torture_suite_add_simple_test(suite, "set_option_invalid", test_set_option_invalid);
228         torture_suite_add_simple_test(suite, "set_option_parametric", test_set_option_parametric);
229         torture_suite_add_simple_test(suite, "set_lp_parm_double", test_lp_parm_double);
230         torture_suite_add_simple_test(suite, "set_lp_parm_bool", test_lp_parm_bool);
231         torture_suite_add_simple_test(suite, "set_lp_parm_int", test_lp_parm_int);
232         torture_suite_add_simple_test(suite, "set_lp_parm_bytes", test_lp_parm_bytes);
233         torture_suite_add_simple_test(suite, "service_parameter", test_lp_do_service_parameter);
234         torture_suite_add_simple_test(suite, "lpcfg_service", test_lp_service);
235         torture_suite_add_simple_test(suite, "do_global_parameter_var", test_do_global_parameter_var);
236         torture_suite_add_simple_test(suite, "do_global_parameter", test_do_global_parameter);
237         torture_suite_add_simple_test(suite, "test_server_role_default", test_server_role_default);
238         torture_suite_add_simple_test(suite, "test_server_role_dc_specified", test_server_role_dc_specified);
239         torture_suite_add_simple_test(suite, "test_server_role_member_specified", test_server_role_member_specified);
240         torture_suite_add_simple_test(suite, "test_server_role_dc_domain_logons", test_server_role_dc_domain_logons);
241         torture_suite_add_simple_test(suite, "test_server_role_dc_domain_logons_and_not_master", test_server_role_dc_domain_logons_and_not_master);
242         torture_suite_add_simple_test(suite, "test_server_role_security_ads", test_server_role_security_ads);
243         torture_suite_add_simple_test(suite, "test_server_role_security_domain", test_server_role_security_domain);
244         torture_suite_add_simple_test(suite, "test_server_role_security_share", test_server_role_security_share);
245         torture_suite_add_simple_test(suite, "test_server_role_security_server", test_server_role_security_server);
246
247         return suite;
248 }