init: pristine aerc 0.20.0 source
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package lib_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"git.sr.ht/~rjarry/aerc/lib"
|
||||
"git.sr.ht/~rjarry/aerc/models"
|
||||
)
|
||||
|
||||
func TestLib_FindAllNonMultipart(t *testing.T) {
|
||||
testStructure := &models.BodyStructure{
|
||||
MIMEType: "multipart",
|
||||
Parts: []*models.BodyStructure{
|
||||
{},
|
||||
{
|
||||
MIMEType: "multipart",
|
||||
Parts: []*models.BodyStructure{
|
||||
{},
|
||||
{},
|
||||
},
|
||||
},
|
||||
{},
|
||||
},
|
||||
}
|
||||
|
||||
expected := [][]int{
|
||||
{1},
|
||||
{2, 1},
|
||||
{2, 2},
|
||||
{3},
|
||||
}
|
||||
|
||||
parts := lib.FindAllNonMultipart(testStructure, nil, nil)
|
||||
|
||||
if len(expected) != len(parts) {
|
||||
t.Errorf("incorrect dimensions; expected: %v, got: %v", expected, parts)
|
||||
}
|
||||
|
||||
for i := 0; i < len(parts); i++ {
|
||||
if !lib.EqualParts(expected[i], parts[i]) {
|
||||
t.Errorf("incorrect values; expected: %v, got: %v", expected[i], parts[i])
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user