Use MBID with most occurrences

This commit is contained in:
Deluan 2020-10-20 17:16:24 -04:00
parent 6663c079e0
commit 173dd52fe1
4 changed files with 50 additions and 3 deletions

View file

@ -1,6 +1,7 @@
package persistence
import (
"context"
"time"
"github.com/Masterminds/squirrel"
@ -61,4 +62,16 @@ var _ = Describe("Helpers", func() {
Expect(err).To(BeNil())
})
})
Describe("getMbzId", func() {
It(`returns "" when no ids are passed`, func() {
Expect(getMbzId(context.TODO(), " ", "", "")).To(Equal(""))
})
It(`returns the only id passed`, func() {
Expect(getMbzId(context.TODO(), "1234 ", "", "")).To(Equal("1234"))
})
It(`returns the id with higher frequency`, func() {
Expect(getMbzId(context.TODO(), "1 2 3 4 1", "", "")).To(Equal("1"))
})
})
})