Skip to content

Commit dd7a3c0

Browse files
committed
Fix: open list lit for fill value (#87)
Signed-off-by: FogDong <[email protected]> Signed-off-by: FogDong <[email protected]>
1 parent 6b7697b commit dd7a3c0

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed

pkg/cue/model/sets/operation.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ func strategyUnify(base cue.Value, patch cue.Value, params *UnifyParams, patchOp
281281
} else if params.PatchStrategy == StrategyJSONPatch {
282282
return jsonPatch(base, patch.LookupPath(cue.ParsePath("operations")))
283283
}
284-
openBase, err := openListLit(base)
284+
openBase, err := OpenListLit(base)
285285
if err != nil {
286286
return cue.Value{}, errors.Wrapf(err, "failed to open list it for merge")
287287
}

pkg/cue/model/sets/utils.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,9 @@ func OpenBaiscLit(val cue.Value) (*ast.File, error) {
311311
return f, err
312312
}
313313

314+
// OpenListLit make that the listLit can be modified.
314315
// nolint:staticcheck
315-
func openListLit(val cue.Value) (*ast.File, error) {
316+
func OpenListLit(val cue.Value) (*ast.File, error) {
316317
f, err := ToFile(val.Syntax(cue.Docs(true), cue.ResolveReferences(true)))
317318
if err != nil {
318319
return nil, err

pkg/cue/model/value/value.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,12 @@ func (val *Value) FillRaw(x string, paths ...string) error {
290290

291291
// FillValueByScript unify the value x at the given script path.
292292
func (val *Value) FillValueByScript(x *Value, path string) error {
293-
newV := val.v.FillPath(FieldPath(path), x.v)
293+
f, err := sets.OpenListLit(val.v)
294+
if err != nil {
295+
return err
296+
}
297+
v := val.r.BuildFile(f)
298+
newV := v.FillPath(FieldPath(path), x.v)
294299
if err := newV.Err(); err != nil {
295300
return err
296301
}

pkg/cue/model/value/value_test.go

+14-14
Original file line numberDiff line numberDiff line change
@@ -942,6 +942,13 @@ func TestFillByScript(t *testing.T) {
942942
v string
943943
expected string
944944
}{
945+
{
946+
name: "insert array",
947+
raw: `a: ["hello"]`,
948+
path: "a[1]",
949+
v: `"world"`,
950+
expected: `a: ["hello", "world", ...]
951+
`},
945952
{
946953
name: "insert array",
947954
raw: `a: b: [{x: 100},...]`,
@@ -970,7 +977,7 @@ a: b: c: [{x: 100}, {x: 101}, {x: 102}]`,
970977
x: 101
971978
}, {
972979
x: 102
973-
}]
980+
}, ...]
974981
}
975982
}
976983
`,
@@ -986,9 +993,9 @@ a: b: c: [{x: 100}, {x: 101}, {x: 102}]`,
986993
y: [{
987994
name: "key"
988995
value: "foo"
989-
}]
996+
}, ...]
990997
}
991-
}]
998+
}, ...]
992999
}
9931000
`,
9941001
},
@@ -1002,9 +1009,9 @@ a: b: c: [{x: 100}, {x: 101}, {x: 102}]`,
10021009
x: {
10031010
y: [{
10041011
name: "key"
1005-
}]
1012+
}, ...]
10061013
}
1007-
}]
1014+
}, ...]
10081015
c: {
10091016
x: "foo"
10101017
}
@@ -1021,9 +1028,9 @@ a: b: c: [{x: 100}, {x: 101}, {x: 102}]`,
10211028
x: {
10221029
y: [{
10231030
name: "key"
1024-
}]
1031+
}, ...]
10251032
}
1026-
}]
1033+
}, ...]
10271034
c: {
10281035
x: "foo"
10291036
}
@@ -1073,13 +1080,6 @@ a: b: c: [{x: 100}, {x: 101}, {x: 102}]`,
10731080
v: `"foo"`,
10741081
err: "a.b.0.x.y.0.name: conflicting values \"foo\" and \"key\"",
10751082
},
1076-
{
1077-
name: "filled value with incompatible list lengths",
1078-
raw: `a: b: [{x: y:[{name: "key"}]}]`,
1079-
path: "a.b[3].x.y[0].value",
1080-
v: `"foo"`,
1081-
err: "a.b: incompatible list lengths (1 and 5)",
1082-
},
10831083
}
10841084

10851085
for _, errCase := range errCases {

0 commit comments

Comments
 (0)