mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* move mattes migrations to migratex * changes format of migrations to migratex format * updates test runner to use new interface (double checked this with printlns, the tests go fully down and then up, and work on pg/mysql) * remove mattes/migrate * update tests from deps * update readme * fix other file extensions
121 lines
2.8 KiB
Go
121 lines
2.8 KiB
Go
// Copyright 2017, OpenCensus Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package ocgrpc
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"go.opencensus.io/stats/view"
|
|
"golang.org/x/net/context"
|
|
|
|
"go.opencensus.io/trace"
|
|
|
|
"google.golang.org/grpc/stats"
|
|
)
|
|
|
|
func TestClientHandler(t *testing.T) {
|
|
ctx := context.Background()
|
|
te := &traceExporter{}
|
|
trace.RegisterExporter(te)
|
|
if err := ClientRequestCountView.Subscribe(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
span := trace.NewSpan("/foo", nil, trace.StartOptions{
|
|
Sampler: trace.AlwaysSample(),
|
|
})
|
|
ctx = trace.WithSpan(ctx, span)
|
|
|
|
var handler ClientHandler
|
|
ctx = handler.TagRPC(ctx, &stats.RPCTagInfo{
|
|
FullMethodName: "/service.foo/method",
|
|
})
|
|
handler.HandleRPC(ctx, &stats.Begin{
|
|
Client: true,
|
|
BeginTime: time.Now(),
|
|
})
|
|
handler.HandleRPC(ctx, &stats.End{
|
|
Client: true,
|
|
EndTime: time.Now(),
|
|
})
|
|
|
|
stats, err := view.RetrieveData(ClientRequestCountView.Name)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
traces := te.buffer
|
|
|
|
if got, want := len(stats), 1; got != want {
|
|
t.Errorf("Got %v stats; want %v", got, want)
|
|
}
|
|
if got, want := len(traces), 1; got != want {
|
|
t.Errorf("Got %v traces; want %v", got, want)
|
|
}
|
|
|
|
// Cleanup.
|
|
view.Unsubscribe(ClientErrorCountView)
|
|
}
|
|
|
|
func TestServerHandler(t *testing.T) {
|
|
ctx := context.Background()
|
|
te := &traceExporter{}
|
|
trace.RegisterExporter(te)
|
|
if err := ServerRequestCountView.Subscribe(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Ensure we start tracing.
|
|
span := trace.NewSpan("/foo", nil, trace.StartOptions{
|
|
Sampler: trace.AlwaysSample(),
|
|
})
|
|
ctx = trace.WithSpan(ctx, span)
|
|
|
|
handler := &ServerHandler{}
|
|
ctx = handler.TagRPC(ctx, &stats.RPCTagInfo{
|
|
FullMethodName: "/service.foo/method",
|
|
})
|
|
handler.HandleRPC(ctx, &stats.Begin{
|
|
BeginTime: time.Now(),
|
|
})
|
|
handler.HandleRPC(ctx, &stats.End{
|
|
EndTime: time.Now(),
|
|
})
|
|
|
|
stats, err := view.RetrieveData(ServerRequestCountView.Name)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
traces := te.buffer
|
|
|
|
if got, want := len(stats), 1; got != want {
|
|
t.Errorf("Got %v stats; want %v", got, want)
|
|
}
|
|
if got, want := len(traces), 1; got != want {
|
|
t.Errorf("Got %v traces; want %v", got, want)
|
|
}
|
|
|
|
// Cleanup.
|
|
view.Unsubscribe(ServerRequestCountView)
|
|
}
|
|
|
|
type traceExporter struct {
|
|
buffer []*trace.SpanData
|
|
}
|
|
|
|
func (e *traceExporter) ExportSpan(sd *trace.SpanData) {
|
|
e.buffer = append(e.buffer, sd)
|
|
}
|