-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tests] Adds in-process implementation of resources.M3Resources (#3792)
This commit adds an implementation of resources.M3Resources that is backed by in-process components. Implementation is able of being configured using resources.SetupCluster which takes those components and turns them into a cluster ready to receive reads and writes.
- Loading branch information
Showing
5 changed files
with
195 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright (c) 2021 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package inprocess | ||
|
||
import ( | ||
"time" | ||
|
||
"github.com/cenkalti/backoff/v3" | ||
"go.uber.org/zap" | ||
) | ||
|
||
const ( | ||
retryMaxInterval = 5 * time.Second | ||
retryMaxTime = time.Minute | ||
) | ||
|
||
func retry(op func() error) error { | ||
bo := backoff.NewExponentialBackOff() | ||
bo.MaxInterval = retryMaxInterval | ||
bo.MaxElapsedTime = retryMaxTime | ||
return backoff.Retry(op, bo) | ||
} | ||
|
||
func newLogger() (*zap.Logger, error) { | ||
logCfg := zap.NewDevelopmentConfig() | ||
logCfg.DisableStacktrace = true | ||
|
||
return logCfg.Build() | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// Copyright (c) 2021 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package inprocess | ||
|
||
import ( | ||
"github.com/m3db/m3/src/integration/resources" | ||
"github.com/m3db/m3/src/x/errors" | ||
) | ||
|
||
type inprocessM3Resources struct { | ||
coordinator resources.Coordinator | ||
dbNodes resources.Nodes | ||
} | ||
|
||
// ResourceOptions are the options for creating new | ||
// resources.M3Resources. | ||
type ResourceOptions struct { | ||
Coordinator resources.Coordinator | ||
DBNodes resources.Nodes | ||
} | ||
|
||
// NewM3Resources returns an implementation of resources.M3Resources | ||
// backed by in-process implementations of the M3 components. | ||
func NewM3Resources(options ResourceOptions) resources.M3Resources { | ||
return &inprocessM3Resources{ | ||
coordinator: options.Coordinator, | ||
dbNodes: options.DBNodes, | ||
} | ||
} | ||
|
||
func (i *inprocessM3Resources) Cleanup() error { | ||
err := errors.NewMultiError() | ||
if i.coordinator != nil { | ||
err = err.Add(i.coordinator.Close()) | ||
} | ||
|
||
for _, d := range i.dbNodes { | ||
err = err.Add(d.Close()) | ||
} | ||
|
||
return err.FinalError() | ||
} | ||
|
||
func (i *inprocessM3Resources) Nodes() resources.Nodes { | ||
return i.dbNodes | ||
} | ||
|
||
func (i *inprocessM3Resources) Coordinator() resources.Coordinator { | ||
return i.coordinator | ||
} |
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// +build integration_v2 | ||
// Copyright (c) 2021 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package inprocess | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/m3db/m3/src/integration/resources" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestSetupInprocessCluster(t *testing.T) { | ||
dbnode, err := NewDBNodeFromYAML(defaultDBNodeConfig, DBNodeOptions{}) | ||
require.NoError(t, err) | ||
|
||
coord, err := NewCoordinatorFromYAML(defaultCoordConfig, CoordinatorOptions{}) | ||
require.NoError(t, err) | ||
|
||
cluster := NewM3Resources(ResourceOptions{ | ||
Coordinator: coord, | ||
DBNodes: resources.Nodes{dbnode}, | ||
}) | ||
|
||
require.NoError(t, resources.SetupCluster(cluster, nil)) | ||
require.NoError(t, cluster.Cleanup()) | ||
} |