2 * Tests for WIDL and RPC server/clients.
4 * Copyright (C) Google 2007 (Dan Hipschman)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/test.h"
26 #include "server_defines.h"
33 #define PIPE "\\pipe\\wine_rpcrt4_test"
37 static const char *progname;
38 static BOOL old_windows_version;
40 static HANDLE stop_event;
42 static void (WINAPI *pNDRSContextMarshall2)(RPC_BINDING_HANDLE, NDR_SCONTEXT, void*, NDR_RUNDOWN, void*, ULONG);
43 static NDR_SCONTEXT (WINAPI *pNDRSContextUnmarshall2)(RPC_BINDING_HANDLE, void*, ULONG, void*, ULONG);
44 static RPC_STATUS (WINAPI *pRpcServerRegisterIfEx)(RPC_IF_HANDLE,UUID*, RPC_MGR_EPV*, unsigned int,
45 unsigned int,RPC_IF_CALLBACK_FN*);
46 static BOOLEAN (WINAPI *pGetUserNameExA)(EXTENDED_NAME_FORMAT, LPSTR, PULONG);
47 static RPC_STATUS (WINAPI *pRpcBindingSetAuthInfoExA)(RPC_BINDING_HANDLE, RPC_CSTR, ULONG, ULONG,
48 RPC_AUTH_IDENTITY_HANDLE, ULONG, RPC_SECURITY_QOS *);
49 static RPC_STATUS (WINAPI *pRpcServerRegisterAuthInfoA)(RPC_CSTR, ULONG, RPC_AUTH_KEY_RETRIEVAL_FN, LPVOID);
51 static char *domain_and_user;
53 /* type check statements generated in header file */
54 fnprintf *p_printf = printf;
56 static void InitFunctionPointers(void)
58 HMODULE hrpcrt4 = GetModuleHandleA("rpcrt4.dll");
59 HMODULE hsecur32 = LoadLibraryA("secur32.dll");
61 pNDRSContextMarshall2 = (void *)GetProcAddress(hrpcrt4, "NDRSContextMarshall2");
62 pNDRSContextUnmarshall2 = (void *)GetProcAddress(hrpcrt4, "NDRSContextUnmarshall2");
63 pRpcServerRegisterIfEx = (void *)GetProcAddress(hrpcrt4, "RpcServerRegisterIfEx");
64 pRpcBindingSetAuthInfoExA = (void *)GetProcAddress(hrpcrt4, "RpcBindingSetAuthInfoExA");
65 pRpcServerRegisterAuthInfoA = (void *)GetProcAddress(hrpcrt4, "RpcServerRegisterAuthInfoA");
66 pGetUserNameExA = (void *)GetProcAddress(hsecur32, "GetUserNameExA");
68 if (!pNDRSContextMarshall2) old_windows_version = TRUE;
71 void __RPC_FAR *__RPC_USER
72 midl_user_allocate(SIZE_T n)
74 return HeapAlloc(GetProcessHeap(), 0, n);
78 midl_user_free(void __RPC_FAR *p)
80 HeapFree(GetProcessHeap(), 0, p);
84 xstrdup(const char *s)
86 char *d = HeapAlloc(GetProcessHeap(), 0, strlen(s) + 1);
91 int __cdecl s_int_return(void)
96 int __cdecl s_square(int x)
101 int __cdecl s_sum(int x, int y)
106 signed char __cdecl s_sum_char(signed char x, signed char y)
111 short __cdecl s_sum_short(short x, short y)
116 int __cdecl s_sum_float(float x, float y)
121 int __cdecl s_sum_double_int(int x, double y)
126 hyper __cdecl s_sum_hyper(hyper x, hyper y)
131 int __cdecl s_sum_hyper_int(hyper x, hyper y)
136 int __cdecl s_sum_char_hyper(signed char x, hyper y)
141 void __cdecl s_square_out(int x, int *y)
146 void __cdecl s_square_ref(int *x)
151 int __cdecl s_str_length(const char *s)
156 int __cdecl s_str_t_length(str_t s)
161 int __cdecl s_cstr_length(const char *s, int n)
164 while (0 < n-- && *s++)
169 int __cdecl s_dot_self(vector_t *v)
171 return s_square(v->x) + s_square(v->y) + s_square(v->z);
174 double __cdecl s_square_half(double x, double *y)
180 float __cdecl s_square_half_float(float x, float *y)
186 LONG __cdecl s_square_half_long(LONG x, LONG *y)
192 int __cdecl s_sum_fixed_array(int a[5])
194 return a[0] + a[1] + a[2] + a[3] + a[4];
197 int __cdecl s_pints_sum(pints_t *pints)
199 return *pints->pi + **pints->ppi + ***pints->pppi;
202 double __cdecl s_ptypes_sum(ptypes_t *pt)
204 return *pt->pc + *pt->ps + *pt->pl + *pt->pf + *pt->pd;
207 int __cdecl s_dot_pvectors(pvectors_t *p)
209 return p->pu->x * (*p->pv)->x + p->pu->y * (*p->pv)->y + p->pu->z * (*p->pv)->z;
212 int __cdecl s_sum_sp(sp_t *sp)
214 return sp->x + sp->s->x;
217 double __cdecl s_square_sun(sun_t *su)
221 case SUN_I: return su->u.i * su->u.i;
223 case SUN_F2: return su->u.f * su->u.f;
224 case SUN_PI: return (*su->u.pi) * (*su->u.pi);
230 int __cdecl s_test_list_length(test_list_t *list)
232 return (list->t == TL_LIST
233 ? 1 + s_test_list_length(list->u.tail)
237 int __cdecl s_sum_fixed_int_3d(int m[2][3][4])
242 for (i = 0; i < 2; ++i)
243 for (j = 0; j < 3; ++j)
244 for (k = 0; k < 4; ++k)
250 int __cdecl s_sum_conf_array(int x[], int n)
252 int *p = x, *end = p + n;
261 int __cdecl s_sum_conf_ptr_by_conf_ptr(int n1, int *n2_then_x1, int *x2)
268 for(i = 1; i < n1; ++i)
269 sum += n2_then_x1[i];
271 for(i = 0; i < *n2_then_x1; ++i)
277 int __cdecl s_sum_unique_conf_array(int x[], int n)
279 return s_sum_conf_array(x, n);
282 int __cdecl s_sum_unique_conf_ptr(int *x, int n)
284 return x ? s_sum_conf_array(x, n) : 0;
287 int __cdecl s_sum_var_array(int x[20], int n)
289 ok(0 <= n, "RPC sum_var_array\n");
290 ok(n <= 20, "RPC sum_var_array\n");
292 return s_sum_conf_array(x, n);
295 int __cdecl s_sum_complex_array(int n, refpint_t pi[])
303 int __cdecl s_dot_two_vectors(vector_t vs[2])
305 return vs[0].x * vs[1].x + vs[0].y * vs[1].y + vs[0].z * vs[1].z;
308 void __cdecl s_get_number_array(int x[20], int *n)
310 int c[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
311 memcpy(x, c, sizeof(c));
312 *n = sizeof(c)/sizeof(c[0]);
315 int __cdecl s_sum_cs(cs_t *cs)
317 return s_sum_conf_array(cs->ca, cs->n);
320 int __cdecl s_sum_cps(cps_t *cps)
325 for (i = 0; i < *cps->pn; ++i)
328 for (i = 0; i < 2 * cps->n; ++i)
334 int __cdecl s_sum_cpsc(cpsc_t *cpsc)
338 for (i = 0; i < (cpsc->c ? cpsc->a : cpsc->b); ++i)
343 int __cdecl s_get_cpsc(int n, cpsc_t *cpsc)
350 cpsc->ca = MIDL_user_allocate( cpsc->a * sizeof(int) );
351 for (i = ret = 0; i < cpsc->a; i++) cpsc->ca[i] = i;
352 for (i = ret = 0; i < cpsc->a; i++) ret += cpsc->ca[i];
356 int __cdecl s_square_puint(puint_t p)
362 int __cdecl s_sum_puints(puints_t *p)
366 for (i = 0; i < p->n; ++i)
367 sum += atoi(p->ps[i]);
371 int __cdecl s_sum_cpuints(cpuints_t *p)
375 for (i = 0; i < p->n; ++i)
376 sum += atoi(p->ps[i]);
380 int __cdecl s_dot_copy_vectors(vector_t u, vector_t v)
382 return u.x * v.x + u.y * v.y + u.z * v.z;
385 int __cdecl s_square_test_us(test_us_t *tus)
387 int n = atoi(tus->us.x);
391 double __cdecl s_square_encu(encu_t *eu)
395 case ENCU_I: return eu->tagged_union.i * eu->tagged_union.i;
396 case ENCU_F: return eu->tagged_union.f * eu->tagged_union.f;
402 double __cdecl s_square_unencu(int t, unencu_t *eu)
406 case ENCU_I: return eu->i * eu->i;
407 case ENCU_F: return eu->f * eu->f;
413 void __cdecl s_check_se2(se_t *s)
415 ok(s->f == E2, "check_se2\n");
418 int __cdecl s_sum_parr(int *a[3])
420 return s_sum_pcarr(a, 3);
423 int __cdecl s_sum_pcarr(int *a[], int n)
426 for (i = 0; i < n; ++i)
431 int __cdecl s_enum_ord(e_t e)
444 double __cdecl s_square_encue(encue_t *eue)
448 case E1: return eue->tagged_union.i1 * eue->tagged_union.i1;
449 case E2: return eue->tagged_union.f2 * eue->tagged_union.f2;
455 int __cdecl s_sum_toplev_conf_2n(int *x, int n)
459 for (i = 0; i < 2 * n; ++i)
464 int __cdecl s_sum_toplev_conf_cond(int *x, int a, int b, int c)
469 for (i = 0; i < n; ++i)
474 double __cdecl s_sum_aligns(aligns_t *a)
476 return a->c + a->i + a->s + a->d;
479 int __cdecl s_sum_padded(padded_t *p)
484 int __cdecl s_sum_padded2(padded_t ps[2])
486 return s_sum_padded(&ps[0]) + s_sum_padded(&ps[1]);
489 int __cdecl s_sum_padded_conf(padded_t *ps, int n)
493 for (i = 0; i < n; ++i)
494 sum += s_sum_padded(&ps[i]);
498 int __cdecl s_sum_bogus(bogus_t *b)
500 return *b->h.p1 + *b->p2 + *b->p3 + b->c;
503 void __cdecl s_check_null(int *null)
505 ok(!null, "RPC check_null\n");
508 int __cdecl s_str_struct_len(str_struct_t *s)
510 return lstrlenA(s->s);
513 int __cdecl s_wstr_struct_len(wstr_struct_t *s)
515 return lstrlenW(s->s);
518 int __cdecl s_sum_doub_carr(doub_carr_t *dc)
522 for (i = 0; i < dc->n; ++i)
523 for (j = 0; j < dc->a[i]->n; ++j)
524 sum += dc->a[i]->a[j];
528 void __cdecl s_make_pyramid_doub_carr(unsigned char n, doub_carr_t **dc)
532 t = MIDL_user_allocate(FIELD_OFFSET(doub_carr_t, a[n]));
534 for (i = 0; i < n; ++i)
537 t->a[i] = MIDL_user_allocate(FIELD_OFFSET(doub_carr_1_t, a[v]));
539 for (j = 0; j < v; ++j)
540 t->a[i]->a[j] = j + 1;
545 unsigned __cdecl s_hash_bstr(bstr_t b)
551 for (i = 0; i < n; ++i)
552 hash = 5 * hash + (unsigned) s[i];
556 void __cdecl s_get_a_bstr(bstr_t *b)
559 short str[] = {5, 'W', 'i', 'n', 'e', 0};
560 bstr = HeapAlloc(GetProcessHeap(), 0, sizeof(str));
561 memcpy(bstr, str, sizeof(str));
565 void __cdecl s_get_name(name_t *name)
567 const char bossman[] = "Jeremy White";
568 memcpy(name->name, bossman, min(name->size, sizeof(bossman)));
569 /* ensure nul-termination */
570 if (name->size < sizeof(bossman))
571 name->name[name->size - 1] = 0;
574 int __cdecl s_sum_pcarr2(int n, int **pa)
576 return s_sum_conf_array(*pa, n);
579 int __cdecl s_sum_L1_norms(int n, vector_t *vs)
583 for (i = 0; i < n; ++i)
584 sum += abs(vs[i].x) + abs(vs[i].y) + abs(vs[i].z);
588 s123_t * __cdecl s_get_s123(void)
590 s123_t *s = MIDL_user_allocate(sizeof *s);
597 str_t __cdecl s_get_filename(void)
599 return (char *)__FILE__;
602 int __cdecl s_echo_ranged_int(int n)
607 void __cdecl s_get_ranged_enum(renum_t *re)
612 void __cdecl s_context_handle_test(void)
615 RPC_BINDING_HANDLE binding;
617 unsigned char buf[20];
618 static RPC_SERVER_INTERFACE server_if =
620 sizeof(RPC_SERVER_INTERFACE),
621 {{0x00000000,0x4114,0x0704,{0x23,0x01,0x00,0x00,0x00,0x00,0x00,0x00}},{1,0}},
622 {{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},
631 binding = I_RpcGetCurrentCallHandle();
632 ok(binding != NULL, "I_RpcGetCurrentCallHandle returned NULL\n");
634 if (!pNDRSContextMarshall2 || !pNDRSContextUnmarshall2)
636 win_skip("NDRSContextMarshall2 or NDRSContextUnmarshall2 not exported from rpcrt4.dll\n");
640 h = pNDRSContextUnmarshall2(binding, NULL, NDR_LOCAL_DATA_REPRESENTATION, NULL, 0);
641 ok(h != NULL, "NDRSContextUnmarshall2 returned NULL\n");
643 /* marshal a context handle with NULL userContext */
644 memset(buf, 0xcc, sizeof(buf));
645 pNDRSContextMarshall2(binding, h, buf, NULL, NULL, 0);
646 ok(*(ULONG *)buf == 0, "attributes should have been set to 0 instead of 0x%x\n", *(ULONG *)buf);
647 ok(UuidIsNil((UUID *)&buf[4], &status), "uuid should have been nil\n");
649 h = pNDRSContextUnmarshall2(binding, NULL, NDR_LOCAL_DATA_REPRESENTATION, NULL, 0);
650 ok(h != NULL, "NDRSContextUnmarshall2 returned NULL\n");
652 /* marshal a context handle with non-NULL userContext */
653 memset(buf, 0xcc, sizeof(buf));
654 h->userContext = (void *)0xdeadbeef;
655 pNDRSContextMarshall2(binding, h, buf, NULL, NULL, 0);
656 ok(*(ULONG *)buf == 0, "attributes should have been set to 0 instead of 0x%x\n", *(ULONG *)buf);
657 ok(!UuidIsNil((UUID *)&buf[4], &status), "uuid should not have been nil\n");
659 /* raises ERROR_INVALID_HANDLE exception on Vista upwards */
662 h = pNDRSContextUnmarshall2(binding, buf, NDR_LOCAL_DATA_REPRESENTATION, NULL, 0);
663 ok(h != NULL, "NDRSContextUnmarshall2 returned NULL\n");
664 ok(h->userContext == (void *)0xdeadbeef, "userContext of interface didn't unmarshal properly: %p\n", h->userContext);
666 /* marshal a context handle with an interface specified */
667 h = pNDRSContextUnmarshall2(binding, NULL, NDR_LOCAL_DATA_REPRESENTATION, &server_if.InterfaceId, 0);
668 ok(h != NULL, "NDRSContextUnmarshall2 returned NULL\n");
670 memset(buf, 0xcc, sizeof(buf));
671 h->userContext = (void *)0xcafebabe;
672 pNDRSContextMarshall2(binding, h, buf, NULL, &server_if.InterfaceId, 0);
673 ok(*(ULONG *)buf == 0, "attributes should have been set to 0 instead of 0x%x\n", *(ULONG *)buf);
674 ok(!UuidIsNil((UUID *)&buf[4], &status), "uuid should not have been nil\n");
676 h = pNDRSContextUnmarshall2(binding, buf, NDR_LOCAL_DATA_REPRESENTATION, &server_if.InterfaceId, 0);
677 ok(h != NULL, "NDRSContextUnmarshall2 returned NULL\n");
678 ok(h->userContext == (void *)0xcafebabe, "userContext of interface didn't unmarshal properly: %p\n", h->userContext);
681 /* test same interface data, but different pointer */
682 /* raises ERROR_INVALID_HANDLE exception */
685 RPC_SERVER_INTERFACE server_if_clone = server_if;
687 pNDRSContextUnmarshall2(binding, buf, NDR_LOCAL_DATA_REPRESENTATION, &server_if_clone.InterfaceId, 0);
690 /* test different interface data, but different pointer */
691 /* raises ERROR_INVALID_HANDLE exception */
694 static RPC_SERVER_INTERFACE server_if2 =
696 sizeof(RPC_SERVER_INTERFACE),
697 {{0x00000000,0x4114,0x0704,{0x23,0x01,0x00,0x00,0x00,0x00,0x00,0x00}},{1,0}},
698 {{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},
706 pNDRSContextMarshall2(binding, h, buf, NULL, &server_if.InterfaceId, 0);
708 pNDRSContextUnmarshall2(binding, buf, NDR_LOCAL_DATA_REPRESENTATION, &server_if2.InterfaceId, 0);
712 void __cdecl s_get_numbers(int length, int size, pints_t n[])
715 for (i = 0; i < length; i++)
717 n[i].pi = midl_user_allocate(sizeof(*n[i].pi));
724 void __cdecl s_get_numbers_struct(numbers_struct_t **ns)
727 *ns = midl_user_allocate(FIELD_OFFSET(numbers_struct_t, numbers[5]));
731 for (i = 0; i < (*ns)->length; i++)
733 (*ns)->numbers[i].pi = NULL;
734 (*ns)->numbers[i].ppi = NULL;
735 (*ns)->numbers[i].pppi = NULL;
737 (*ns)->numbers[0].pi = midl_user_allocate(sizeof(*(*ns)->numbers[i].pi));
738 *(*ns)->numbers[0].pi = 5;
741 void __cdecl s_full_pointer_test(int *a, int *b)
743 ok(*a == 42, "Expected *a to be 42 instead of %d\n", *a);
744 ok(*b == 42, "Expected *b to be 42 instead of %d\n", *a);
745 ok(a == b, "Expected a (%p) to point to the same memory as b (%p)\n", a, b);
748 void __cdecl s_full_pointer_null_test(int *a, int *b)
750 ok(*a == 42, "Expected *a to be 42 instead of %d\n", *a);
751 ok(b == NULL, "Expected b to be NULL instead of %p\n", b);
754 void __cdecl s_stop(void)
756 ok(RPC_S_OK == RpcMgmtStopServerListening(NULL), "RpcMgmtStopServerListening\n");
757 ok(RPC_S_OK == RpcServerUnregisterIf(NULL, NULL, FALSE), "RpcServerUnregisterIf\n");
758 ok(SetEvent(stop_event), "SetEvent\n");
762 make_cmdline(char buffer[MAX_PATH], const char *test)
764 sprintf(buffer, "%s server %s", progname, test);
768 run_client(const char *test)
770 char cmdline[MAX_PATH];
771 PROCESS_INFORMATION info;
772 STARTUPINFOA startup;
774 memset(&startup, 0, sizeof startup);
775 startup.cb = sizeof startup;
777 make_cmdline(cmdline, test);
778 ok(CreateProcessA(NULL, cmdline, NULL, NULL, FALSE, 0L, NULL, NULL, &startup, &info), "CreateProcess\n");
779 winetest_wait_child_process( info.hProcess );
780 ok(CloseHandle(info.hProcess), "CloseHandle\n");
781 ok(CloseHandle(info.hThread), "CloseHandle\n");
787 char string[] = "I am a string";
788 WCHAR wstring[] = {'I',' ','a','m',' ','a',' ','w','s','t','r','i','n','g', 0};
789 int f[5] = {1, 3, 0, -2, -4};
790 vector_t a = {1, 3, 7};
791 vector_t vec1 = {4, -2, 1}, vec2 = {-5, 2, 3}, *pvec2 = &vec2;
792 pvectors_t pvecs = {&vec1, &pvec2};
793 sp_inner_t spi = {42};
794 sp_t sp = {-13, &spi};
801 int i1, i2, i3, *pi2, *pi3, **ppi3;
809 str_struct_t ss = {string};
810 wstr_struct_t ws = {wstring};
815 ok(int_return() == INT_CODE, "RPC int_return\n");
817 ok(square(7) == 49, "RPC square\n");
819 ok(x == 19, "RPC sum got %d\n", x);
820 c = sum_char(-23, 50);
821 ok(c == 27, "RPC sum_char got %d\n", (int)c);
822 h = sum_short(1122, -344);
823 ok(h == 778, "RPC sum_short got %d\n", (int)h);
824 x = sum_float(123.45, -32.2);
825 ok(x == 91, "RPC sum_float got %d\n", x);
826 x = sum_double_int(-78, 148.46);
827 ok(x == 70, "RPC sum_double_int got %d\n", x);
828 y = sum_hyper((hyper)0x12345678 << 16, (hyper)0x33557799 << 16);
829 ok(y == (hyper)0x4589ce11 << 16, "RPC hyper got %x%08x\n", (DWORD)(y >> 32), (DWORD)y);
830 x = sum_hyper_int((hyper)0x24242424 << 16, -((hyper)0x24241212 << 16));
831 ok(x == 0x12120000, "RPC hyper_int got 0x%x\n", x);
832 x = sum_char_hyper( 12, ((hyper)0x42424242 << 32) | 0x33334444 );
833 ok(x == 0x33334450, "RPC char_hyper got 0x%x\n", x);
837 ok(x == 121, "RPC square_out\n");
841 ok(x == 25, "RPC square_ref\n");
843 ok(str_length(string) == strlen(string), "RPC str_length\n");
844 ok(str_t_length(string) == strlen(string), "RPC str_length\n");
845 ok(dot_self(&a) == 59, "RPC dot_self\n");
847 ok(str_struct_len(&ss) == lstrlenA(string), "RPC str_struct_len\n");
848 ok(wstr_struct_len(&ws) == lstrlenW(wstring), "RPC str_struct_len\n");
851 u = square_half(3.0, &v);
852 ok(u == 9.0, "RPC square_half\n");
853 ok(v == 1.5, "RPC square_half\n");
856 s = square_half_float(3.0f, &t);
857 ok(s == 9.0f, "RPC square_half_float\n");
858 ok(t == 1.5f, "RPC square_half_float\n");
861 q = square_half_long(3, &r);
862 ok(q == 9, "RPC square_half_long\n");
863 ok(r == 1, "RPC square_half_long\n");
874 ok(pints_sum(&pints) == -13, "RPC pints_sum\n");
886 ok(ptypes_sum(&ptypes) == 33.0, "RPC ptypes_sum\n");
888 ok(dot_pvectors(&pvecs) == -21, "RPC dot_pvectors\n");
889 ok(dot_copy_vectors(vec1, vec2) == -21, "RPC dot_copy_vectors\n");
890 ok(sum_fixed_array(f) == -2, "RPC sum_fixed_array\n");
891 ok(sum_sp(&sp) == 29, "RPC sum_sp\n");
893 ok(enum_ord(E1) == 1, "RPC enum_ord\n");
894 ok(enum_ord(E2) == 2, "RPC enum_ord\n");
895 ok(enum_ord(E3) == 3, "RPC enum_ord\n");
896 ok(enum_ord(E4) == 4, "RPC enum_ord\n");
901 memset(&aligns, 0, sizeof(aligns));
906 ok(sum_aligns(&aligns) == 18.0, "RPC sum_aligns\n");
910 ok(sum_padded(&padded) == 5, "RPC sum_padded\n");
915 ok(sum_padded2(padded2) == 6, "RPC sum_padded2\n");
920 ok(sum_padded_conf(padded2, 2) == 6, "RPC sum_padded_conf\n");
929 ok(sum_bogus(&bogus) == 12, "RPC sum_bogus\n");
933 str = get_filename();
934 ok(!strcmp(str, __FILE__), "get_filename() returned %s instead of %s\n", str, __FILE__);
937 x = echo_ranged_int(0);
938 ok(x == 0, "echo_ranged_int() returned %d instead of 0\n", x);
939 x = echo_ranged_int(100);
940 ok(x == 100, "echo_ranged_int() returned %d instead of 100\n", x);
942 if (!old_windows_version)
944 get_ranged_enum(&re);
945 ok(re == RE3, "get_ranged_enum() returned %d instead of RE3\n", re);
960 ok(square_sun(&su) == 81.0, "RPC square_sun\n");
964 ok(square_sun(&su) == 25.0, "RPC square_sun\n");
968 ok(square_sun(&su) == 4.0, "RPC square_sun\n");
973 ok(square_sun(&su) == 121.0, "RPC square_sun\n");
976 eu.tagged_union.i = 7;
977 ok(square_encu(&eu) == 49.0, "RPC square_encu\n");
980 eu.tagged_union.f = 3.0;
981 ok(square_encu(&eu) == 9.0, "RPC square_encu\n");
984 ok(square_unencu(ENCU_I, &uneu) == 16.0, "RPC square_unencu\n");
987 ok(square_unencu(ENCU_F, &uneu) == 25.0, "RPC square_unencu\n");
990 eue.tagged_union.i1 = 8;
991 ok(square_encue(&eue) == 64.0, "RPC square_encue\n");
994 eue.tagged_union.f2 = 10.0;
995 ok(square_encue(&eue) == 100.0, "RPC square_encue\n");
1001 test_list_t *n = HeapAlloc(GetProcessHeap(), 0, sizeof *n);
1007 static test_list_t *
1008 make_list(test_list_t *tail)
1010 test_list_t *n = HeapAlloc(GetProcessHeap(), 0, sizeof *n);
1017 free_list(test_list_t *list)
1019 if (list->t == TL_LIST)
1020 free_list(list->u.tail);
1021 HeapFree(GetProcessHeap(), 0, list);
1025 puint_t_UserSize(ULONG *flags, ULONG start, puint_t *p)
1027 return start + sizeof(int);
1030 unsigned char * __RPC_USER
1031 puint_t_UserMarshal(ULONG *flags, unsigned char *buffer, puint_t *p)
1034 memcpy(buffer, &n, sizeof n);
1035 return buffer + sizeof n;
1038 unsigned char * __RPC_USER
1039 puint_t_UserUnmarshal(ULONG *flags, unsigned char *buffer, puint_t *p)
1042 memcpy(&n, buffer, sizeof n);
1043 *p = HeapAlloc(GetProcessHeap(), 0, 10);
1044 sprintf(*p, "%d", n);
1045 return buffer + sizeof n;
1049 puint_t_UserFree(ULONG *flags, puint_t *p)
1051 HeapFree(GetProcessHeap(), 0, *p);
1055 us_t_UserSize(ULONG *flags, ULONG start, us_t *pus)
1057 return start + sizeof(struct wire_us);
1060 unsigned char * __RPC_USER
1061 us_t_UserMarshal(ULONG *flags, unsigned char *buffer, us_t *pus)
1064 wus.x = atoi(pus->x);
1065 memcpy(buffer, &wus, sizeof wus);
1066 return buffer + sizeof wus;
1069 unsigned char * __RPC_USER
1070 us_t_UserUnmarshal(ULONG *flags, unsigned char *buffer, us_t *pus)
1073 memcpy(&wus, buffer, sizeof wus);
1074 pus->x = HeapAlloc(GetProcessHeap(), 0, 10);
1075 sprintf(pus->x, "%d", wus.x);
1076 return buffer + sizeof wus;
1080 us_t_UserFree(ULONG *flags, us_t *pus)
1082 HeapFree(GetProcessHeap(), 0, pus->x);
1086 bstr_t_UserSize(ULONG *flags, ULONG start, bstr_t *b)
1088 return start + FIELD_OFFSET(user_bstr_t, data[(*b)[-1]]);
1091 unsigned char * __RPC_USER
1092 bstr_t_UserMarshal(ULONG *flags, unsigned char *buffer, bstr_t *b)
1094 wire_bstr_t wb = (wire_bstr_t) buffer;
1096 memcpy(&wb->data, *b, wb->n * sizeof wb->data[0]);
1097 return buffer + FIELD_OFFSET(user_bstr_t, data[wb->n]);
1100 unsigned char * __RPC_USER
1101 bstr_t_UserUnmarshal(ULONG *flags, unsigned char *buffer, bstr_t *b)
1103 wire_bstr_t wb = (wire_bstr_t) buffer;
1104 short *data = HeapAlloc(GetProcessHeap(), 0, (wb->n + 1) * sizeof *data);
1106 memcpy(&data[1], wb->data, wb->n * sizeof data[1]);
1108 return buffer + FIELD_OFFSET(user_bstr_t, data[wb->n]);
1112 bstr_t_UserFree(ULONG *flags, bstr_t *b)
1114 HeapFree(GetProcessHeap(), 0, &((*b)[-1]));
1120 int a[] = {1, 2, 3, 4};
1122 test_list_t *list = make_list(make_list(make_list(null_list())));
1123 test_us_t tus = {{p1}};
1127 short bstr_data[] = { 5, 'H', 'e', 'l', 'l', 'o' };
1128 bstr_t bstr = &bstr_data[1], bstr2;
1135 ok(test_list_length(list) == 3, "RPC test_list_length\n");
1136 ok(square_puint(p1) == 121, "RPC square_puint\n");
1138 pus.ps = HeapAlloc(GetProcessHeap(), 0, pus.n * sizeof pus.ps[0]);
1139 pus.ps[0] = xstrdup("5");
1140 pus.ps[1] = xstrdup("6");
1141 pus.ps[2] = xstrdup("7");
1142 pus.ps[3] = xstrdup("8");
1143 ok(sum_puints(&pus) == 26, "RPC sum_puints\n");
1144 HeapFree(GetProcessHeap(), 0, pus.ps[0]);
1145 HeapFree(GetProcessHeap(), 0, pus.ps[1]);
1146 HeapFree(GetProcessHeap(), 0, pus.ps[2]);
1147 HeapFree(GetProcessHeap(), 0, pus.ps[3]);
1148 HeapFree(GetProcessHeap(), 0, pus.ps);
1150 cpus.ps = HeapAlloc(GetProcessHeap(), 0, cpus.n * sizeof cpus.ps[0]);
1151 cpus.ps[0] = xstrdup("5");
1152 cpus.ps[1] = xstrdup("6");
1153 cpus.ps[2] = xstrdup("7");
1154 cpus.ps[3] = xstrdup("8");
1155 ok(sum_cpuints(&cpus) == 26, "RPC sum_puints\n");
1156 HeapFree(GetProcessHeap(), 0, cpus.ps[0]);
1157 HeapFree(GetProcessHeap(), 0, cpus.ps[1]);
1158 HeapFree(GetProcessHeap(), 0, cpus.ps[2]);
1159 HeapFree(GetProcessHeap(), 0, cpus.ps[3]);
1160 HeapFree(GetProcessHeap(), 0, cpus.ps);
1161 ok(square_test_us(&tus) == 121, "RPC square_test_us\n");
1166 ok(sum_parr(pa) == 6, "RPC sum_parr\n");
1172 ok(sum_pcarr(pa, 4) == 10, "RPC sum_pcarr\n");
1174 ok(hash_bstr(bstr) == s_hash_bstr(bstr), "RPC hash_bstr_data\n");
1177 s_get_a_bstr(&bstr2);
1178 ok(!lstrcmpW((LPCWSTR)bstr, (LPCWSTR)bstr2), "bstr mismatch\n");
1179 HeapFree(GetProcessHeap(), 0, bstr - 1);
1180 HeapFree(GetProcessHeap(), 0, bstr2 - 1);
1184 if (!old_windows_version)
1187 name.name = buffer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, name.size);
1189 ok(name.name == buffer, "[in,out] pointer should have stayed as %p but instead changed to %p\n", name.name, buffer);
1190 ok(!strcmp(name.name, "Jeremy Wh"), "name didn't unmarshall properly, expected \"Jeremy Wh\", but got \"%s\"\n", name.name);
1191 HeapFree(GetProcessHeap(), 0, name.name);
1195 ok(sum_pcarr2(4, &pa2) == 10, "RPC sum_pcarr2\n");
1198 ok(s123->f1 == 1 && s123->f2 == 2 && s123->f3 == 3, "RPC get_s123\n");
1199 MIDL_user_free(s123);
1201 full_pointer_test(&val, &val);
1202 full_pointer_null_test(&val, NULL);
1206 check_pyramid_doub_carr(doub_carr_t *dc)
1209 for (i = 0; i < dc->n; ++i)
1210 for (j = 0; j < dc->a[i]->n; ++j)
1211 if (dc->a[i]->a[j] != j + 1)
1217 free_pyramid_doub_carr(doub_carr_t *dc)
1220 for (i = 0; i < dc->n; ++i)
1221 MIDL_user_free(dc->a[i]);
1230 {{1, 2, 3, 4}, {-1, -3, -5, -7}, {0, 2, 4, 6}},
1231 {{1, -2, 3, -4}, {2, 3, 5, 7}, {-4, -1, -14, 4114}}
1233 int c[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
1234 int c2[] = {10, 100, 200};
1236 vector_t vs[2] = {{1, -2, 3}, {4, -5, -6}};
1241 int ca[5] = {1, -2, 3, -4, 5};
1246 numbers_struct_t *ns;
1249 if (!old_windows_version)
1251 const char str1[25] = "Hello";
1252 ok(cstr_length(str1, sizeof str1) == strlen(str1), "RPC cstr_length\n");
1255 ok(sum_fixed_int_3d(m) == 4116, "RPC sum_fixed_int_3d\n");
1257 ok(sum_conf_array(c, 10) == 45, "RPC sum_conf_array\n");
1258 ok(sum_conf_array(&c[5], 2) == 11, "RPC sum_conf_array\n");
1259 ok(sum_conf_array(&c[7], 1) == 7, "RPC sum_conf_array\n");
1260 ok(sum_conf_array(&c[2], 0) == 0, "RPC sum_conf_array\n");
1262 ok(sum_conf_ptr_by_conf_ptr(1, c2, c) == 45, "RPC sum_conf_ptr_by_conf_ptr\n");
1263 ok(sum_conf_ptr_by_conf_ptr(3, c2, c) == 345, "RPC sum_conf_ptr_by_conf_ptr\n");
1265 ok(sum_conf_ptr_by_conf_ptr(3, c2, c) == 300, "RPC sum_conf_ptr_by_conf_ptr\n");
1267 ok(sum_unique_conf_array(ca, 4) == -2, "RPC sum_unique_conf_array\n");
1268 ok(sum_unique_conf_ptr(ca, 5) == 3, "RPC sum_unique_conf_array\n");
1269 ok(sum_unique_conf_ptr(NULL, 10) == 0, "RPC sum_unique_conf_array\n");
1271 get_number_array(c3, &n);
1272 ok(n == 10, "RPC get_num_array\n");
1274 ok(c3[n-1] == c[n-1], "get_num_array returned wrong value %d @ %d\n",
1276 ok(sum_var_array(c, 10) == 45, "RPC sum_conf_array\n");
1277 ok(sum_var_array(&c[5], 2) == 11, "RPC sum_conf_array\n");
1278 ok(sum_var_array(&c[7], 1) == 7, "RPC sum_conf_array\n");
1279 ok(sum_var_array(&c[2], 0) == 0, "RPC sum_conf_array\n");
1281 ok(dot_two_vectors(vs) == -4, "RPC dot_two_vectors\n");
1282 cs = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(cs_t, ca[5]));
1289 ok(sum_cs(cs) == 1, "RPC sum_cs\n");
1290 HeapFree(GetProcessHeap(), 0, cs);
1297 ok(sum_cps(&cps) == 53, "RPC sum_cps\n");
1303 ok(sum_cpsc(&cpsc) == 6, "RPC sum_cpsc\n");
1308 ok(sum_cpsc(&cpsc) == 10, "RPC sum_cpsc\n");
1311 ok(get_cpsc(5, &cpsc) == 45, "RPC sum_cpsc\n");
1312 ok( cpsc.a == 10, "RPC get_cpsc %u\n", cpsc.a );
1313 for (n = 0; n < 10; n++) ok( cpsc.ca[n] == n, "RPC get_cpsc[%d] = %d\n", n, cpsc.ca[n] );
1315 memset( tmp, 0x33, sizeof(tmp) );
1317 ok(get_cpsc(4, &cpsc) == 28, "RPC sum_cpsc\n");
1318 ok( cpsc.a == 8, "RPC get_cpsc %u\n", cpsc.a );
1319 ok( cpsc.ca == tmp, "RPC get_cpsc %p/%p\n", cpsc.ca, tmp );
1320 for (n = 0; n < 8; n++) ok( cpsc.ca[n] == n, "RPC get_cpsc[%d] = %d\n", n, cpsc.ca[n] );
1322 ok(sum_toplev_conf_2n(c, 3) == 15, "RPC sum_toplev_conf_2n\n");
1323 ok(sum_toplev_conf_cond(c, 5, 6, 1) == 10, "RPC sum_toplev_conf_cond\n");
1324 ok(sum_toplev_conf_cond(c, 5, 6, 0) == 15, "RPC sum_toplev_conf_cond\n");
1326 dc = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(doub_carr_t, a[2]));
1328 dc->a[0] = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(doub_carr_1_t, a[3]));
1333 dc->a[1] = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(doub_carr_1_t, a[2]));
1337 ok(sum_doub_carr(dc) == 19, "RPC sum_doub_carr\n");
1338 HeapFree(GetProcessHeap(), 0, dc->a[0]);
1339 HeapFree(GetProcessHeap(), 0, dc->a[1]);
1340 HeapFree(GetProcessHeap(), 0, dc);
1343 make_pyramid_doub_carr(4, &dc);
1344 ok(check_pyramid_doub_carr(dc), "RPC make_pyramid_doub_carr\n");
1345 free_pyramid_doub_carr(dc);
1347 ok(sum_L1_norms(2, vs) == 21, "RPC sum_L1_norms\n");
1349 memset(api, 0, sizeof(api));
1350 pi = HeapAlloc(GetProcessHeap(), 0, sizeof(*pi));
1353 get_numbers(1, 1, api);
1354 ok(api[0].pi == pi, "RPC conformant varying array [out] pointer changed from %p to %p\n", pi, api[0].pi);
1355 ok(*api[0].pi == 0, "pi unmarshalled incorrectly %d\n", *api[0].pi);
1357 if (!old_windows_version)
1359 ns = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, FIELD_OFFSET(numbers_struct_t, numbers[5]));
1362 ns->numbers[0].pi = pi;
1363 get_numbers_struct(&ns);
1364 ok(ns->numbers[0].pi == pi, "RPC conformant varying struct embedded pointer changed from %p to %p\n", pi, ns->numbers[0].pi);
1365 ok(*ns->numbers[0].pi == 5, "pi unmarshalled incorrectly %d\n", *ns->numbers[0].pi);
1366 HeapFree(GetProcessHeap(), 0, ns);
1368 HeapFree(GetProcessHeap(), 0, pi);
1370 pi = HeapAlloc(GetProcessHeap(), 0, 5 * sizeof(*pi));
1371 pi[0] = 3; rpi[0] = &pi[0];
1372 pi[1] = 5; rpi[1] = &pi[1];
1373 pi[2] = -2; rpi[2] = &pi[2];
1374 pi[3] = -1; rpi[3] = &pi[3];
1375 pi[4] = -4; rpi[4] = &pi[4];
1376 ok(sum_complex_array(5, rpi) == 1, "RPC sum_complex_array\n");
1377 HeapFree(GetProcessHeap(), 0, pi);
1380 void __cdecl s_authinfo_test(unsigned int protseq, int secure)
1382 RPC_BINDING_HANDLE binding;
1384 ULONG level, authnsvc;
1385 RPC_AUTHZ_HANDLE privs;
1386 unsigned char *principal;
1388 binding = I_RpcGetCurrentCallHandle();
1389 ok(binding != NULL, "I_RpcGetCurrentCallHandle returned NULL\n");
1391 level = authnsvc = 0xdeadbeef;
1392 privs = (RPC_AUTHZ_HANDLE)0xdeadbeef;
1393 principal = (unsigned char *)0xdeadbeef;
1395 if (secure || protseq == RPC_PROTSEQ_LRPC)
1397 status = RpcBindingInqAuthClientA(binding, &privs, &principal, &level, &authnsvc, NULL);
1398 if (status == RPC_S_CANNOT_SUPPORT)
1400 win_skip("RpcBindingInqAuthClientA not supported\n");
1403 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
1404 ok(privs != (RPC_AUTHZ_HANDLE)0xdeadbeef, "privs unchanged\n");
1405 ok(principal != (unsigned char *)0xdeadbeef, "principal unchanged\n");
1406 if (protseq != RPC_PROTSEQ_LRPC)
1409 ok(principal != NULL, "NULL principal\n");
1411 if (protseq == RPC_PROTSEQ_LRPC && principal && pGetUserNameExA)
1416 len = WideCharToMultiByte(CP_ACP, 0, (const WCHAR *)privs, -1, NULL, 0, NULL, NULL);
1417 spn = HeapAlloc( GetProcessHeap(), 0, len );
1418 WideCharToMultiByte(CP_ACP, 0, (const WCHAR *)privs, -1, spn, len, NULL, NULL);
1420 ok(!strcmp(domain_and_user, spn), "expected %s got %s\n", domain_and_user, spn);
1421 HeapFree( GetProcessHeap(), 0, spn );
1423 ok(level == RPC_C_AUTHN_LEVEL_PKT_PRIVACY, "level unchanged\n");
1424 ok(authnsvc == RPC_C_AUTHN_WINNT, "authnsvc unchanged\n");
1426 status = RpcImpersonateClient(NULL);
1427 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
1428 status = RpcRevertToSelf();
1429 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
1434 status = RpcBindingInqAuthClientA(binding, &privs, &principal, &level, &authnsvc, NULL);
1435 ok(status == RPC_S_BINDING_HAS_NO_AUTH, "expected RPC_S_BINDING_HAS_NO_AUTH got %u\n", status);
1436 ok(privs == (RPC_AUTHZ_HANDLE)0xdeadbeef, "got %p\n", privs);
1437 ok(principal == (unsigned char *)0xdeadbeef, "got %s\n", principal);
1438 ok(level == 0xdeadbeef, "got %u\n", level);
1439 ok(authnsvc == 0xdeadbeef, "got %u\n", authnsvc);
1450 context_handle_test();
1454 set_auth_info(RPC_BINDING_HANDLE handle)
1457 RPC_SECURITY_QOS qos;
1459 if (!pGetUserNameExA)
1463 qos.Capabilities = RPC_C_QOS_CAPABILITIES_MUTUAL_AUTH;
1464 qos.IdentityTracking = RPC_C_QOS_IDENTITY_STATIC;
1465 qos.ImpersonationType = RPC_C_IMP_LEVEL_IMPERSONATE;
1467 status = pRpcBindingSetAuthInfoExA(handle, (RPC_CSTR)domain_and_user, RPC_C_AUTHN_LEVEL_PKT_PRIVACY,
1468 RPC_C_AUTHN_WINNT, NULL, 0, &qos);
1469 ok(status == RPC_S_OK, "RpcBindingSetAuthInfoExA failed %d\n", status);
1473 client(const char *test)
1475 static unsigned char iptcp[] = "ncacn_ip_tcp";
1476 static unsigned char np[] = "ncacn_np";
1477 static unsigned char ncalrpc[] = "ncalrpc";
1478 static unsigned char address[] = "127.0.0.1";
1479 static unsigned char address_np[] = "\\\\.";
1480 static unsigned char port[] = PORT;
1481 static unsigned char pipe[] = PIPE;
1482 static unsigned char guid[] = "00000000-4114-0704-2301-000000000000";
1484 unsigned char *binding;
1486 if (strcmp(test, "tcp_basic") == 0)
1488 ok(RPC_S_OK == RpcStringBindingCompose(NULL, iptcp, address, port, NULL, &binding), "RpcStringBindingCompose\n");
1489 ok(RPC_S_OK == RpcBindingFromStringBinding(binding, &IServer_IfHandle), "RpcBindingFromStringBinding\n");
1492 authinfo_test(RPC_PROTSEQ_TCP, 0);
1494 ok(RPC_S_OK == RpcStringFree(&binding), "RpcStringFree\n");
1495 ok(RPC_S_OK == RpcBindingFree(&IServer_IfHandle), "RpcBindingFree\n");
1497 else if (strcmp(test, "tcp_secure") == 0)
1499 ok(RPC_S_OK == RpcStringBindingCompose(NULL, iptcp, address, port, NULL, &binding), "RpcStringBindingCompose\n");
1500 ok(RPC_S_OK == RpcBindingFromStringBinding(binding, &IServer_IfHandle), "RpcBindingFromStringBinding\n");
1502 set_auth_info(IServer_IfHandle);
1503 authinfo_test(RPC_PROTSEQ_TCP, 1);
1505 ok(RPC_S_OK == RpcStringFree(&binding), "RpcStringFree\n");
1506 ok(RPC_S_OK == RpcBindingFree(&IServer_IfHandle), "RpcBindingFree\n");
1508 else if (strcmp(test, "ncalrpc_basic") == 0)
1510 ok(RPC_S_OK == RpcStringBindingCompose(NULL, ncalrpc, NULL, guid, NULL, &binding), "RpcStringBindingCompose\n");
1511 ok(RPC_S_OK == RpcBindingFromStringBinding(binding, &IServer_IfHandle), "RpcBindingFromStringBinding\n");
1513 run_tests(); /* can cause RPC_X_BAD_STUB_DATA exception */
1514 authinfo_test(RPC_PROTSEQ_LRPC, 0);
1516 ok(RPC_S_OK == RpcStringFree(&binding), "RpcStringFree\n");
1517 ok(RPC_S_OK == RpcBindingFree(&IServer_IfHandle), "RpcBindingFree\n");
1519 else if (strcmp(test, "ncalrpc_secure") == 0)
1521 ok(RPC_S_OK == RpcStringBindingCompose(NULL, ncalrpc, NULL, guid, NULL, &binding), "RpcStringBindingCompose\n");
1522 ok(RPC_S_OK == RpcBindingFromStringBinding(binding, &IServer_IfHandle), "RpcBindingFromStringBinding\n");
1524 set_auth_info(IServer_IfHandle);
1525 authinfo_test(RPC_PROTSEQ_LRPC, 1);
1527 ok(RPC_S_OK == RpcStringFree(&binding), "RpcStringFree\n");
1528 ok(RPC_S_OK == RpcBindingFree(&IServer_IfHandle), "RpcBindingFree\n");
1530 else if (strcmp(test, "np_basic") == 0)
1532 ok(RPC_S_OK == RpcStringBindingCompose(NULL, np, address_np, pipe, NULL, &binding), "RpcStringBindingCompose\n");
1533 ok(RPC_S_OK == RpcBindingFromStringBinding(binding, &IServer_IfHandle), "RpcBindingFromStringBinding\n");
1536 authinfo_test(RPC_PROTSEQ_NMP, 0);
1539 ok(RPC_S_OK == RpcStringFree(&binding), "RpcStringFree\n");
1540 ok(RPC_S_OK == RpcBindingFree(&IServer_IfHandle), "RpcBindingFree\n");
1547 static unsigned char iptcp[] = "ncacn_ip_tcp";
1548 static unsigned char port[] = PORT;
1549 static unsigned char np[] = "ncacn_np";
1550 static unsigned char pipe[] = PIPE;
1551 static unsigned char ncalrpc[] = "ncalrpc";
1552 static unsigned char guid[] = "00000000-4114-0704-2301-000000000000";
1553 RPC_STATUS status, iptcp_status, np_status, ncalrpc_status;
1556 iptcp_status = RpcServerUseProtseqEp(iptcp, 20, port, NULL);
1557 ok(iptcp_status == RPC_S_OK, "RpcServerUseProtseqEp(ncacn_ip_tcp) failed with status %d\n", iptcp_status);
1559 ncalrpc_status = RpcServerUseProtseqEp(ncalrpc, 0, guid, NULL);
1560 ok(ncalrpc_status == RPC_S_OK, "RpcServerUseProtseqEp(ncalrpc) failed with status %d\n", ncalrpc_status);
1562 np_status = RpcServerUseProtseqEp(np, 0, pipe, NULL);
1563 if (np_status == RPC_S_PROTSEQ_NOT_SUPPORTED)
1564 skip("Protocol sequence ncacn_np is not supported\n");
1566 ok(np_status == RPC_S_OK, "RpcServerUseProtseqEp(ncacn_np) failed with status %d\n", np_status);
1568 if (pRpcServerRegisterIfEx)
1570 trace("Using RpcServerRegisterIfEx\n");
1571 status = pRpcServerRegisterIfEx(s_IServer_v0_0_s_ifspec, NULL, NULL,
1572 RPC_IF_ALLOW_CALLBACKS_WITH_NO_AUTH,
1573 RPC_C_LISTEN_MAX_CALLS_DEFAULT, NULL);
1576 status = RpcServerRegisterIf(s_IServer_v0_0_s_ifspec, NULL, NULL);
1577 ok(status == RPC_S_OK, "RpcServerRegisterIf failed with status %d\n", status);
1578 status = RpcServerListen(1, 20, TRUE);
1579 ok(status == RPC_S_OK, "RpcServerListen failed with status %d\n", status);
1580 stop_event = CreateEvent(NULL, FALSE, FALSE, NULL);
1581 ok(stop_event != NULL, "CreateEvent failed with error %d\n", GetLastError());
1583 if (iptcp_status == RPC_S_OK)
1584 run_client("tcp_basic");
1586 skip("tcp tests skipped due to earlier failure\n");
1588 if (ncalrpc_status == RPC_S_OK)
1590 run_client("ncalrpc_basic");
1591 if (pGetUserNameExA)
1593 /* we don't need to register RPC_C_AUTHN_WINNT for ncalrpc */
1594 run_client("ncalrpc_secure");
1598 skip("lrpc tests skipped due to earlier failure\n");
1600 if (np_status == RPC_S_OK)
1601 run_client("np_basic");
1604 skip("np_basic tests skipped due to earlier failure\n");
1605 /* np client is what signals stop_event, so bail out if we didn't run do it */
1609 ret = WaitForSingleObject(stop_event, 1000);
1610 ok(WAIT_OBJECT_0 == ret, "WaitForSingleObject\n");
1611 /* if the stop event didn't fire then RpcMgmtWaitServerListen will wait
1612 * forever, so don't bother calling it in this case */
1613 if (ret == WAIT_OBJECT_0)
1615 status = RpcMgmtWaitServerListen();
1617 ok(status == RPC_S_OK, "RpcMgmtWaitServerListening failed with status %d\n", status);
1627 InitFunctionPointers();
1629 if (pGetUserNameExA)
1632 ok(!pGetUserNameExA(NameSamCompatible, NULL, &size), "GetUserNameExA\n");
1633 domain_and_user = HeapAlloc(GetProcessHeap(), 0, size);
1634 ok(pGetUserNameExA(NameSamCompatible, domain_and_user, &size), "GetUserNameExA\n");
1637 win_skip("GetUserNameExA is needed for some authentication tests\n");
1639 argc = winetest_get_mainargs(&argv);
1650 trace("Exception %d\n", RpcExceptionCode());
1657 HeapFree(GetProcessHeap(), 0, domain_and_user);