2020-11-06 00:23:26 +00:00
package yqlib
import (
"testing"
)
2022-09-30 01:22:58 +00:00
var expectedWhereIsMyCommentMapKey = ` D0 , P [ ] , ( ! ! seq ) : : - p : ""
isKey : false
hc : ""
lc : ""
fc : ""
- p : hello
isKey : true
hc : ""
lc : hello - world - comment
fc : ""
- p : hello
isKey : false
hc : ""
lc : ""
fc : ""
- p : hello . message
isKey : true
hc : ""
lc : ""
fc : ""
- p : hello . message
isKey : false
hc : ""
lc : ""
fc : ""
`
var expectedWhereIsMyCommentArray = ` D0 , P [ ] , ( ! ! seq ) : : - p : ""
isKey : false
hc : ""
lc : ""
fc : ""
- p : name
isKey : true
hc : ""
lc : ""
fc : ""
- p : name
isKey : false
hc : ""
lc : ""
fc : ""
- p : name .0
isKey : false
hc : under - name - comment
lc : ""
fc : ""
`
2020-11-06 00:23:26 +00:00
var commentOperatorScenarios = [ ] expressionScenario {
{
2022-09-29 23:46:07 +00:00
description : "Set line comment" ,
subdescription : "Set the comment on the key node for more reliability (see below)." ,
document : ` a: cat ` ,
expression : ` .a line_comment="single" ` ,
2020-11-06 00:23:26 +00:00
expected : [ ] string {
"D0, P[], (doc)::a: cat # single\n" ,
} ,
} ,
2022-09-29 23:46:07 +00:00
{
description : "Set line comment of a maps/arrays" ,
subdescription : "For maps and arrays, you need to set the line comment on the _key_ node. This will also work for scalars." ,
document : "a:\n b: things" ,
expression : ` (.a | key) line_comment="single" ` ,
expected : [ ] string {
"D0, P[], (doc)::a: # single\n b: things\n" ,
} ,
} ,
2021-01-06 09:22:50 +00:00
{
skipDoc : true ,
document : "a: cat\nb: dog" ,
2022-02-10 22:05:17 +00:00
expression : ` .a line_comment=.b ` ,
2021-01-06 09:22:50 +00:00
expected : [ ] string {
"D0, P[], (doc)::a: cat # dog\nb: dog\n" ,
} ,
} ,
{
skipDoc : true ,
document : "a: cat\n---\na: dog" ,
2022-02-10 22:05:17 +00:00
expression : ` .a line_comment |= documentIndex ` ,
2021-01-06 09:22:50 +00:00
expected : [ ] string {
"D0, P[], (doc)::a: cat # 0\n" ,
"D1, P[], (doc)::a: dog # 1\n" ,
} ,
} ,
{
description : "Use update assign to perform relative updates" ,
document : "a: cat\nb: dog" ,
2022-02-10 22:05:17 +00:00
expression : ` .. line_comment |= . ` ,
2021-01-06 09:22:50 +00:00
expected : [ ] string {
"D0, P[], (!!map)::a: cat # cat\nb: dog # dog\n" ,
} ,
} ,
{
skipDoc : true ,
document : "a: cat\nb: dog" ,
expression : ` .. comments |= . ` ,
expected : [ ] string {
"D0, P[], (!!map)::a: cat # cat\n# cat\n\n# cat\nb: dog # dog\n# dog\n\n# dog\n" ,
} ,
} ,
2022-09-30 01:22:58 +00:00
{
description : "Where is the comment - map key example" ,
subdescription : "The underlying yaml parser can assign comments in a document to surprising nodes. Use an expression like this to find where you comment is. 'p' indicates the path, 'isKey' is if the node is a map key (as opposed to a map value).\nFrom this, you can see the 'hello-world-comment' is actually on the 'hello' key" ,
document : "hello: # hello-world-comment\n message: world" ,
expression : ` [... | { "p": path | join("."), "isKey": is_key, "hc": headComment, "lc": lineComment, "fc": footComment}] ` ,
expected : [ ] string {
expectedWhereIsMyCommentMapKey ,
} ,
} ,
2022-09-30 01:26:36 +00:00
{
description : "Retreive comment - map key example" ,
subdescription : "From the previous example, we know that the comment is on the 'hello' _key_ as a lineComment" ,
document : "hello: # hello-world-comment\n message: world" ,
expression : ` .hello | key | line_comment ` ,
expected : [ ] string {
"D0, P[hello], (!!str)::hello-world-comment\n" ,
} ,
} ,
2022-09-30 01:22:58 +00:00
{
description : "Where is the comment - array example" ,
subdescription : "The underlying yaml parser can assign comments in a document to surprising nodes. Use an expression like this to find where you comment is. 'p' indicates the path, 'isKey' is if the node is a map key (as opposed to a map value).\nFrom this, you can see the 'under-name-comment' is actually on the first child" ,
document : "name:\n # under-name-comment\n - first-array-child" ,
expression : ` [... | { "p": path | join("."), "isKey": is_key, "hc": headComment, "lc": lineComment, "fc": footComment}] ` ,
expected : [ ] string {
expectedWhereIsMyCommentArray ,
} ,
} ,
2022-09-30 01:26:36 +00:00
{
description : "Retreive comment - array example" ,
subdescription : "From the previous example, we know that the comment is on the first child as a headComment" ,
document : "name:\n # under-name-comment\n - first-array-child" ,
expression : ` .name[0] | headComment ` ,
expected : [ ] string {
"D0, P[name 0], (!!str)::under-name-comment\n" ,
} ,
} ,
2020-11-06 00:23:26 +00:00
{
2020-11-06 00:45:18 +00:00
description : "Set head comment" ,
2020-11-06 00:23:26 +00:00
document : ` a: cat ` ,
2022-02-10 22:05:17 +00:00
expression : ` . head_comment="single" ` ,
2020-11-06 00:23:26 +00:00
expected : [ ] string {
"D0, P[], (doc)::# single\n\na: cat\n" ,
} ,
} ,
2022-09-30 00:15:41 +00:00
{
description : "Set head comment of a map entry" ,
document : "f: foo\na:\n b: cat" ,
expression : ` (.a | key) head_comment="single" ` ,
expected : [ ] string {
"D0, P[], (doc)::f: foo\n# single\na:\n b: cat\n" ,
} ,
} ,
2020-11-06 00:23:26 +00:00
{
2020-11-06 00:45:18 +00:00
description : "Set foot comment, using an expression" ,
2020-11-06 00:23:26 +00:00
document : ` a: cat ` ,
2022-02-10 22:05:17 +00:00
expression : ` . foot_comment=.a ` ,
2020-11-06 00:23:26 +00:00
expected : [ ] string {
2022-05-25 00:54:03 +00:00
"D0, P[], (doc)::a: cat\n# cat\n" ,
2020-11-06 00:23:26 +00:00
} ,
} ,
2022-08-30 01:24:26 +00:00
{
skipDoc : true ,
description : "Set foot comment, using an expression" ,
document : "a: cat\n\n# hi" ,
expression : ` . foot_comment="" ` ,
expected : [ ] string {
"D0, P[], (doc)::a: cat\n" ,
} ,
} ,
2021-05-16 04:17:13 +00:00
{
skipDoc : true ,
document : ` a: cat ` ,
2022-02-10 22:05:17 +00:00
expression : ` . foot_comment=.b.d ` ,
2021-05-16 04:17:13 +00:00
expected : [ ] string {
"D0, P[], (doc)::a: cat\n" ,
} ,
} ,
{
skipDoc : true ,
document : ` a: cat ` ,
2022-02-10 22:05:17 +00:00
expression : ` . foot_comment|=.b.d ` ,
2021-05-16 04:17:13 +00:00
expected : [ ] string {
"D0, P[], (doc)::a: cat\n" ,
} ,
} ,
2020-11-06 00:23:26 +00:00
{
description : "Remove comment" ,
document : "a: cat # comment\nb: dog # leave this" ,
2022-02-10 22:05:17 +00:00
expression : ` .a line_comment="" ` ,
2020-11-06 00:23:26 +00:00
expected : [ ] string {
"D0, P[], (doc)::a: cat\nb: dog # leave this\n" ,
} ,
} ,
{
2021-04-29 03:18:57 +00:00
description : "Remove (strip) all comments" ,
2021-01-13 22:12:14 +00:00
subdescription : "Note the use of `...` to ensure key nodes are included." ,
document : "# hi\n\na: cat # comment\n\n# great\n\nb: # key comment" ,
expression : ` ... comments="" ` ,
2020-11-06 00:23:26 +00:00
expected : [ ] string {
2021-01-13 22:12:14 +00:00
"D0, P[], (!!map)::a: cat\nb:\n" ,
2020-11-06 00:23:26 +00:00
} ,
} ,
2020-11-06 00:45:18 +00:00
{
description : "Get line comment" ,
document : "# welcome!\n\na: cat # meow\n\n# have a great day" ,
2022-02-10 22:05:17 +00:00
expression : ` .a | line_comment ` ,
2020-11-06 00:45:18 +00:00
expected : [ ] string {
"D0, P[a], (!!str)::meow\n" ,
} ,
} ,
{
2021-11-03 04:00:58 +00:00
description : "Get head comment" ,
dontFormatInputForDoc : true ,
document : "# welcome!\n\na: cat # meow\n\n# have a great day" ,
2022-02-10 22:05:17 +00:00
expression : ` . | head_comment ` ,
2020-11-06 00:45:18 +00:00
expected : [ ] string {
"D0, P[], (!!str)::welcome!\n" ,
} ,
} ,
2022-08-30 01:24:26 +00:00
{
skipDoc : true ,
description : "strip trailing comment recurse all" ,
document : "a: cat\n\n# haha" ,
expression : ` ... comments= "" ` ,
expected : [ ] string {
"D0, P[], (!!map)::a: cat\n" ,
} ,
} ,
{
skipDoc : true ,
description : "strip trailing comment recurse values" ,
document : "a: cat\n\n# haha" ,
expression : ` .. comments= "" ` ,
expected : [ ] string {
"D0, P[], (!!map)::a: cat\n" ,
} ,
} ,
2021-11-12 04:02:28 +00:00
{
2021-11-23 23:59:19 +00:00
description : "Head comment with document split" ,
2021-11-12 04:02:28 +00:00
dontFormatInputForDoc : true ,
document : "# welcome!\n---\n# bob\na: cat # meow\n\n# have a great day" ,
2022-02-10 22:05:17 +00:00
expression : ` head_comment ` ,
2021-11-12 04:02:28 +00:00
expected : [ ] string {
2021-11-13 23:18:02 +00:00
"D0, P[], (!!str)::welcome!\nbob\n" ,
2021-11-12 04:02:28 +00:00
} ,
} ,
2020-11-06 00:45:18 +00:00
{
2021-11-03 04:00:58 +00:00
description : "Get foot comment" ,
dontFormatInputForDoc : true ,
2021-11-12 04:02:28 +00:00
document : "# welcome!\n\na: cat # meow\n\n# have a great day\n# no really" ,
2022-02-10 22:05:17 +00:00
expression : ` . | foot_comment ` ,
2020-11-06 00:45:18 +00:00
expected : [ ] string {
2021-11-12 04:02:28 +00:00
"D0, P[], (!!str)::have a great day\nno really\n" ,
2020-11-06 00:45:18 +00:00
} ,
} ,
2020-11-06 00:23:26 +00:00
}
func TestCommentOperatorScenarios ( t * testing . T ) {
for _ , tt := range commentOperatorScenarios {
testScenario ( t , & tt )
}
2021-12-21 04:02:07 +00:00
documentOperatorScenarios ( t , "comment-operators" , commentOperatorScenarios )
2020-11-06 00:23:26 +00:00
}