mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Fix race conditions in tests
This commit is contained in:
parent
0bb133a6ac
commit
88823fca76
4 changed files with 24 additions and 13 deletions
|
@ -19,9 +19,9 @@ var _ = Describe("walk_dir_tree", func() {
|
|||
It("reads all info correctly", func() {
|
||||
var collected = dirMap{}
|
||||
results := make(walkResults, 5000)
|
||||
var err error
|
||||
var errC = make(chan error)
|
||||
go func() {
|
||||
err = walkDirTree(context.TODO(), baseDir, results)
|
||||
errC <- walkDirTree(context.Background(), baseDir, results)
|
||||
}()
|
||||
|
||||
for {
|
||||
|
@ -32,7 +32,7 @@ var _ = Describe("walk_dir_tree", func() {
|
|||
collected[stats.Path] = stats
|
||||
}
|
||||
|
||||
Expect(err).To(BeNil())
|
||||
Eventually(errC).Should(Receive(nil))
|
||||
Expect(collected[baseDir]).To(MatchFields(IgnoreExtras, Fields{
|
||||
"HasImages": BeTrue(),
|
||||
"HasPlaylist": BeFalse(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue