Lines Matching refs:opts
180 struct dp_option *opts;
188 "[domain/" TEST_DOM_NAME "]", &opts);
190 assert_non_null(opts);
195 ret = sss_krb5_check_options(opts, test_ctx->tctx->dom, krb5_ctx);
200 ret = dp_opt_set_string(opts, KRB5_LIFETIME, "123");
202 ret = sss_krb5_check_options(opts, test_ctx->tctx->dom, krb5_ctx);
206 ret = dp_opt_set_string(opts, KRB5_LIFETIME, "abc");
208 ret = sss_krb5_check_options(opts, test_ctx->tctx->dom, krb5_ctx);
211 ret = dp_opt_set_string(opts, KRB5_LIFETIME, "s");
213 ret = sss_krb5_check_options(opts, test_ctx->tctx->dom, krb5_ctx);
216 ret = dp_opt_set_string(opts, KRB5_LIFETIME, "1d");
218 ret = sss_krb5_check_options(opts, test_ctx->tctx->dom, krb5_ctx);
222 ret = dp_opt_set_string(opts, KRB5_LIFETIME, "7d 0h 0m 0s");
224 ret = sss_krb5_check_options(opts, test_ctx->tctx->dom, krb5_ctx);
231 ret = dp_opt_set_bool(opts, KRB5_USE_ENTERPRISE_PRINCIPAL, true);
233 ret = sss_krb5_check_options(opts, test_ctx->tctx->dom, krb5_ctx);
237 ret = dp_opt_set_bool(opts, KRB5_USE_ENTERPRISE_PRINCIPAL, false);
239 ret = dp_opt_set_bool(opts, KRB5_CANONICALIZE, true);
241 ret = sss_krb5_check_options(opts, test_ctx->tctx->dom, krb5_ctx);
246 talloc_free(opts);