-
Notifications
You must be signed in to change notification settings - Fork 8
/
views_test.go
89 lines (83 loc) · 1.91 KB
/
views_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
Copyright © 2019, 2020 M.Watermann, 10247 Berlin, Germany
All rights reserved
EMail : <[email protected]>
*/
package kaliber
//lint:file-ignore ST1017 - I prefer Yoda conditions
import (
"reflect"
"testing"
)
func TestNewView(t *testing.T) {
type args struct {
aBaseDir string
aName string
}
tests := []struct {
name string
args args
wantView bool
wantErr bool
}{
// TODO: Add test cases.
{" 1", args{"./views/", "test1"}, false, true},
{" 2", args{"./views/", "index"}, true, false},
{" 3", args{"./views/", "document"}, true, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := NewView(tt.args.aBaseDir, tt.args.aName)
if (err != nil) != tt.wantErr {
t.Errorf("NewView() error = %v, wantErr %v", err, tt.wantErr)
return
}
if (got != nil) != tt.wantView {
t.Errorf("NewView() = %v, want %v", got, tt.wantView)
}
})
}
} // TestNewView()
func TestNewViewList(t *testing.T) {
vl := TViewList{}
tests := []struct {
name string
want *TViewList
}{
// TODO: Add test cases.
{" 1", &vl},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := NewViewList(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("NewViewList() = %v, want %v", got, tt.want)
}
})
}
} // TestNewViewList()
func TestTViewList_Add(t *testing.T) {
vName1 := "index"
vw1, _ := NewView("./views/", vName1)
vl1 := NewViewList()
rl1 := NewViewList().Add(vw1)
type args struct {
aName string
aView *TView
}
tests := []struct {
name string
vl *TViewList
args args
want *TViewList
}{
// TODO: Add test cases.
{" 1", vl1, args{vName1, vw1}, rl1},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.vl.Add(tt.args.aView); !reflect.DeepEqual(got, tt.want) {
t.Errorf("TViewList.Add() = %v, want %v", got, tt.want)
}
})
}
} // TestTViewList_Add()