mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-18 20:27:57 +00:00
9688f516e0
recieve -> receive Signed-off-by: Ikko Eltociear Ashimine <eltociear@gmail.com>
81 lines
2.2 KiB
Go
81 lines
2.2 KiB
Go
package concurrency_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
. "github.com/mudler/LocalAI/pkg/concurrency"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("pkg/concurrency unit tests", func() {
|
|
It("can be used to receive a result across goroutines", func() {
|
|
jr, wjr := NewJobResult[string, string]("foo")
|
|
Expect(jr).ToNot(BeNil())
|
|
Expect(wjr).ToNot(BeNil())
|
|
|
|
go func(wjr *WritableJobResult[string, string]) {
|
|
time.Sleep(time.Second * 5)
|
|
wjr.SetResult("bar", nil)
|
|
}(wjr)
|
|
|
|
resPtr, err := jr.Wait(context.Background())
|
|
Expect(err).To(BeNil())
|
|
Expect(jr.Request).ToNot(BeNil())
|
|
Expect(*jr.Request()).To(Equal("foo"))
|
|
Expect(resPtr).ToNot(BeNil())
|
|
Expect(*resPtr).To(Equal("bar"))
|
|
|
|
})
|
|
|
|
It("can be used to receive an error across goroutines", func() {
|
|
jr, wjr := NewJobResult[string, string]("foo")
|
|
Expect(jr).ToNot(BeNil())
|
|
Expect(wjr).ToNot(BeNil())
|
|
|
|
go func(wjr *WritableJobResult[string, string]) {
|
|
time.Sleep(time.Second * 5)
|
|
wjr.SetResult("", fmt.Errorf("test"))
|
|
}(wjr)
|
|
|
|
_, err := jr.Wait(context.Background())
|
|
Expect(jr.Request).ToNot(BeNil())
|
|
Expect(*jr.Request()).To(Equal("foo"))
|
|
Expect(err).ToNot(BeNil())
|
|
Expect(err).To(MatchError("test"))
|
|
})
|
|
|
|
It("can properly handle timeouts", func() {
|
|
jr, wjr := NewJobResult[string, string]("foo")
|
|
Expect(jr).ToNot(BeNil())
|
|
Expect(wjr).ToNot(BeNil())
|
|
|
|
go func(wjr *WritableJobResult[string, string]) {
|
|
time.Sleep(time.Second * 5)
|
|
wjr.SetResult("bar", nil)
|
|
}(wjr)
|
|
|
|
timeout1s, c1 := context.WithTimeoutCause(context.Background(), time.Second, fmt.Errorf("timeout"))
|
|
timeout10s, c2 := context.WithTimeoutCause(context.Background(), time.Second*10, fmt.Errorf("timeout"))
|
|
|
|
_, err := jr.Wait(timeout1s)
|
|
Expect(jr.Request).ToNot(BeNil())
|
|
Expect(*jr.Request()).To(Equal("foo"))
|
|
Expect(err).ToNot(BeNil())
|
|
Expect(err).To(MatchError(context.DeadlineExceeded))
|
|
|
|
resPtr, err := jr.Wait(timeout10s)
|
|
Expect(jr.Request).ToNot(BeNil())
|
|
Expect(*jr.Request()).To(Equal("foo"))
|
|
Expect(err).To(BeNil())
|
|
Expect(resPtr).ToNot(BeNil())
|
|
Expect(*resPtr).To(Equal("bar"))
|
|
|
|
// Is this needed? Cleanup Either Way.
|
|
c1()
|
|
c2()
|
|
})
|
|
})
|