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

go test: idea: f vs anonymous struct #22

Open
AmitKumarDas opened this issue Jul 13, 2024 · 0 comments
Open

go test: idea: f vs anonymous struct #22

AmitKumarDas opened this issue Jul 13, 2024 · 0 comments

Comments

@AmitKumarDas
Copy link
Collaborator

AmitKumarDas commented Jul 13, 2024

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":""}`)
}
@AmitKumarDas AmitKumarDas changed the title go test: simple: f vs struct go test: idea: f vs anonymous struct Jul 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant