File: parallel_spec_iterator.go

package info (click to toggle)
golang-ginkgo 1.16.5-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,004 kB
  • sloc: sh: 14; makefile: 7
file content (59 lines) | stat: -rw-r--r-- 1,149 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package spec_iterator

import (
	"encoding/json"
	"fmt"
	"net/http"

	"github.com/onsi/ginkgo/internal/spec"
)

type ParallelIterator struct {
	specs  []*spec.Spec
	host   string
	client *http.Client
}

func NewParallelIterator(specs []*spec.Spec, host string) *ParallelIterator {
	return &ParallelIterator{
		specs:  specs,
		host:   host,
		client: &http.Client{},
	}
}

func (s *ParallelIterator) Next() (*spec.Spec, error) {
	resp, err := s.client.Get(s.host + "/counter")
	if err != nil {
		return nil, err
	}
	defer resp.Body.Close()

	if resp.StatusCode != http.StatusOK {
		return nil, fmt.Errorf("unexpected status code %d", resp.StatusCode)
	}

	var counter Counter
	err = json.NewDecoder(resp.Body).Decode(&counter)
	if err != nil {
		return nil, err
	}

	if counter.Index >= len(s.specs) {
		return nil, ErrClosed
	}

	return s.specs[counter.Index], nil
}

func (s *ParallelIterator) NumberOfSpecsPriorToIteration() int {
	return len(s.specs)
}

func (s *ParallelIterator) NumberOfSpecsToProcessIfKnown() (int, bool) {
	return -1, false
}

func (s *ParallelIterator) NumberOfSpecsThatWillBeRunIfKnown() (int, bool) {
	return -1, false
}