testutil.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. Copyright 2014 CoreOS, Inc.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package testutil
  14. import (
  15. "net/url"
  16. "runtime"
  17. "testing"
  18. "github.com/coreos/etcd/pkg/types"
  19. )
  20. // WARNING: This is a hack.
  21. // Remove this when we are able to block/check the status of the go-routines.
  22. func ForceGosched() {
  23. // possibility enough to sched up to 10 go routines.
  24. for i := 0; i < 10000; i++ {
  25. runtime.Gosched()
  26. }
  27. }
  28. func MustNewURLs(t *testing.T, urls []string) []url.URL {
  29. if urls == nil {
  30. return nil
  31. }
  32. u, err := types.NewURLs(urls)
  33. if err != nil {
  34. t.Fatalf("unexpected new urls error: %v", err)
  35. }
  36. return u
  37. }