mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-30 10:12:35 +00:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
399 lines
7.6 KiB
Go
399 lines
7.6 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package fairshare
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestFairshare_newDispatcher(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
numWorkers int
|
|
expectedNumWorkers int
|
|
}{
|
|
{
|
|
name: "",
|
|
numWorkers: 0,
|
|
expectedNumWorkers: 1,
|
|
},
|
|
{
|
|
name: "",
|
|
numWorkers: 10,
|
|
expectedNumWorkers: 10,
|
|
},
|
|
{
|
|
name: "test-dispatcher",
|
|
numWorkers: 10,
|
|
expectedNumWorkers: 10,
|
|
},
|
|
}
|
|
|
|
l := newTestLogger("workerpool-test")
|
|
for tcNum, tc := range testCases {
|
|
d := newDispatcher(tc.name, tc.numWorkers, l)
|
|
|
|
if tc.name != "" && d.name != tc.name {
|
|
t.Errorf("tc %d: expected name %s, got %s", tcNum, tc.name, d.name)
|
|
}
|
|
if len(d.workers) != tc.expectedNumWorkers {
|
|
t.Errorf("tc %d: expected %d workers, got %d", tcNum, tc.expectedNumWorkers, len(d.workers))
|
|
}
|
|
if d.jobCh == nil {
|
|
t.Errorf("tc %d: work channel not set up properly", tcNum)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestFairshare_createDispatcher(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
numWorkers int
|
|
expectedNumWorkers int
|
|
}{
|
|
{
|
|
name: "",
|
|
numWorkers: -1,
|
|
expectedNumWorkers: 1,
|
|
},
|
|
{
|
|
name: "",
|
|
numWorkers: 0,
|
|
expectedNumWorkers: 1,
|
|
},
|
|
{
|
|
name: "",
|
|
numWorkers: 10,
|
|
expectedNumWorkers: 10,
|
|
},
|
|
{
|
|
name: "",
|
|
numWorkers: 10,
|
|
expectedNumWorkers: 10,
|
|
},
|
|
{
|
|
name: "test-dispatcher",
|
|
numWorkers: 10,
|
|
expectedNumWorkers: 10,
|
|
},
|
|
}
|
|
|
|
l := newTestLogger("workerpool-test")
|
|
for tcNum, tc := range testCases {
|
|
d := createDispatcher(tc.name, tc.numWorkers, l)
|
|
if d == nil {
|
|
t.Fatalf("tc %d: expected non-nil object", tcNum)
|
|
}
|
|
|
|
if tc.name != "" && d.name != tc.name {
|
|
t.Errorf("tc %d: expected name %s, got %s", tcNum, tc.name, d.name)
|
|
}
|
|
if len(d.name) == 0 {
|
|
t.Errorf("tc %d: expected name to be set", tcNum)
|
|
}
|
|
if d.numWorkers != tc.expectedNumWorkers {
|
|
t.Errorf("tc %d: expected %d workers, got %d", tcNum, tc.expectedNumWorkers, d.numWorkers)
|
|
}
|
|
if d.workers == nil {
|
|
t.Errorf("tc %d: expected non-nil workers", tcNum)
|
|
}
|
|
if d.jobCh == nil {
|
|
t.Errorf("tc %d: work channel not set up properly", tcNum)
|
|
}
|
|
if d.quit == nil {
|
|
t.Errorf("tc %d: expected non-nil quit channel", tcNum)
|
|
}
|
|
if d.logger == nil {
|
|
t.Errorf("tc %d: expected non-nil logger", tcNum)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestFairshare_initDispatcher(t *testing.T) {
|
|
testCases := []struct {
|
|
numWorkers int
|
|
}{
|
|
{
|
|
numWorkers: 1,
|
|
},
|
|
{
|
|
numWorkers: 10,
|
|
},
|
|
{
|
|
numWorkers: 100,
|
|
},
|
|
{
|
|
numWorkers: 1000,
|
|
},
|
|
}
|
|
|
|
l := newTestLogger("workerpool-test")
|
|
for tcNum, tc := range testCases {
|
|
d := createDispatcher("", tc.numWorkers, l)
|
|
|
|
d.init()
|
|
if len(d.workers) != tc.numWorkers {
|
|
t.Fatalf("tc %d: expected %d workers, got %d", tcNum, tc.numWorkers, len(d.workers))
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestFairshare_initializeWorker(t *testing.T) {
|
|
numWorkers := 3
|
|
|
|
d := createDispatcher("", numWorkers, newTestLogger("workerpool-test"))
|
|
|
|
for workerNum := 0; workerNum < numWorkers; workerNum++ {
|
|
d.initializeWorker()
|
|
|
|
w := d.workers[workerNum]
|
|
expectedName := fmt.Sprint("worker-", workerNum)
|
|
if w.name != expectedName {
|
|
t.Errorf("tc %d: expected name %s, got %s", workerNum, expectedName, w.name)
|
|
}
|
|
if w.jobCh != d.jobCh {
|
|
t.Errorf("tc %d: work channel not set up properly", workerNum)
|
|
}
|
|
if w.quit == nil || w.quit != d.quit {
|
|
t.Errorf("tc %d: quit channel not set up properly", workerNum)
|
|
}
|
|
if w.logger == nil || w.logger != d.logger {
|
|
t.Errorf("tc %d: logger not set up properly", workerNum)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestFairshare_startWorker(t *testing.T) {
|
|
d := newDispatcher("", 1, newTestLogger("workerpool-test"))
|
|
|
|
d.workers[0].start()
|
|
defer d.stop()
|
|
|
|
var wg sync.WaitGroup
|
|
ex := func(_ string) error {
|
|
wg.Done()
|
|
return nil
|
|
}
|
|
onFail := func(_ error) {}
|
|
|
|
job := newTestJob(t, "test job", ex, onFail)
|
|
|
|
doneCh := make(chan struct{})
|
|
timeout := time.After(5 * time.Second)
|
|
|
|
wg.Add(1)
|
|
d.dispatch(&job, nil, nil)
|
|
go func() {
|
|
wg.Wait()
|
|
doneCh <- struct{}{}
|
|
}()
|
|
|
|
select {
|
|
case <-doneCh:
|
|
break
|
|
case <-timeout:
|
|
t.Fatal("timed out")
|
|
}
|
|
}
|
|
|
|
func TestFairshare_start(t *testing.T) {
|
|
numJobs := 10
|
|
var wg sync.WaitGroup
|
|
ex := func(_ string) error {
|
|
wg.Done()
|
|
return nil
|
|
}
|
|
onFail := func(_ error) {}
|
|
|
|
wg.Add(numJobs)
|
|
d := newDispatcher("", 3, newTestLogger("workerpool-test"))
|
|
|
|
d.start()
|
|
defer d.stop()
|
|
|
|
doneCh := make(chan struct{})
|
|
timeout := time.After(5 * time.Second)
|
|
go func() {
|
|
wg.Wait()
|
|
doneCh <- struct{}{}
|
|
}()
|
|
|
|
for i := 0; i < numJobs; i++ {
|
|
job := newTestJob(t, fmt.Sprintf("job-%d", i), ex, onFail)
|
|
d.dispatch(&job, nil, nil)
|
|
}
|
|
|
|
select {
|
|
case <-doneCh:
|
|
break
|
|
case <-timeout:
|
|
t.Fatal("timed out")
|
|
}
|
|
}
|
|
|
|
func TestFairshare_stop(t *testing.T) {
|
|
d := newDispatcher("", 5, newTestLogger("workerpool-test"))
|
|
|
|
d.start()
|
|
|
|
doneCh := make(chan struct{})
|
|
timeout := time.After(5 * time.Second)
|
|
|
|
go func() {
|
|
d.stop()
|
|
d.wg.Wait()
|
|
doneCh <- struct{}{}
|
|
}()
|
|
|
|
select {
|
|
case <-doneCh:
|
|
break
|
|
case <-timeout:
|
|
t.Fatal("timed out")
|
|
}
|
|
}
|
|
|
|
func TestFairshare_stopMultiple(t *testing.T) {
|
|
d := newDispatcher("", 5, newTestLogger("workerpool-test"))
|
|
|
|
d.start()
|
|
|
|
doneCh := make(chan struct{})
|
|
timeout := time.After(5 * time.Second)
|
|
|
|
go func() {
|
|
d.stop()
|
|
d.wg.Wait()
|
|
doneCh <- struct{}{}
|
|
}()
|
|
|
|
select {
|
|
case <-doneCh:
|
|
break
|
|
case <-timeout:
|
|
t.Fatal("timed out")
|
|
}
|
|
|
|
// essentially, we don't want to panic here
|
|
var r interface{}
|
|
go func() {
|
|
t.Helper()
|
|
|
|
defer func() {
|
|
r = recover()
|
|
doneCh <- struct{}{}
|
|
}()
|
|
|
|
d.stop()
|
|
d.wg.Wait()
|
|
}()
|
|
|
|
select {
|
|
case <-doneCh:
|
|
break
|
|
case <-timeout:
|
|
t.Fatal("timed out")
|
|
}
|
|
|
|
if r != nil {
|
|
t.Fatalf("panic during second stop: %v", r)
|
|
}
|
|
}
|
|
|
|
func TestFairshare_dispatch(t *testing.T) {
|
|
d := newDispatcher("", 1, newTestLogger("workerpool-test"))
|
|
|
|
var wg sync.WaitGroup
|
|
accumulatedIDs := make([]string, 0)
|
|
ex := func(id string) error {
|
|
accumulatedIDs = append(accumulatedIDs, id)
|
|
wg.Done()
|
|
return nil
|
|
}
|
|
onFail := func(_ error) {}
|
|
|
|
expectedIDs := []string{"job-1", "job-2", "job-3", "job-4"}
|
|
go func() {
|
|
for _, id := range expectedIDs {
|
|
job := newTestJob(t, id, ex, onFail)
|
|
d.dispatch(&job, nil, nil)
|
|
}
|
|
}()
|
|
|
|
wg.Add(len(expectedIDs))
|
|
d.start()
|
|
defer d.stop()
|
|
|
|
doneCh := make(chan struct{})
|
|
go func() {
|
|
wg.Wait()
|
|
doneCh <- struct{}{}
|
|
}()
|
|
|
|
timeout := time.After(5 * time.Second)
|
|
select {
|
|
case <-doneCh:
|
|
break
|
|
case <-timeout:
|
|
t.Fatal("timed out")
|
|
}
|
|
|
|
if !reflect.DeepEqual(accumulatedIDs, expectedIDs) {
|
|
t.Fatalf("bad job ids. expected %v, got %v", expectedIDs, accumulatedIDs)
|
|
}
|
|
}
|
|
|
|
func TestFairshare_jobFailure(t *testing.T) {
|
|
numJobs := 10
|
|
testErr := fmt.Errorf("test error")
|
|
var wg sync.WaitGroup
|
|
|
|
ex := func(_ string) error {
|
|
return testErr
|
|
}
|
|
onFail := func(err error) {
|
|
if err != testErr {
|
|
t.Errorf("got unexpected error. expected %v, got %v", testErr, err)
|
|
}
|
|
|
|
wg.Done()
|
|
}
|
|
|
|
wg.Add(numJobs)
|
|
d := newDispatcher("", 3, newTestLogger("workerpool-test"))
|
|
|
|
d.start()
|
|
defer d.stop()
|
|
|
|
doneCh := make(chan struct{})
|
|
timeout := time.After(5 * time.Second)
|
|
go func() {
|
|
wg.Wait()
|
|
doneCh <- struct{}{}
|
|
}()
|
|
|
|
for i := 0; i < numJobs; i++ {
|
|
job := newTestJob(t, fmt.Sprintf("job-%d", i), ex, onFail)
|
|
d.dispatch(&job, nil, nil)
|
|
}
|
|
|
|
select {
|
|
case <-doneCh:
|
|
break
|
|
case <-timeout:
|
|
t.Fatal("timed out")
|
|
}
|
|
}
|
|
|
|
func TestFairshare_nilLoggerDispatcher(t *testing.T) {
|
|
d := newDispatcher("test-job-mgr", 1, nil)
|
|
if d.logger == nil {
|
|
t.Error("logger not set up properly")
|
|
}
|
|
}
|