mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
83 lines
2.6 KiB
Go
83 lines
2.6 KiB
Go
package persistence
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/Masterminds/squirrel"
|
|
"github.com/navidrome/navidrome/model"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Helpers", func() {
|
|
Describe("toSnakeCase", func() {
|
|
It("converts camelCase", func() {
|
|
Expect(toSnakeCase("camelCase")).To(Equal("camel_case"))
|
|
})
|
|
It("converts PascalCase", func() {
|
|
Expect(toSnakeCase("PascalCase")).To(Equal("pascal_case"))
|
|
})
|
|
It("converts ALLCAPS", func() {
|
|
Expect(toSnakeCase("ALLCAPS")).To(Equal("allcaps"))
|
|
})
|
|
It("does not converts snake_case", func() {
|
|
Expect(toSnakeCase("snake_case")).To(Equal("snake_case"))
|
|
})
|
|
})
|
|
Describe("toSqlArgs", func() {
|
|
type Embed struct{}
|
|
type Model struct {
|
|
Embed `structs:"-"`
|
|
ID string `structs:"id" json:"id"`
|
|
AlbumId string `structs:"album_id" json:"albumId"`
|
|
PlayCount int `structs:"play_count" json:"playCount"`
|
|
UpdatedAt *time.Time `structs:"updated_at"`
|
|
CreatedAt time.Time `structs:"created_at"`
|
|
}
|
|
|
|
It("returns a map with snake_case keys", func() {
|
|
now := time.Now()
|
|
m := &Model{ID: "123", AlbumId: "456", CreatedAt: now, UpdatedAt: &now, PlayCount: 2}
|
|
args, err := toSqlArgs(m)
|
|
Expect(err).To(BeNil())
|
|
Expect(args).To(HaveKeyWithValue("id", "123"))
|
|
Expect(args).To(HaveKeyWithValue("album_id", "456"))
|
|
Expect(args).To(HaveKeyWithValue("updated_at", now.Format(time.RFC3339Nano)))
|
|
Expect(args).To(HaveKeyWithValue("created_at", now.Format(time.RFC3339Nano)))
|
|
Expect(args).ToNot(HaveKey("Embed"))
|
|
})
|
|
})
|
|
|
|
Describe("exists", func() {
|
|
It("constructs the correct EXISTS query", func() {
|
|
e := exists("album", squirrel.Eq{"id": 1})
|
|
sql, args, err := e.ToSql()
|
|
Expect(sql).To(Equal("exists (select 1 from album where id = ?)"))
|
|
Expect(args).To(ConsistOf(1))
|
|
Expect(err).To(BeNil())
|
|
})
|
|
})
|
|
|
|
Describe("getMostFrequentMbzID", func() {
|
|
It(`returns "" when no ids are passed`, func() {
|
|
Expect(getMostFrequentMbzID(context.TODO(), " ", "", "")).To(Equal(""))
|
|
})
|
|
It(`returns the only id passed`, func() {
|
|
Expect(getMostFrequentMbzID(context.TODO(), "111 ", "", "")).To(Equal("111"))
|
|
})
|
|
It(`returns the id with higher frequency`, func() {
|
|
Expect(getMostFrequentMbzID(context.TODO(), "1 2 3 4 2", "", "")).To(Equal("2"))
|
|
})
|
|
})
|
|
|
|
Describe("getGenres", func() {
|
|
It("returns unique genres", func() {
|
|
expected := model.Genres{{ID: "1"}, {ID: "2"}, {ID: "3"}, {ID: "5"}, {ID: "4"}}
|
|
Expect(getGenres("1 2 3 5 3 2 4 ")).To(Equal(expected))
|
|
})
|
|
It("returns empty list when there are no genres", func() {
|
|
Expect(getGenres("")).To(BeEmpty())
|
|
})
|
|
})
|
|
})
|