mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 05:57:39 +03:00
The intention is to keep to repo root clean while the list of packages is slowly growing. Additionally, a bunch of small (~30 LoC) files in the repo root is merged into a single maddy.go file, for the same reason. Most of the internal code is moved into the internal/ directory. Go toolchain will make it impossible to import these packages from external applications. Some packages are renamed and moved into the pkg/ directory in the root. According to https://github.com/golang-standards/project-layout this is the de-facto standard to place "library code that's ok to use by external applications" in. To clearly define the purpose of top-level directories, README.md files are added to each.
47 lines
765 B
Go
47 lines
765 B
Go
package future
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestFuture_SetBeforeGet(t *testing.T) {
|
|
f := New()
|
|
|
|
f.Set(1)
|
|
val := f.Get().(int)
|
|
|
|
if val != 1 {
|
|
t.Fatal("wrong val received from Get")
|
|
}
|
|
}
|
|
|
|
func TestFuture_Wait(t *testing.T) {
|
|
f := New()
|
|
|
|
go func() {
|
|
time.Sleep(500 * time.Millisecond)
|
|
f.Set(1)
|
|
}()
|
|
|
|
val := f.Get().(int)
|
|
if val != 1 {
|
|
t.Fatal("wrong val received from Get")
|
|
}
|
|
|
|
val = f.Get().(int)
|
|
if val != 1 {
|
|
t.Fatal("wrong val received from Get on second try")
|
|
}
|
|
}
|
|
|
|
func TestFuture_WaitCtx(t *testing.T) {
|
|
f := New()
|
|
ctx, cancel := context.WithTimeout(context.Background(), 500*time.Millisecond)
|
|
defer cancel()
|
|
_, err := f.GetContext(ctx)
|
|
if err != context.DeadlineExceeded {
|
|
t.Fatal("context is not cancelled")
|
|
}
|
|
}
|