dissertation-2-code/tcp/flow_test.go

67 lines
1.7 KiB
Go
Raw Normal View History

2020-10-25 21:44:56 +00:00
package tcp
import (
"encoding/binary"
2020-11-27 20:17:59 +00:00
"github.com/stretchr/testify/assert"
2020-10-25 21:44:56 +00:00
"github.com/stretchr/testify/require"
"mpbl3p/mocks"
"mpbl3p/proxy"
"testing"
)
func TestFlow_Consume(t *testing.T) {
testContent := []byte("A test string is the content of this packet.")
2020-11-28 17:15:56 +00:00
testPacket := proxy.SimplePacket(testContent)
2020-10-25 21:44:56 +00:00
testMac := mocks.AlmostUselessMac{}
2020-10-25 22:05:35 +00:00
t.Run("Length", func(t *testing.T) {
2020-11-27 20:17:59 +00:00
testConn := mocks.NewMockPerfectBiStreamConn(100)
2020-10-25 21:44:56 +00:00
2021-01-23 18:24:04 +00:00
flowA := NewFlowConn(testConn.SideA())
2020-10-25 21:44:56 +00:00
err := flowA.Consume(testPacket, testMac)
require.Nil(t, err)
buf := make([]byte, 100)
n, err := testConn.SideB().Read(buf)
require.Nil(t, err)
2020-10-25 22:05:35 +00:00
assert.Equal(t, len(testContent)+8+4+4, n)
assert.Equal(t, uint32(len(testContent)+8+4), binary.LittleEndian.Uint32(buf[:len(buf)-4]))
})
}
func TestFlow_Produce(t *testing.T) {
testContent := "A test string is the content of this packet."
testMarshalled := []byte("0000" + testContent + "00000000abcd")
binary.LittleEndian.PutUint32(testMarshalled, uint32(len(testMarshalled)-4))
testMac := mocks.AlmostUselessMac{}
t.Run("Length", func(t *testing.T) {
2020-11-27 20:17:59 +00:00
testConn := mocks.NewMockPerfectBiStreamConn(100)
2020-10-25 22:05:35 +00:00
2021-01-23 18:24:04 +00:00
flowA := NewFlowConn(testConn.SideA())
2020-10-25 22:05:35 +00:00
_, err := testConn.SideB().Write(testMarshalled)
require.Nil(t, err)
2020-10-25 22:12:38 +00:00
p, err := flowA.Produce(testMac)
require.Nil(t, err)
2020-11-27 20:17:59 +00:00
assert.Equal(t, len(testContent), len(p.Contents()))
2020-10-25 22:12:38 +00:00
})
t.Run("Value", func(t *testing.T) {
2020-11-27 20:17:59 +00:00
testConn := mocks.NewMockPerfectBiStreamConn(100)
2020-10-25 22:12:38 +00:00
2021-01-23 18:24:04 +00:00
flowA := NewFlowConn(testConn.SideA())
2020-10-25 22:12:38 +00:00
_, err := testConn.SideB().Write(testMarshalled)
require.Nil(t, err)
2020-10-25 22:05:35 +00:00
p, err := flowA.Produce(testMac)
require.Nil(t, err)
2020-11-27 20:17:59 +00:00
assert.Equal(t, testContent, string(p.Contents()))
2020-10-25 21:44:56 +00:00
})
}