We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
package logstorage import ( "testing" ) func TestLogfmtParser(t *testing.T) { f := func(given, want string) { t.Helper() // to get the test case's exact loc p := getLogfmtParser() defer putLogfmtParser(p) p.parse(given) got := MarshalFieldsToJSON(nil, p.fields) if string(got) != want { t.Errorf("MarshalFieldsToJSON [%s]:\ngot:%s\nwant:%s\n", given, got, want) } } // f(given, want) f(``, `{}`) f(`foo=bar`, `{"foo":"bar"}`) f(`foo="bar=baz x=y"`, `{"foo":"bar=baz x=y"}`) f(`foo=`, `{"foo":""}`) f(`foo`, `{"foo":""}`) f(`foo bar`, `{"foo":"","bar":""}`) f(`foo bar=baz`, `{"foo":"","bar":"baz"}`) f(`foo=bar baz="x y" a=b`, `{"foo":"bar","baz":"x y","a":"b"}`) f(` foo=bar baz=x =z qwe`, `{"foo":"bar","baz":"x","_msg":"z","qwe":""}`) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: