a06f331eb8
CI / benchmark (push) Has been skipped
install-script / posix-syntax (push) Successful in 6m1s
CI / build-onnx (push) Failing after 6m43s
init-smoke / dry-run (push) Failing after 15m57s
security / govulncheck (push) Has been cancelled
security / trivy-fs (push) Has been cancelled
CI / test (1.26, ubuntu-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
CI / test (1.26, macos-latest) (push) Has been cancelled
CI / build-windows (push) Has been cancelled
CI / lint (push) Has been cancelled
install-script / powershell-syntax (push) Has been cancelled
install-script / install (macos-14) (push) Has been cancelled
install-script / install (ubuntu-latest) (push) Has been cancelled
41 lines
954 B
Go
41 lines
954 B
Go
package languages
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/zzet/gortex/internal/graph"
|
|
)
|
|
|
|
// TestFactoryChainReceiverExprStamped pins that a factory chain whose hop the
|
|
// in-extractor walk cannot type (the method lives cross-file) preserves the
|
|
// receiver expression under Meta["receiver_expr"] for the resolver pass.
|
|
func TestFactoryChainReceiverExprStamped(t *testing.T) {
|
|
src := []byte(`package main
|
|
|
|
type Builder struct{}
|
|
|
|
func New() *Builder { return &Builder{} }
|
|
|
|
func run() {
|
|
New().Frob().Run()
|
|
}
|
|
`)
|
|
res, err := NewGoExtractor().Extract("main.go", src)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
var runEdge *graph.Edge
|
|
for _, e := range res.Edges {
|
|
if e.Kind == graph.EdgeCalls && strings.HasSuffix(e.To, ".Run") {
|
|
runEdge = e
|
|
}
|
|
}
|
|
if runEdge == nil {
|
|
t.Fatal("Run() call edge not found")
|
|
}
|
|
if got, _ := runEdge.Meta["receiver_expr"].(string); got != "New().Frob()" {
|
|
t.Errorf("receiver_expr = %q, want New().Frob()", got)
|
|
}
|
|
}
|