-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4960 from hashicorp/dani/b-gc-tests
Re-enable Client GC tests
- Loading branch information
Showing
3 changed files
with
266 additions
and
210 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 |
---|---|---|
@@ -0,0 +1,81 @@ | ||
package allocrunner | ||
|
||
import ( | ||
"sync" | ||
"testing" | ||
|
||
"github.com/hashicorp/nomad/client/allocwatcher" | ||
clientconfig "github.com/hashicorp/nomad/client/config" | ||
"github.com/hashicorp/nomad/client/consul" | ||
"github.com/hashicorp/nomad/client/devicemanager" | ||
"github.com/hashicorp/nomad/client/state" | ||
"github.com/hashicorp/nomad/client/vaultclient" | ||
"github.com/hashicorp/nomad/nomad/structs" | ||
"github.com/hashicorp/nomad/plugins/shared/catalog" | ||
"github.com/hashicorp/nomad/plugins/shared/singleton" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
// MockStateUpdater implements the AllocStateHandler interface and records | ||
// alloc updates. | ||
type MockStateUpdater struct { | ||
Updates []*structs.Allocation | ||
mu sync.Mutex | ||
} | ||
|
||
// AllocStateUpdated implements the AllocStateHandler interface and records an | ||
// alloc update. | ||
func (m *MockStateUpdater) AllocStateUpdated(alloc *structs.Allocation) { | ||
m.mu.Lock() | ||
m.Updates = append(m.Updates, alloc) | ||
m.mu.Unlock() | ||
} | ||
|
||
// Last returns a copy of the last alloc (or nil) update. Safe for concurrent | ||
// access with updates. | ||
func (m *MockStateUpdater) Last() *structs.Allocation { | ||
m.mu.Lock() | ||
defer m.mu.Unlock() | ||
n := len(m.Updates) | ||
if n == 0 { | ||
return nil | ||
} | ||
return m.Updates[n-1].Copy() | ||
} | ||
|
||
// Reset resets the recorded alloc updates. | ||
func (m *MockStateUpdater) Reset() { | ||
m.mu.Lock() | ||
m.Updates = nil | ||
m.mu.Unlock() | ||
} | ||
|
||
func testAllocRunnerConfig(t *testing.T, alloc *structs.Allocation) (*Config, func()) { | ||
pluginLoader := catalog.TestPluginLoader(t) | ||
clientConf, cleanup := clientconfig.TestClientConfig(t) | ||
conf := &Config{ | ||
// Copy the alloc in case the caller edits and reuses it | ||
Alloc: alloc.Copy(), | ||
Logger: clientConf.Logger, | ||
ClientConfig: clientConf, | ||
StateDB: state.NoopDB{}, | ||
Consul: consul.NewMockConsulServiceClient(t, clientConf.Logger), | ||
Vault: vaultclient.NewMockVaultClient(), | ||
StateUpdater: &MockStateUpdater{}, | ||
PrevAllocWatcher: allocwatcher.NoopPrevAlloc{}, | ||
PluginSingletonLoader: singleton.NewSingletonLoader(clientConf.Logger, pluginLoader), | ||
DeviceManager: devicemanager.NoopMockManager(), | ||
} | ||
return conf, cleanup | ||
} | ||
|
||
func TestAllocRunnerFromAlloc(t *testing.T, alloc *structs.Allocation) (*allocRunner, func()) { | ||
t.Helper() | ||
cfg, cleanup := testAllocRunnerConfig(t, alloc) | ||
ar, err := NewAllocRunner(cfg) | ||
if err != nil { | ||
require.NoError(t, err, "Failed to setup AllocRunner") | ||
} | ||
|
||
return ar, cleanup | ||
} |
Oops, something went wrong.