mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Don't add empty TIPL roles
This commit is contained in:
parent
a6fc84a2e1
commit
fb7fd21984
2 changed files with 16 additions and 9 deletions
|
@ -78,7 +78,7 @@ func parseTIPL(tags metadata.ParsedTags) {
|
|||
}
|
||||
|
||||
addRole := func(tags metadata.ParsedTags, currentRole string, currentValue []string) {
|
||||
if currentRole != "" {
|
||||
if currentRole != "" && len(currentValue) > 0 {
|
||||
role := tiplMapping[currentRole]
|
||||
tags[role] = append(tags[currentRole], strings.Join(currentValue, " "))
|
||||
}
|
||||
|
|
|
@ -24,7 +24,8 @@ var _ = Describe("Extractor", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
})
|
||||
})
|
||||
Context("Parse", func() {
|
||||
|
||||
Describe("Parse", func() {
|
||||
It("correctly parses metadata from all files in folder", func() {
|
||||
mds, err := e.Parse(
|
||||
"tests/fixtures/test.mp3",
|
||||
|
@ -90,6 +91,7 @@ var _ = Describe("Extractor", func() {
|
|||
Expect(m).To(HaveKey("bitrate"))
|
||||
Expect(m["bitrate"][0]).To(BeElementOf("18", "39", "40", "43", "49"))
|
||||
})
|
||||
|
||||
DescribeTable("Format-Specific tests",
|
||||
func(file, duration, channels, albumGain, albumPeak, trackGain, trackPeak string, id3Lyrics bool) {
|
||||
file = "tests/fixtures/" + file
|
||||
|
@ -178,7 +180,7 @@ var _ = Describe("Extractor", func() {
|
|||
)
|
||||
})
|
||||
|
||||
Context("Error Checking", func() {
|
||||
Describe("Error Checking", func() {
|
||||
It("correctly handle unreadable file due to insufficient read permission", func() {
|
||||
_, err := e.extractMetadata(accessForbiddenFile)
|
||||
Expect(err).To(MatchError(os.ErrPermission))
|
||||
|
@ -207,15 +209,22 @@ var _ = Describe("Extractor", func() {
|
|||
It("correctly parses roles and names", func() {
|
||||
tags["tipl"] = []string{"arranger Andrew Powell dj-mix François Kevorkian engineer Chris Blair"}
|
||||
parseTIPL(tags)
|
||||
Expect(tags["arranger"]).To(Equal([]string{"Andrew Powell"}))
|
||||
Expect(tags["engineer"]).To(Equal([]string{"Chris Blair"}))
|
||||
Expect(tags["djmixer"]).To(Equal([]string{"François Kevorkian"}))
|
||||
Expect(tags["arranger"]).To(ConsistOf("Andrew Powell"))
|
||||
Expect(tags["engineer"]).To(ConsistOf("Chris Blair"))
|
||||
Expect(tags["djmixer"]).To(ConsistOf("François Kevorkian"))
|
||||
})
|
||||
|
||||
It("handles multiple names for a single role", func() {
|
||||
tags["tipl"] = []string{"engineer Pat Stapley producer Eric Woolfson engineer Chris Blair"}
|
||||
parseTIPL(tags)
|
||||
Expect(tags["producer"]).To(Equal([]string{"Eric Woolfson"}))
|
||||
Expect(tags["producer"]).To(ConsistOf("Eric Woolfson"))
|
||||
Expect(tags["engineer"]).To(ConsistOf("Pat Stapley", "Chris Blair"))
|
||||
})
|
||||
|
||||
It("discards roles without names", func() {
|
||||
tags["tipl"] = []string{"engineer Pat Stapley producer engineer Chris Blair"}
|
||||
parseTIPL(tags)
|
||||
Expect(tags).ToNot(HaveKey("producer"))
|
||||
Expect(tags["engineer"]).To(ConsistOf("Pat Stapley", "Chris Blair"))
|
||||
})
|
||||
})
|
||||
|
@ -234,8 +243,6 @@ var _ = Describe("Extractor", func() {
|
|||
Expect(tags).To(BeEmpty())
|
||||
})
|
||||
})
|
||||
|
||||
// Add any additional edge cases if necessary
|
||||
})
|
||||
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue