Skip to content

Commit 053f68e

Browse files
authored
Merge branch 'main' into feat/add_traces_for_ofrep
2 parents 5fa98b8 + b333e11 commit 053f68e

File tree

4 files changed

+79
-8
lines changed

4 files changed

+79
-8
lines changed

core/pkg/store/flags.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func (f *State) Get(_ context.Context, key string) (model.Flag, model.Metadata,
7070
metadata := f.getMetadata()
7171
flag, ok := f.Flags[key]
7272
if ok {
73-
metadata = f.getMetadataForSource(flag.Source)
73+
metadata = f.GetMetadataForSource(flag.Source)
7474
}
7575

7676
return flag, metadata, ok
@@ -319,7 +319,7 @@ func (f *State) Merge(
319319
return notifications, resyncRequired
320320
}
321321

322-
func (f *State) getMetadataForSource(source string) model.Metadata {
322+
func (f *State) GetMetadataForSource(source string) model.Metadata {
323323
perSource, ok := f.MetadataPerSource[source]
324324
if ok && perSource != nil {
325325
return maps.Clone(perSource)

flagd/pkg/service/flag-sync/sync-multiplexer.go

+2
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,8 @@ func (r *Multiplexer) reFill() error {
199199

200200
// for all flags, sort them into their correct selector
201201
for source, flags := range collector {
202+
// store the corresponding metadata
203+
metadata := r.store.GetMetadataForSource(source)
202204
bytes, err := json.Marshal(map[string]interface{}{"flags": flags, "metadata": metadata})
203205
if err != nil {
204206
return fmt.Errorf("unable to marshal flags: %w", err)

flagd/pkg/service/flag-sync/sync-multiplexer_test.go

+65-6
Original file line numberDiff line numberDiff line change
@@ -168,35 +168,94 @@ func TestGetAllFlags(t *testing.T) {
168168
}
169169

170170
// when - get all with open scope
171-
flags, err := mux.GetAllFlags("")
171+
flagConfig, err := mux.GetAllFlags("")
172172
if err != nil {
173173
t.Fatal("error when retrieving all flags")
174174
return
175175
}
176176

177-
if len(flags) == 0 {
177+
if len(flagConfig) == 0 {
178178
t.Fatal("expected no empty flags")
179179
return
180180
}
181181

182182
// when - get all with a scope
183-
flags, err = mux.GetAllFlags("A")
183+
flagConfig, err = mux.GetAllFlags("A")
184184
if err != nil {
185185
t.Fatal("error when retrieving all flags")
186186
return
187187
}
188188

189-
if len(flags) == 0 || !strings.Contains(flags, fmt.Sprintf("\"source\":\"%s\"", "A")) {
189+
if len(flagConfig) == 0 || !strings.Contains(flagConfig, fmt.Sprintf("\"source\":\"%s\"", "A")) {
190190
t.Fatal("expected flags to be scoped")
191191
return
192192
}
193193

194194
// when - get all for a flagless-scope
195-
flags, err = mux.GetAllFlags("C")
195+
flagConfig, err = mux.GetAllFlags("C")
196196
if err != nil {
197197
t.Fatal("error when retrieving all flags")
198198
return
199199
}
200200

201-
assert.Equal(t, flags, emptyConfigString)
201+
assert.Equal(t, flagConfig, emptyConfigString)
202+
}
203+
204+
func TestGetAllFlagsMetadata(t *testing.T) {
205+
// given
206+
mux, err := NewMux(getSimpleFlagStore())
207+
if err != nil {
208+
t.Fatal("error during flag extraction")
209+
return
210+
}
211+
212+
// when - get all with open scope
213+
flagConfig, err := mux.GetAllFlags("")
214+
if err != nil {
215+
t.Fatal("error when retrieving all flags")
216+
return
217+
}
218+
219+
if len(flagConfig) == 0 {
220+
t.Fatal("expected no empty flags")
221+
return
222+
}
223+
224+
if !strings.Contains(flagConfig, "\"keyA\":\"valueA\"") {
225+
t.Fatal("expected unique metadata key for A to be present")
226+
return
227+
}
228+
229+
if !strings.Contains(flagConfig, "\"keyB\":\"valueB\"") {
230+
t.Fatal("expected unique metadata key for B to be present")
231+
return
232+
}
233+
234+
// duplicated keys are removed
235+
if strings.Contains(flagConfig, "\"keyDuped\":\"value\"") {
236+
t.Fatal("expected duplicated metadata key NOT to be present")
237+
return
238+
}
239+
240+
// when - get all with a scope
241+
flagConfig, err = mux.GetAllFlags("A")
242+
if err != nil {
243+
t.Fatal("error when retrieving all flags")
244+
return
245+
}
246+
247+
if len(flagConfig) == 0 {
248+
t.Fatal("expected no empty flags")
249+
return
250+
}
251+
252+
if !strings.Contains(flagConfig, "\"keyA\":\"valueA\"") {
253+
t.Fatal("expected unique metadata key to be present")
254+
return
255+
}
256+
257+
if !strings.Contains(flagConfig, "\"keyDuped\":\"value\"") {
258+
t.Fatal("expected duplicated metadata key to be present")
259+
return
260+
}
202261
}

flagd/pkg/service/flag-sync/util_test.go

+10
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,16 @@ func getSimpleFlagStore() (*store.State, []string) {
3434
Source: "B",
3535
})
3636

37+
flagStore.MetadataPerSource["A"] = model.Metadata{
38+
"keyDuped": "value",
39+
"keyA": "valueA",
40+
}
41+
42+
flagStore.MetadataPerSource["B"] = model.Metadata{
43+
"keyDuped": "value",
44+
"keyB": "valueB",
45+
}
46+
3747
return flagStore, []string{"A", "B", "C"}
3848
}
3949

0 commit comments

Comments
 (0)