worker_test.go 836 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package worker
  2. import (
  3. "time"
  4. "errors"
  5. "context"
  6. "testing"
  7. )
  8. type SomeTest struct {
  9. Variable bool
  10. Done chan bool
  11. }
  12. func compareResults(v *SomeTest) (bool, error) {
  13. worker := New(func(ctx context.Context, w *Worker, o *[]Iface) {
  14. if sb, ok := (*o)[0].(*SomeTest); ok {
  15. sb.Variable = true
  16. sb.Done <- true
  17. }
  18. w.Shutdown(nil)
  19. }, &[]Iface{
  20. v,
  21. })
  22. select {
  23. case <-time.After(5 * time.Second):
  24. return false, errors.New("TIMEOUT")
  25. case <-v.Done:
  26. return v.Variable, worker.Shutdown(nil)
  27. }
  28. return v.Variable, worker.Shutdown(nil)
  29. }
  30. func TestGoroutineAndChangeVariable(t *testing.T) {
  31. someVar := SomeTest{Variable: false, Done: make(chan bool)}
  32. boolVar, err := compareResults(&someVar)
  33. if boolVar != true {
  34. t.Fatalf("should modify variable\n")
  35. }
  36. if err != nil {
  37. t.Fatalf("should be nil\n")
  38. }
  39. }