7 "github.com/stretchr/testify/assert"
14 type mockReadWriter struct {
19 func (mrw mockReadWriter) Read(p []byte) (n int, err error) {
20 return mrw.RBuf.Read(p)
23 func (mrw mockReadWriter) Write(p []byte) (n int, err error) {
24 return mrw.WBuf.Write(p)
27 func TestServer_handleFileTransfer(t *testing.T) {
29 ThreadedNews *ThreadedNews
30 FileTransferMgr FileTransferMgr
45 wantErr assert.ErrorAssertionFunc
49 name: "with invalid protocol",
51 ctx: func() context.Context {
52 ctx := context.Background()
53 ctx = context.WithValue(ctx, contextKeyReq, requestCtx{})
56 rwc: func() io.ReadWriter {
57 mrw := mockReadWriter{}
58 mrw.WBuf = &bytes.Buffer{}
70 wantErr: assert.Error,
73 name: "with invalid transfer Type",
75 FileTransferMgr: NewMemFileTransferMgr(),
78 ctx: func() context.Context {
79 ctx := context.Background()
80 ctx = context.WithValue(ctx, contextKeyReq, requestCtx{})
83 rwc: func() io.ReadWriter {
84 mrw := mockReadWriter{}
85 mrw.WBuf = &bytes.Buffer{}
88 0x48, 0x54, 0x58, 0x46,
97 wantErr: assert.Error,
100 name: "file download",
103 Logger: NewTestLogger(),
105 FileTransferMgr: &MemFileTransferMgr{
106 fileTransfers: map[FileTransferID]*FileTransfer{
108 RefNum: [4]byte{0, 0, 0, 5},
110 FileName: []byte("testfile-8b"),
112 FileRoot: func() string {
113 path, _ := os.Getwd()
114 return path + "/test/config/Files"
116 ClientConn: &ClientConn{
120 ClientFileTransferMgr: ClientFileTransferMgr{
121 transfers: map[FileTransferType]map[FileTransferID]*FileTransfer{
123 [4]byte{0, 0, 0, 5}: &FileTransfer{},
128 bytesSentCounter: &WriteCounter{},
134 ctx: func() context.Context {
135 ctx := context.Background()
136 ctx = context.WithValue(ctx, contextKeyReq, requestCtx{})
139 rwc: func() io.ReadWriter {
140 mrw := mockReadWriter{}
141 mrw.WBuf = &bytes.Buffer{}
144 0x48, 0x54, 0x58, 0x46,
153 wantErr: assert.NoError,
154 wantDump: `00000000 46 49 4c 50 00 01 00 00 00 00 00 00 00 00 00 00 |FILP............|
155 00000010 00 00 00 00 00 00 00 02 49 4e 46 4f 00 00 00 00 |........INFO....|
156 00000020 00 00 00 00 00 00 00 55 41 4d 41 43 54 45 58 54 |.......UAMACTEXT|
157 00000030 54 54 58 54 00 00 00 00 00 00 01 00 00 00 00 00 |TTXT............|
158 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
159 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
160 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0b |................|
161 00000070 74 65 73 74 66 69 6c 65 2d 38 62 00 00 44 41 54 |testfile-8b..DAT|
162 00000080 41 00 00 00 00 00 00 00 00 00 00 00 08 7c 39 e0 |A............|9.|
163 00000090 bc 64 e2 cd de 4d 41 43 52 00 00 00 00 00 00 00 |.d...MACR.......|
164 000000a0 00 00 00 00 00 |.....|
168 for _, tt := range tests {
169 t.Run(tt.name, func(t *testing.T) {
171 FileTransferMgr: tt.fields.FileTransferMgr,
172 Config: tt.fields.Config,
173 Logger: tt.fields.Logger,
174 Stats: tt.fields.Stats,
178 tt.wantErr(t, s.handleFileTransfer(tt.args.ctx, tt.args.rwc), fmt.Sprintf("handleFileTransfer(%v, %v)", tt.args.ctx, tt.args.rwc))
180 assertTransferBytesEqual(t, tt.wantDump, tt.args.rwc.(mockReadWriter).WBuf.Bytes())