mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
libwbclient: Add test for wbcPingDc2
The internal domain used in 'make test' does not report a DC name, so just add tests similar to the old wbcPingDc call. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
4c8616f0c8
commit
47082ad3fa
@ -63,6 +63,19 @@ static bool test_wbc_pingdc(struct torture_context *tctx)
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool test_wbc_pingdc2(struct torture_context *tctx)
|
||||
{
|
||||
char *name = NULL;
|
||||
|
||||
torture_assert_wbc_equal(tctx, wbcPingDc2("random_string", NULL, &name),
|
||||
WBC_ERR_NOT_IMPLEMENTED, "%s",
|
||||
"wbcPingDc2 failed");
|
||||
torture_assert_wbc_ok(tctx, wbcPingDc2(NULL, NULL, &name), "%s",
|
||||
"wbcPingDc2 failed");
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool test_wbc_library_details(struct torture_context *tctx)
|
||||
{
|
||||
struct wbcLibraryDetails *details;
|
||||
@ -688,6 +701,7 @@ struct torture_suite *torture_wbclient(void)
|
||||
|
||||
torture_suite_add_simple_test(suite, "wbcPing", test_wbc_ping);
|
||||
torture_suite_add_simple_test(suite, "wbcPingDc", test_wbc_pingdc);
|
||||
torture_suite_add_simple_test(suite, "wbcPingDc2", test_wbc_pingdc);
|
||||
torture_suite_add_simple_test(suite, "wbcLibraryDetails", test_wbc_library_details);
|
||||
torture_suite_add_simple_test(suite, "wbcInterfaceDetails", test_wbc_interface_details);
|
||||
torture_suite_add_simple_test(suite, "wbcSidTypeString", test_wbc_sidtypestring);
|
||||
|
Loading…
x
Reference in New Issue
Block a user