-
Notifications
You must be signed in to change notification settings - Fork 0
/
memfile_test.go
123 lines (115 loc) · 2.85 KB
/
memfile_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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package fs
import (
"bytes"
"encoding/gob"
"encoding/json"
"testing"
"github.com/stretchr/testify/require"
)
func TestMemFile_Name(t *testing.T) {
tests := []struct {
FileName string
want string
}{
{FileName: "", want: ""},
{FileName: "MyImage.jpeg", want: "MyImage.jpeg"},
{FileName: "some/path/file.txt", want: "file.txt"},
{FileName: "some\\path\\file.txt", want: "file.txt"},
}
for _, tt := range tests {
t.Run(tt.FileName, func(t *testing.T) {
f := NewMemFile(tt.FileName, nil)
if got := f.Name(); got != tt.want {
t.Errorf("MemFile.Name() = %#v, want %#v", got, tt.want)
}
})
}
}
func TestMemFile_Ext(t *testing.T) {
tests := []struct {
FileName string
want string
}{
{FileName: "", want: ""},
{FileName: "My.Image.jpeg", want: ".jpeg"},
{FileName: "some/path/file.txt", want: ".txt"},
{FileName: "some\\path\\file.txt", want: ".txt"},
}
for _, tt := range tests {
t.Run(tt.FileName, func(t *testing.T) {
f := NewMemFile(tt.FileName, nil)
if got := f.Ext(); got != tt.want {
t.Errorf("MemFile.Name() = %#v, want %#v", got, tt.want)
}
})
}
}
func TestMemFile_MarshalJSON(t *testing.T) {
tests := []struct {
memFile MemFile
want []byte
}{
{
memFile: MemFile{},
want: []byte(`{"filename":""}`),
},
{
memFile: NewMemFile("no data", nil),
want: []byte(`{"filename":"no data"}`),
},
{
memFile: NewMemFile("hello.txt", []byte(`Hello World!`)),
want: []byte(`{"filename":"hello.txt","data":"SGVsbG8gV29ybGQh"}`),
},
}
for _, tt := range tests {
got, err := json.Marshal(tt.memFile)
require.NoError(t, err, "json.Marshal")
require.Equal(t, string(tt.want), string(got))
}
}
func TestMemFile_GobEncodeDecode(t *testing.T) {
tests := []struct {
name string
memFile MemFile
}{
{
name: "basic test",
memFile: MemFile{FileName: "hello.txt", FileData: []byte(`Hello World!`)},
},
{
name: "nil data",
memFile: MemFile{FileName: "hello.txt", FileData: nil},
},
{
name: "no name, no data",
memFile: MemFile{FileName: "", FileData: nil},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Test pass by value
{
buf := bytes.NewBuffer(nil)
err := gob.NewEncoder(buf).Encode(tt.memFile)
require.NoError(t, err, "gob.Encoder.Encode")
require.NotEmpty(t, buf.Bytes())
var out MemFile
err = gob.NewDecoder(buf).Decode(&out)
require.NoError(t, err, "gob.Decoder.Decode")
require.Equal(t, tt.memFile, out)
}
// Test pass by pointer
{
buf := bytes.NewBuffer(nil)
err := gob.NewEncoder(buf).Encode(&tt.memFile)
require.NoError(t, err, "gob.Encoder.Encode")
require.NotEmpty(t, buf.Bytes())
var out *MemFile
err = gob.NewDecoder(buf).Decode(&out)
require.NoError(t, err, "gob.Decoder.Decode")
require.Equal(t, &tt.memFile, out)
}
})
}
}