73 lines
2.0 KiB
Go
73 lines
2.0 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"bazil.org/fuse"
|
|
)
|
|
|
|
func TestBuildMountTreeGroupsByFolderAndDate(t *testing.T) {
|
|
items := []SearchItem{{
|
|
ID: "item-1",
|
|
Name: "Invoice/July",
|
|
Date: 1720396800000,
|
|
Folder: &DocspellEntity{
|
|
Name: "Bills/Private",
|
|
},
|
|
Attachments: []ItemAttachment{{ID: "att-1", Name: "invoice.pdf", Size: 123}},
|
|
}}
|
|
|
|
root := buildMountTree(context.Background(), &DocspellClient{}, items)
|
|
folder, ok := root.children["Bills_Private"].(*dirNode)
|
|
if !ok {
|
|
t.Fatalf("expected sanitized folder directory, got %#v", root.children)
|
|
}
|
|
year, ok := folder.children["2024"].(*dirNode)
|
|
if !ok {
|
|
t.Fatalf("expected year directory, got %#v", folder.children)
|
|
}
|
|
month, ok := year.children["07"].(*dirNode)
|
|
if !ok {
|
|
t.Fatalf("expected month directory, got %#v", year.children)
|
|
}
|
|
if _, ok := month.children["Invoice_July.pdf"].(*fileNode); !ok {
|
|
t.Fatalf("expected item-named attachment file, got %#v", month.children)
|
|
}
|
|
}
|
|
|
|
func TestBuildMountTreeDeduplicatesAttachmentNames(t *testing.T) {
|
|
items := []SearchItem{{
|
|
ID: "item-1",
|
|
Name: "Invoice",
|
|
Attachments: []ItemAttachment{
|
|
{ID: "att-1", Name: "same.pdf"},
|
|
{ID: "att-2", Name: "same.pdf"},
|
|
},
|
|
}}
|
|
|
|
root := buildMountTree(context.Background(), &DocspellClient{}, items)
|
|
folder := root.children["No Folder"].(*dirNode)
|
|
date := folder.children["No Date"].(*dirNode)
|
|
if _, ok := date.children["Invoice - 01.pdf"]; !ok {
|
|
t.Fatalf("expected first unique name, got %#v", date.children)
|
|
}
|
|
if _, ok := date.children["Invoice - 02.pdf"]; !ok {
|
|
t.Fatalf("expected second unique name, got %#v", date.children)
|
|
}
|
|
}
|
|
|
|
func TestFileNodeUnknownSizeDoesNotAdvertiseZeroLength(t *testing.T) {
|
|
f := &fileNode{size: 0, knownSize: false}
|
|
var attr fuse.Attr
|
|
if err := f.Attr(context.Background(), &attr); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if attr.Size != 0 {
|
|
t.Fatalf("expected absent size to remain zero, got %d", attr.Size)
|
|
}
|
|
if f.knownSize {
|
|
t.Fatal("expected unknown size before download")
|
|
}
|
|
}
|