| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package services_test
- import (
- . "github.com/onsi/ginkgo"
- . "github.com/onsi/gomega"
- "github.com/felamaslen/go-music-player/pkg/database"
- "github.com/felamaslen/go-music-player/pkg/read"
- "github.com/felamaslen/go-music-player/pkg/services"
- setup "github.com/felamaslen/go-music-player/pkg/testing"
- )
- var _ = Describe("music scanner (integration test)", func() {
- BeforeEach(func() {
- setup.PrepareDatabaseForTesting()
- })
- It("should recursively scan files from a directory and add them to the database", func() {
- services.ScanAndInsert(read.TestDirectory)
- db := database.GetConnection()
- rows, err := db.Queryx(`
- select title, artist, album, duration, base_path, relative_path
- from songs
- `)
- Expect(err).To(BeNil())
- var song read.Song
- rows.Next()
- rows.StructScan(&song)
- Expect(song).To(Equal(read.Song{
- Title: read.TestSong.Title,
- Artist: read.TestSong.Artist,
- Album: read.TestSong.Album,
- Duration: read.TestSong.Duration,
- BasePath: read.TestSong.BasePath,
- RelativePath: read.TestSong.RelativePath,
- }))
- rows.Close()
- })
- })
|