mirror of
https://github.com/pion/webrtc.git
synced 2025-10-05 15:16:52 +08:00
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
package ice
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestConnectedState_String(t *testing.T) {
|
|
testCases := []struct {
|
|
connectionState ConnectionState
|
|
expectedString string
|
|
}{
|
|
{ConnectionState(Unknown), "Invalid"},
|
|
{ConnectionStateNew, "New"},
|
|
{ConnectionStateChecking, "Checking"},
|
|
{ConnectionStateConnected, "Connected"},
|
|
{ConnectionStateCompleted, "Completed"},
|
|
{ConnectionStateFailed, "Failed"},
|
|
{ConnectionStateDisconnected, "Disconnected"},
|
|
{ConnectionStateClosed, "Closed"},
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
assert.Equal(t,
|
|
testCase.expectedString,
|
|
testCase.connectionState.String(),
|
|
"testCase: %d %v", i, testCase,
|
|
)
|
|
}
|
|
}
|
|
|
|
func TestGatheringState_String(t *testing.T) {
|
|
testCases := []struct {
|
|
gatheringState GatheringState
|
|
expectedString string
|
|
}{
|
|
{GatheringState(Unknown), ErrUnknownType.Error()},
|
|
{GatheringStateNew, "new"},
|
|
{GatheringStateGathering, "gathering"},
|
|
{GatheringStateComplete, "complete"},
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
assert.Equal(t,
|
|
testCase.expectedString,
|
|
testCase.gatheringState.String(),
|
|
"testCase: %d %v", i, testCase,
|
|
)
|
|
}
|
|
}
|