Compare commits

...

2 Commits
v1.0 ... main

Author SHA1 Message Date
Andreas Schulte
6351ae863e
fixed typo 2023-10-25 22:57:37 +02:00
Andreas Schulte
94dcd08b69
Extended GetComparableWarezString 2023-10-25 22:55:08 +02:00
2 changed files with 17 additions and 16 deletions

View File

@ -19,12 +19,12 @@ func GetComparableWarezString(s string) (string, error) {
return "", err
}
return utils.RemoveDoubledStrings(
strings.ToLower(
fmt.Sprintf("%s.%d", title, year),
),
".",
), nil
result := fmt.Sprintf("%s.%d", title, year)
result = strings.ToLower(result)
result = utils.RemoveDoubledStrings(result, ".")
result = utils.RemoveLeadingStrings(result, ".")
return result, nil
}
// GetTitleAndYearFromWarezString tries to get the title and year from a string in a warez context

View File

@ -18,6 +18,7 @@ func TestGetComparableWarezString(t *testing.T) {
"Little Britain (2003)": "little.britain.2003",
"Sons of Anarchy (2008)": "sons.of.anarchy.2008",
"Love, Death & Robots (2019)": "love.death.robots.2019",
"...Jahr 2022... die überleben wollen... (1973)": "jahr.2022.die.ueberleben.wollen.1973",
}
for d, expectedResult := range data {