You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use go-vcr for Recording and Replaying HTTP Interactions
Something we might want to consider in the future is using something like go-vcr to record the actual http API interactions with the providers to use for tests.
This is something we should come back to after the initial MVP once the API is more stable. Until then, this would probably slow down development more than it would help.
This approach uses go-vcr to record actual API interactions and replay them during tests.
High-Level Tasks:
Add go-vcr as a dependency
Create test fixtures by recording actual API interactions
Modify tests to use recorded interactions
Add configuration to allow switching between recorded and live modes
Add new tests for error handling and edge cases
Example Implementation:
funcTestDigitalOceanProvider_CreateInstance(t*testing.T) {
// Create a new recorderrecorder, err:=vcr.New("fixtures/create_instance")
require.NoError(t, err)
deferrecorder.Stop()
// Create a custom HTTP client using the recorderhttpClient:=&http.Client{
Transport: recorder,
}
// Create a new DigitalOcean client using the custom HTTP clientdoClient:=godo.NewClient(httpClient)
// Create a provider with the custom clientprovider:=&DigitalOceanProvider{
doClient: doClient,
}
// Run the test// ...
}
Pros:
Tests run against actual API responses
No need to create mock implementations
Tests can run without actual API credentials after recording
Cons:
Initial setup requires actual API credentials
Recorded fixtures may become outdated if API changes
More complex setup than simple mocking
The text was updated successfully, but these errors were encountered:
Use go-vcr for Recording and Replaying HTTP Interactions
Something we might want to consider in the future is using something like
go-vcr
to record the actual http API interactions with the providers to use for tests.This is something we should come back to after the initial MVP once the API is more stable. Until then, this would probably slow down development more than it would help.
This approach uses go-vcr to record actual API interactions and replay them during tests.
High-Level Tasks:
Example Implementation:
Pros:
Cons:
The text was updated successfully, but these errors were encountered: