-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed Live Tests for Attestation SDK. #3366
Conversation
/azp run cpp - attestation |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run cpp - attestation |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run cpp - attestation |
/azp run cpp - core |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run cpp - attestation |
Azure Pipelines successfully started running 1 pipeline(s). |
…_ equivalent on live tests - parallels what is done for Python tests
/azp run cpp - attestation |
Azure Pipelines successfully started running 1 pipeline(s). |
…chetype-sdk-tests.yml
/azp run cpp - attestation |
/azp run cpp - storage |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
Approved too early.
yml/env var changes LGTM. |
/azp run cpp - storage |
Azure Pipelines successfully started running 1 pipeline(s). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Beautiful! Thank you!
Co-authored-by: Victor Vazquez <[email protected]>
WINHTTP_NO_CLIENT_CERT_CONTEXT, | ||
0)) | ||
{ | ||
GetErrorAndThrow("Error while setting client cert context to ignore.."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Extra period
GetErrorAndThrow("Error while setting client cert context to ignore.."); | |
GetErrorAndThrow("Error while setting client cert context to ignore."); |
static std::string const ToUpper(std::string const& src) noexcept; | ||
static unsigned char ToUpper(unsigned char const src) noexcept; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This API addition, as a complement to ToLower
makes sense to add.
However, unlike private APIs in the _detail
namespace, we cannot make breaking changes to things in _internal
. Therefore, we typically only add public surface area to such headers within the SDK/Azure Core when an actual upstream service SDK package within the repo needs it. In this case, this looks to only be used by unit tests.
In general, we'd avoid adding APIs to the SDK that are only used by unit tests :)
Fixed live tests.