Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Marshaling With a LineComment Results in Broken YAML when the Value of a Key is an Empty List #419

Open
michohl opened this issue Jan 15, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@michohl
Copy link

michohl commented Jan 15, 2024

Describe the bug
When using the yaml.MarshalWithOptions function combined with the yaml.WithComment option if there is an empty array on the same line as the key this will result in the value being written in the comment instead of as a value.

To Reproduce

The following snippet can be used in Go Playground (I would provide a link but it was failing to generate one for me):

package main

import (
	"fmt"

	"github.com/goccy/go-yaml"
)

var input []byte = []byte(`
type: default
description: test data
problem: []
`)

func main() {
	var f map[string]interface{}

	var err error
	if err = yaml.Unmarshal(input, &f); err != nil {
		panic(err)
	}

	var out []byte
	out, err = yaml.MarshalWithOptions(f, yaml.WithComment(
		yaml.CommentMap{
			"$.description": []*yaml.Comment{yaml.LineComment("This line has no problems writing the comment")},
			"$.problem":     []*yaml.Comment{yaml.LineComment("The problem is on this line of output")},
		},
	))

	fmt.Println(string(out))
}

Expected behavior
I would expect valid YAML to be written out and the value of problem would come before the comment character.

e.g.:

description: test data #This line has no problems writing the comment
problem: [] #The problem is on this line of output
type: default

Screenshots
This is the output I'm receiving when using the provided snippet:

description: test data #This line has no problems writing the comment
problem #The problem is on this line of output: []
type: default

Version Variables

  • Go version: 1.21.0
  • go-yaml's Version: v1.11.2

Additional context

If I switch from MarshalWithOptions -> Marshal and forgo the comments then the output is valid YAML. I have not done any testing with other option types.

@michohl michohl added the bug Something isn't working label Jan 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant