secur32/tests: Don't call InitializeSecurityContext on an uninitialized buffer.
Also documents failure on an invalid buffer.
This commit is contained in:
parent
711b9f0414
commit
48ea8a1cb4
|
@ -700,6 +700,19 @@ static void test_communication(void)
|
||||||
buffers[1].cBuffers = 1;
|
buffers[1].cBuffers = 1;
|
||||||
buffers[1].pBuffers[0].BufferType = SECBUFFER_TOKEN;
|
buffers[1].pBuffers[0].BufferType = SECBUFFER_TOKEN;
|
||||||
buffers[0].pBuffers[0].cbBuffer = 1;
|
buffers[0].pBuffers[0].cbBuffer = 1;
|
||||||
|
memset(buffers[1].pBuffers[0].pvBuffer, 0xfa, buf_size);
|
||||||
|
status = pInitializeSecurityContextA(&cred_handle, &context, (SEC_CHAR *)"localhost",
|
||||||
|
ISC_REQ_CONFIDENTIALITY|ISC_REQ_STREAM,
|
||||||
|
0, 0, &buffers[1], 0, NULL, &buffers[0], &attrs, NULL);
|
||||||
|
todo_wine
|
||||||
|
ok(status == SEC_E_INVALID_TOKEN, "Expected SEC_E_INVALID_TOKEN, got %08x\n", status);
|
||||||
|
todo_wine
|
||||||
|
ok(buffers[0].pBuffers[0].cbBuffer == 0, "Output buffer size was not set to 0.\n");
|
||||||
|
|
||||||
|
buffers[1].cBuffers = 1;
|
||||||
|
buffers[1].pBuffers[0].BufferType = SECBUFFER_TOKEN;
|
||||||
|
buffers[0].pBuffers[0].cbBuffer = 1;
|
||||||
|
memset(buffers[1].pBuffers[0].pvBuffer, 0, buf_size);
|
||||||
status = pInitializeSecurityContextA(&cred_handle, &context, (SEC_CHAR *)"localhost",
|
status = pInitializeSecurityContextA(&cred_handle, &context, (SEC_CHAR *)"localhost",
|
||||||
ISC_REQ_CONFIDENTIALITY|ISC_REQ_STREAM,
|
ISC_REQ_CONFIDENTIALITY|ISC_REQ_STREAM,
|
||||||
0, 0, &buffers[1], 0, NULL, &buffers[0], &attrs, NULL);
|
0, 0, &buffers[1], 0, NULL, &buffers[0], &attrs, NULL);
|
||||||
|
@ -707,6 +720,7 @@ static void test_communication(void)
|
||||||
todo_wine
|
todo_wine
|
||||||
ok(buffers[0].pBuffers[0].cbBuffer == 0, "Output buffer size was not set to 0.\n");
|
ok(buffers[0].pBuffers[0].cbBuffer == 0, "Output buffer size was not set to 0.\n");
|
||||||
|
|
||||||
|
buffers[0].pBuffers[0].cbBuffer = 0;
|
||||||
status = pInitializeSecurityContextA(&cred_handle, &context, (SEC_CHAR *)"localhost",
|
status = pInitializeSecurityContextA(&cred_handle, &context, (SEC_CHAR *)"localhost",
|
||||||
ISC_REQ_CONFIDENTIALITY|ISC_REQ_STREAM,
|
ISC_REQ_CONFIDENTIALITY|ISC_REQ_STREAM,
|
||||||
0, 0, &buffers[1], 0, NULL, &buffers[0], &attrs, NULL);
|
0, 0, &buffers[1], 0, NULL, &buffers[0], &attrs, NULL);
|
||||||
|
|
Loading…
Reference in New Issue