-
Notifications
You must be signed in to change notification settings - Fork 848
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
armmarketplaceordering v1.2.0-beta.1 release
- Loading branch information
1 parent
1c74def
commit 46a8992
Showing
19 changed files
with
820 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,6 +60,31 @@ A client groups a set of related APIs, providing access to its functionality. C | |
client := clientFactory.NewMarketplaceAgreementsClient() | ||
``` | ||
|
||
## Fakes | ||
The `fake` package provides implementations for fake servers that can be used for testing. | ||
To create a fake server, declare an instance of the required fake server type(s). | ||
```go | ||
myFakeMarketplaceAgreementsServer := fake.MarketplaceAgreementsServer{} | ||
``` | ||
Next, provide func implementations for the methods you wish to fake. | ||
The named return variables can be used to simplify return value construction. | ||
```go | ||
myFakeMarketplaceAgreementsServer.Get = func(ctx context.Context, offerType armmarketplaceordering.OfferType, publisherID string, offerID string, planID string, options *armmarketplaceordering.MarketplaceAgreementsClientGetOptions) (resp azfake.Responder[armmarketplaceordering.MarketplaceAgreementsClientGetResponse], errResp azfake.ErrorResponder) { | ||
// TODO: resp.SetResponse(/* your fake MarketplaceAgreementsClientGetResponse response */) | ||
return | ||
} | ||
``` | ||
You connect the fake server to a client instance during construction through the optional transport. | ||
Use `NewTokenCredential()` from `azcore/fake` to obtain a fake credential. | ||
```go | ||
import azfake "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake" | ||
client, err := armmarketplaceordering.NewMarketplaceAgreementsClient("subscriptionID", azfake.NewTokenCredential(), &arm.ClientOptions{ | ||
ClientOptions: azcore.ClientOptions{ | ||
Transport: fake.NewMarketplaceAgreementsServerTransport(&myFakeMarketplaceAgreementsServer), | ||
}, | ||
}) | ||
``` | ||
|
||
## Provide Feedback | ||
|
||
If you encounter bugs or have suggestions, please | ||
|
@@ -82,4 +107,4 @@ This project has adopted the | |
For more information, see the | ||
[Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) | ||
or contact [[email protected]](mailto:[email protected]) with any | ||
additional questions or comments. | ||
additional questions or comments. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
// Licensed under the MIT License. See License.txt in the project root for license information. | ||
|
||
// This file enables 'go generate' to regenerate this specific SDK | ||
//go:generate pwsh ../../../../eng/scripts/build.ps1 -skipBuild -cleanGenerated -format -tidy -generate resourcemanager/marketplaceordering/armmarketplaceordering | ||
//go:generate pwsh ../../../../eng/scripts/build.ps1 -goExtension "@autorest/[email protected]" -skipBuild -cleanGenerated -format -tidy -generate resourcemanager/marketplaceordering/armmarketplaceordering | ||
|
||
package armmarketplaceordering |
3 changes: 1 addition & 2 deletions
3
sdk/resourcemanager/marketplaceordering/armmarketplaceordering/client_factory.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 2 additions & 3 deletions
5
sdk/resourcemanager/marketplaceordering/armmarketplaceordering/constants.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
78 changes: 78 additions & 0 deletions
78
sdk/resourcemanager/marketplaceordering/armmarketplaceordering/fake/internal.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.