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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
// Copyright 2020 CUE 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 adt_test
import (
"flag"
"fmt"
"path/filepath"
"slices"
"strings"
"testing"
"golang.org/x/tools/txtar"
"cuelang.org/go/cue"
"cuelang.org/go/cue/ast"
"cuelang.org/go/cue/cuecontext"
"cuelang.org/go/cue/errors"
"cuelang.org/go/cue/stats"
"cuelang.org/go/cue/token"
"cuelang.org/go/internal"
"cuelang.org/go/internal/core/adt"
"cuelang.org/go/internal/core/debug"
"cuelang.org/go/internal/core/eval"
"cuelang.org/go/internal/core/runtime"
"cuelang.org/go/internal/core/validate"
"cuelang.org/go/internal/cuedebug"
"cuelang.org/go/internal/cuetxtar"
_ "cuelang.org/go/pkg"
)
var (
todo = flag.Bool("todo", false, "run tests marked with #todo-compile")
)
// TestEval tests the default implementation of the evaluator.
func TestEval(t *testing.T) {
test := cuetxtar.TxTarTest{
Root: "../../../cue/testdata",
Name: "eval",
Skip: alwaysSkip,
ToDo: needFix,
}
if *todo {
test.ToDo = nil
}
test.Run(t, func(tc *cuetxtar.Test) {
runEvalTest(tc, internal.DefaultVersion, cuedebug.Config{})
})
}
var alwaysSkip = map[string]string{
"compile/erralias": "compile error",
}
var needFix = map[string]string{
"DIR/NAME": "reason",
"cycle/patterns": "cycle detection in v2",
}
// skipDebugDepErrors is a temporary hack to skip tests that are known to have
// counter errors.
// TODO: These counters should all go to zero.
var skipDebugDepErrors = map[string]int{
"disjunctions/elimination": 4,
"eval/notify": 3,
}
func TestEvalAlpha(t *testing.T) {
// TODO: remove use of externalDeps for processing. Currently, enabling
// this would fix some issues, but also introduce some closedness bugs.
// As a first step, we should ensure that the temporary hack of using
// externalDeps to agitate pending dependencies is replaced with a
// dedicated mechanism.
//
adt.DebugDeps = true // check unmatched dependencies.
flags := cuedebug.Config{
Sharing: true,
}
var todoAlpha = map[string]string{}
test := cuetxtar.TxTarTest{
Root: "../../../cue/testdata",
Name: "evalalpha",
Fallback: "eval", // Allow eval golden files to pass these tests.
Skip: alwaysSkip,
ToDo: todoAlpha,
}
if *todo {
test.ToDo = nil
}
var ran, skipped, errorCount int
test.Run(t, func(t *cuetxtar.Test) {
if reason := skipFiles(t.Instance().Files...); reason != "" {
skipped++
t.Skip(reason)
}
ran++
errorCount += runEvalTest(t, internal.DevVersion, flags)
})
t.Logf("todo: %d, ran: %d, skipped: %d, nodeErrors: %d",
len(todoAlpha), ran, skipped, errorCount)
}
// skipFiles returns true if the given files contain CUE that is not yet handled
// by the development version of the evaluator.
func skipFiles(a ...*ast.File) (reason string) {
// Skip disjunctions.
fn := func(n ast.Node) bool {
switch x := n.(type) {
case *ast.BinaryExpr:
if x.Op == token.OR {
// Uncomment to disable disjunction testing.
// NOTE: keep around until implementation of disjunctions
// is complete.
// reason = "disjunctions"
}
}
return true
}
for _, f := range a {
ast.Walk(f, fn, nil)
}
return reason
}
func runEvalTest(t *cuetxtar.Test, version internal.EvaluatorVersion, flags cuedebug.Config) (errorCount int) {
flags.OpenInline = t.Bool("openInline")
a := t.Instance()
r := runtime.NewWithSettings(version, flags)
v, err := r.Build(nil, a)
if err != nil {
t.WriteErrors(err)
return
}
e := eval.New(r)
ctx := e.NewContext(v)
ctx.Version = version
ctx.Config = flags
v.Finalize(ctx)
// Print discrepancies in dependencies.
m := ctx.ErrorGraphs
name := t.T.Name()[len("TestEvalAlpha/"):]
expectErrs := skipDebugDepErrors[name]
if adt.DebugDeps && len(m) != expectErrs {
if expectErrs == 0 {
t.Errorf("unexpected node errors: %d", len(m))
} else {
t.Errorf("unexpected number of node errors: got %d; expected %d",
len(m), expectErrs)
}
errorCount += 1 // Could use len(m), but this seems more useful.
i := 0
keys := make([]string, len(m))
for k := range m {
keys[i] = k
i++
}
slices.Sort(keys)
for _, s := range keys {
t.Errorf(" -- path: %s", s)
}
}
switch counts := ctx.Stats(); {
case version == internal.DevVersion:
for _, f := range t.Archive.Files {
if f.Name != "out/eval/stats" {
continue
}
c := cuecontext.New()
v := c.CompileBytes(f.Data)
var orig stats.Counts
v.Decode(&orig)
// TODO: do something more principled.
switch {
case orig.Disjuncts < counts.Disjuncts,
orig.Disjuncts > counts.Disjuncts*5 &&
counts.Disjuncts > 20,
orig.Conjuncts > counts.Conjuncts*2:
// For now, we only care about disjuncts.
// TODO: add triggers once the disjunction issues have bene
// solved.
w := t.Writer("stats")
fmt.Fprintln(w, counts)
}
break
}
default:
w := t.Writer("stats")
fmt.Fprintln(w, counts)
}
// if n := stats.Leaks(); n > 0 {
// t.Skipf("%d leaks reported", n)
// }
if b := validate.Validate(ctx, v, &validate.Config{
AllErrors: true,
}); b != nil {
fmt.Fprintln(t, "Errors:")
t.WriteErrors(b.Err)
fmt.Fprintln(t, "")
fmt.Fprintln(t, "Result:")
}
if v == nil {
return
}
t.Write(debug.AppendNode(nil, r, v, &debug.Config{Cwd: t.Dir}))
fmt.Fprintln(t)
return
}
// TestX is for debugging. Do not delete.
func TestX(t *testing.T) {
adt.DebugDeps = true
// adt.OpenGraphs = true
flags := cuedebug.Config{
Sharing: true, // Uncomment to turn sharing off.
OpenInline: true,
LogEval: 1, // Uncomment to turn logging off
}
version := internal.DefaultVersion
version = internal.DevVersion // comment to use default implementation.
in := `
-- cue.mod/module.cue --
module: "mod.test"
language: version: "v0.9.0"
-- in.cue --
`
if strings.HasSuffix(strings.TrimSpace(in), ".cue --") {
t.Skip()
}
a := txtar.Parse([]byte(in))
instance := cuetxtar.Load(a, t.TempDir())[0]
if instance.Err != nil {
t.Fatal(instance.Err)
}
r := runtime.NewWithSettings(version, flags)
v, err := r.Build(nil, instance)
if err != nil {
t.Fatal(err)
}
e := eval.New(r)
ctx := e.NewContext(v)
ctx.Config = flags
v.Finalize(ctx)
out := debug.NodeString(r, v, nil)
if adt.OpenGraphs {
for p, g := range ctx.ErrorGraphs {
path := filepath.Join(".debug/TestX", p)
adt.OpenNodeGraph("TestX", path, in, out, g)
}
}
if b := validate.Validate(ctx, v, &validate.Config{
AllErrors: true,
}); b != nil {
t.Log(errors.Details(b.Err, nil))
}
t.Error(out)
t.Log(ctx.Stats())
}
func BenchmarkUnifyAPI(b *testing.B) {
for i := 0; i < b.N; i++ {
b.StopTimer()
ctx := cuecontext.New()
v := ctx.CompileString("")
for j := 0; j < 500; j++ {
if j == 400 {
b.StartTimer()
}
v = v.FillPath(cue.ParsePath(fmt.Sprintf("i_%d", i)), i)
}
}
}
func TestIssue2293(t *testing.T) {
ctx := cuecontext.New()
c := `a: {}, a`
v1 := ctx.CompileString(c)
v2 := ctx.CompileString(c)
v1.Unify(v2)
}
|