-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add internal/worker/worker test (#602)
* add test * create comparator * add test * remove unused code * update comment * do not use comparator * comment unused code * fix * fix * fix * revert changes and use alias for go-cmp * fix * fix * 🤖 Update license headers / Format go codes and yaml files Signed-off-by: vdaas-ci <ci@vdaas.org> * fix Makefile * fix Co-authored-by: vdaas-ci <ci@vdaas.org>
- Loading branch information
Showing
5 changed files
with
725 additions
and
462 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,67 @@ | ||
// | ||
// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
package comparator | ||
|
||
import ( | ||
"sync/atomic" | ||
|
||
"github.com/google/go-cmp/cmp" | ||
"github.com/vdaas/vald/internal/errgroup" | ||
) | ||
|
||
type ( | ||
atomicValue = atomic.Value | ||
errorGroup = errgroup.Group | ||
|
||
Option = cmp.Option | ||
) | ||
|
||
var ( | ||
AllowUnexported = cmp.AllowUnexported | ||
Comparer = cmp.Comparer | ||
Diff = cmp.Diff | ||
Equal = cmp.Equal | ||
) | ||
|
||
/* | ||
var ( | ||
AtomicValue = func(x, y atomicValue) bool { | ||
return reflect.DeepEqual(x.Load(), y.Load()) | ||
} | ||
ErrorGroup = func(x, y errorGroup) bool { | ||
return reflect.DeepEqual(x, y) | ||
} | ||
// channel comparator | ||
ErrChannel := func(x, y <-chan error) bool { | ||
if x == nil && y == nil { | ||
return true | ||
} | ||
if x == nil || y == nil || len(x) != len(y) { | ||
return false | ||
} | ||
for e := range x { | ||
if e1 := <-y; !errors.Is(e, e1) { | ||
return false | ||
} | ||
} | ||
return true | ||
} | ||
) | ||
*/ |
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,65 @@ | ||
// | ||
// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
package worker | ||
|
||
import "context" | ||
|
||
var ( | ||
DefaultStartFunc = func(context.Context) (<-chan error, error) { | ||
return nil, nil | ||
} | ||
DefaultPushFunc = func(context.Context, JobFunc) error { | ||
return nil | ||
} | ||
DefaultPopFunc = func(context.Context) (JobFunc, error) { | ||
return nil, nil | ||
} | ||
DefaultLenFunc = func() uint64 { | ||
return uint64(0) | ||
} | ||
) | ||
|
||
type QueueMock struct { | ||
StartFunc func(context.Context) (<-chan error, error) | ||
PushFunc func(context.Context, JobFunc) error | ||
PopFunc func(context.Context) (JobFunc, error) | ||
LenFunc func() uint64 | ||
} | ||
|
||
func NewQueueMock() Queue { | ||
return &QueueMock{ | ||
StartFunc: DefaultStartFunc, | ||
PushFunc: DefaultPushFunc, | ||
PopFunc: DefaultPopFunc, | ||
LenFunc: DefaultLenFunc, | ||
} | ||
} | ||
|
||
func (q *QueueMock) Start(ctx context.Context) (<-chan error, error) { | ||
return q.StartFunc(ctx) | ||
} | ||
|
||
func (q *QueueMock) Push(ctx context.Context, job JobFunc) error { | ||
return q.PushFunc(ctx, job) | ||
} | ||
|
||
func (q *QueueMock) Pop(ctx context.Context) (JobFunc, error) { | ||
return q.PopFunc(ctx) | ||
} | ||
|
||
func (q *QueueMock) Len() uint64 { | ||
return q.LenFunc() | ||
} |
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
Oops, something went wrong.