2019-08-03 17:13:38 -06:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-11-18 08:30:03 -07:00
|
|
|
package ocagent_test
|
2019-08-03 17:13:38 -06:00
|
|
|
|
|
|
|
import (
|
2019-11-22 11:41:57 -07:00
|
|
|
"bytes"
|
2019-08-03 17:13:38 -06:00
|
|
|
"encoding/json"
|
2019-11-27 09:24:29 -07:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"sync"
|
2019-08-03 17:13:38 -06:00
|
|
|
"testing"
|
2019-11-26 22:19:20 -07:00
|
|
|
"time"
|
2019-08-03 17:13:38 -06:00
|
|
|
|
2019-11-18 08:30:03 -07:00
|
|
|
"golang.org/x/tools/internal/telemetry/export/ocagent"
|
2019-08-03 17:13:38 -06:00
|
|
|
)
|
|
|
|
|
2019-11-26 22:19:20 -07:00
|
|
|
const testNodeStr = `{
|
|
|
|
"node":{
|
|
|
|
"identifier":{
|
|
|
|
"host_name":"tester",
|
|
|
|
"pid":1,
|
|
|
|
"start_timestamp":"1970-01-01T00:00:00Z"
|
|
|
|
},
|
|
|
|
"library_info":{
|
|
|
|
"language":4,
|
|
|
|
"exporter_version":"0.0.1",
|
|
|
|
"core_library_version":"x/tools"
|
|
|
|
},
|
|
|
|
"service_info":{
|
|
|
|
"name":"ocagent-tests"
|
|
|
|
}
|
|
|
|
},`
|
|
|
|
|
2020-03-13 12:20:13 -06:00
|
|
|
var (
|
|
|
|
exporter *ocagent.Exporter
|
|
|
|
sent fakeSender
|
|
|
|
start time.Time
|
|
|
|
at time.Time
|
|
|
|
end time.Time
|
|
|
|
)
|
2019-08-03 17:13:38 -06:00
|
|
|
|
2020-03-13 12:20:13 -06:00
|
|
|
func init() {
|
|
|
|
cfg := ocagent.Config{
|
|
|
|
Host: "tester",
|
|
|
|
Process: 1,
|
|
|
|
Service: "ocagent-tests",
|
|
|
|
Client: &http.Client{Transport: &sent},
|
2019-08-03 17:13:38 -06:00
|
|
|
}
|
2020-03-13 12:20:13 -06:00
|
|
|
cfg.Start, _ = time.Parse(time.RFC3339Nano, "1970-01-01T00:00:00Z")
|
|
|
|
exporter = ocagent.Connect(&cfg)
|
2019-08-03 17:13:38 -06:00
|
|
|
}
|
|
|
|
|
2019-11-18 08:30:03 -07:00
|
|
|
func checkJSON(t *testing.T, got, want []byte) {
|
2019-11-22 11:41:57 -07:00
|
|
|
// compare the compact form, to allow for formatting differences
|
|
|
|
g := &bytes.Buffer{}
|
|
|
|
if err := json.Compact(g, got); err != nil {
|
2019-11-18 08:30:03 -07:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2019-11-22 11:41:57 -07:00
|
|
|
w := &bytes.Buffer{}
|
|
|
|
if err := json.Compact(w, want); err != nil {
|
2019-11-18 08:30:03 -07:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2019-11-22 11:41:57 -07:00
|
|
|
if g.String() != w.String() {
|
2019-11-26 22:19:20 -07:00
|
|
|
t.Fatalf("Got:\n%s\nWant:\n%s", g, w)
|
2019-11-18 08:30:03 -07:00
|
|
|
}
|
2019-08-03 17:13:38 -06:00
|
|
|
}
|
2019-11-27 09:24:29 -07:00
|
|
|
|
|
|
|
type fakeSender struct {
|
|
|
|
mu sync.Mutex
|
|
|
|
data map[string][]byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *fakeSender) get(route string) []byte {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
data, found := s.data[route]
|
|
|
|
if found {
|
|
|
|
delete(s.data, route)
|
|
|
|
}
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *fakeSender) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
if s.data == nil {
|
|
|
|
s.data = make(map[string][]byte)
|
|
|
|
}
|
|
|
|
data, err := ioutil.ReadAll(req.Body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
path := req.URL.EscapedPath()
|
|
|
|
if _, found := s.data[path]; found {
|
|
|
|
return nil, fmt.Errorf("duplicate delivery to %v", path)
|
|
|
|
}
|
|
|
|
s.data[path] = data
|
|
|
|
return &http.Response{
|
|
|
|
Status: "200 OK",
|
|
|
|
StatusCode: 200,
|
|
|
|
Proto: "HTTP/1.0",
|
|
|
|
ProtoMajor: 1,
|
|
|
|
ProtoMinor: 0,
|
|
|
|
}, nil
|
|
|
|
}
|