Skip to content

Commit 4f8e8f4

Browse files
authored
expfmt: Add WithEscapingScheme to help construct Formats (#688)
expfmt: Add WithEscapingScheme to help construct Formats Signed-off-by: Owen Williams <[email protected]> --------- Signed-off-by: Owen Williams <[email protected]>
1 parent b1880d0 commit 4f8e8f4

File tree

2 files changed

+64
-6
lines changed

2 files changed

+64
-6
lines changed

expfmt/expfmt.go

+23
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,29 @@ func NewOpenMetricsFormat(version string) (Format, error) {
112112
return FmtUnknown, fmt.Errorf("unknown open metrics version string")
113113
}
114114

115+
// WithEscapingScheme returns a copy of Format with the specified escaping
116+
// scheme appended to the end. If an escaping scheme already exists it is
117+
// removed.
118+
func (f Format) WithEscapingScheme(s model.EscapingScheme) Format {
119+
var terms []string
120+
for _, p := range strings.Split(string(f), ";") {
121+
toks := strings.Split(p, "=")
122+
if len(toks) != 2 {
123+
trimmed := strings.TrimSpace(p)
124+
if len(trimmed) > 0 {
125+
terms = append(terms, trimmed)
126+
}
127+
continue
128+
}
129+
key := strings.TrimSpace(toks[0])
130+
if key != model.EscapingKey {
131+
terms = append(terms, strings.TrimSpace(p))
132+
}
133+
}
134+
terms = append(terms, model.EscapingKey+"="+s.String())
135+
return Format(strings.Join(terms, "; "))
136+
}
137+
115138
// FormatType deduces an overall FormatType for the given format.
116139
func (f Format) FormatType() FormatType {
117140
toks := strings.Split(string(f), ";")

expfmt/expfmt_test.go

+41-6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ import (
1717
"testing"
1818

1919
"github.com/prometheus/common/model"
20+
21+
"github.com/stretchr/testify/require"
2022
)
2123

2224
// Test Format to Escapting Scheme conversion
@@ -92,9 +94,7 @@ func TestToFormatType(t *testing.T) {
9294
},
9395
}
9496
for _, test := range tests {
95-
if test.format.FormatType() != test.expected {
96-
t.Errorf("expected %v got %v", test.expected, test.format.FormatType())
97-
}
97+
require.Equal(t, test.expected, test.format.FormatType())
9898
}
9999
}
100100

@@ -122,8 +122,43 @@ func TestToEscapingScheme(t *testing.T) {
122122
},
123123
}
124124
for _, test := range tests {
125-
if test.format.ToEscapingScheme() != test.expected {
126-
t.Errorf("expected %v got %v", test.expected, test.format.ToEscapingScheme())
127-
}
125+
require.Equal(t, test.expected, test.format.ToEscapingScheme())
126+
}
127+
}
128+
129+
func TestWithEscapingScheme(t *testing.T) {
130+
tests := []struct {
131+
name string
132+
format Format
133+
scheme model.EscapingScheme
134+
expected string
135+
}{
136+
{
137+
name: "no existing term, append one",
138+
format: FmtProtoCompact,
139+
scheme: model.DotsEscaping,
140+
expected: "application/vnd.google.protobuf; proto=io.prometheus.client.MetricFamily; encoding=compact-text; escaping=dots",
141+
},
142+
{
143+
name: "existing term at end, replace",
144+
format: "application/openmetrics-text; version=1.0.0; charset=utf-8; escaping=underscores",
145+
scheme: model.ValueEncodingEscaping,
146+
expected: "application/openmetrics-text; version=1.0.0; charset=utf-8; escaping=values",
147+
},
148+
{
149+
name: "existing term in middle, replace",
150+
format: "application/openmetrics-text; escaping=dots; version=1.0.0; charset=utf-8; ",
151+
scheme: model.NoEscaping,
152+
expected: "application/openmetrics-text; version=1.0.0; charset=utf-8; escaping=allow-utf-8",
153+
},
154+
{
155+
name: "multiple existing terms removed",
156+
format: "application/openmetrics-text; escaping=dots; version=1.0.0; charset=utf-8; escaping=allow-utf-8",
157+
scheme: model.ValueEncodingEscaping,
158+
expected: "application/openmetrics-text; version=1.0.0; charset=utf-8; escaping=values",
159+
},
160+
}
161+
for _, test := range tests {
162+
require.Equal(t, test.expected, string(test.format.WithEscapingScheme(test.scheme)))
128163
}
129164
}

0 commit comments

Comments
 (0)