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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
package sdp
import (
"errors"
"reflect"
"testing"
)
func getTestSessionDescription() SessionDescription {
return SessionDescription{
MediaDescriptions: []*MediaDescription{
{
MediaName: MediaName{
Media: "video",
Port: RangedPort{
Value: 51372,
},
Protos: []string{"RTP", "AVP"},
Formats: []string{"120", "121", "126", "97", "98"},
},
Attributes: []Attribute{
NewAttribute("fmtp:126 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1", ""),
NewAttribute("fmtp:97 profile-level-id=42e01f;level-asymmetry-allowed=1", ""),
NewAttribute("fmtp:98 profile-level-id=42e01e; packetization-mode=1", ""),
NewAttribute("fmtp:120 max-fs=12288;max-fr=60", ""),
NewAttribute("fmtp:121 max-fs=12288;max-fr=60", ""),
NewAttribute("rtpmap:120 VP8/90000", ""),
NewAttribute("rtpmap:121 VP9/90000", ""),
NewAttribute("rtpmap:126 H264/90000", ""),
NewAttribute("rtpmap:97 H264/90000", ""),
NewAttribute("rtpmap:98 H264/90000", ""),
NewAttribute("rtcp-fb:97 ccm fir", ""),
NewAttribute("rtcp-fb:97 nack", ""),
NewAttribute("rtcp-fb:97 nack pli", ""),
NewAttribute("rtcp-fb:* transport-cc", ""),
NewAttribute("rtcp-fb:* nack", ""),
},
},
},
}
}
func TestGetPayloadTypeForVP8(t *testing.T) {
for _, test := range []struct {
Codec Codec
Expected uint8
}{
{
Codec: Codec{
Name: "VP8",
},
Expected: 120,
},
{
Codec: Codec{
Name: "VP9",
},
Expected: 121,
},
{
Codec: Codec{
Name: "H264",
Fmtp: "profile-level-id=42e01f;level-asymmetry-allowed=1",
},
Expected: 97,
},
{
Codec: Codec{
Name: "H264",
Fmtp: "level-asymmetry-allowed=1;profile-level-id=42e01f",
},
Expected: 97,
},
{
Codec: Codec{
Name: "H264",
Fmtp: "profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1",
},
Expected: 126,
},
} {
sd := getTestSessionDescription()
actual, err := sd.GetPayloadTypeForCodec(test.Codec)
if got, want := err, error(nil); !errors.Is(got, want) {
t.Fatalf("GetPayloadTypeForCodec(): err=%v, want=%v", got, want)
}
if actual != test.Expected {
t.Errorf("error:\n\nEXPECTED:\n%v\nACTUAL:\n%v", test.Expected, actual)
}
}
}
func TestGetCodecForPayloadType(t *testing.T) {
for _, test := range []struct {
name string
SD SessionDescription
PayloadType uint8
Expected Codec
}{
{
"vp8",
getTestSessionDescription(),
120,
Codec{
PayloadType: 120,
Name: "VP8",
ClockRate: 90000,
Fmtp: "max-fs=12288;max-fr=60",
RTCPFeedback: []string{"transport-cc", "nack"},
},
},
{
"vp9",
getTestSessionDescription(),
121,
Codec{
PayloadType: 121,
Name: "VP9",
ClockRate: 90000,
Fmtp: "max-fs=12288;max-fr=60",
RTCPFeedback: []string{"transport-cc", "nack"},
},
},
{
"h264 126",
getTestSessionDescription(),
126,
Codec{
PayloadType: 126,
Name: "H264",
ClockRate: 90000,
Fmtp: "profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1",
RTCPFeedback: []string{"transport-cc", "nack"},
},
},
{
"h264 97",
getTestSessionDescription(),
97,
Codec{
PayloadType: 97,
Name: "H264",
ClockRate: 90000,
Fmtp: "profile-level-id=42e01f;level-asymmetry-allowed=1",
RTCPFeedback: []string{"ccm fir", "nack", "nack pli", "transport-cc"},
},
},
{
"h264 98",
getTestSessionDescription(),
98,
Codec{
PayloadType: 98,
Name: "H264",
ClockRate: 90000,
Fmtp: "profile-level-id=42e01e; packetization-mode=1",
RTCPFeedback: []string{"transport-cc", "nack"},
},
},
{
"pcmu without rtpmap",
SessionDescription{
MediaDescriptions: []*MediaDescription{
{
MediaName: MediaName{
Media: "audio",
Protos: []string{"RTP", "AVP"},
Formats: []string{"0", "8"},
},
},
},
},
0,
Codec{
PayloadType: 0,
Name: "PCMU",
ClockRate: 8000,
},
},
{
"pcma without rtpmap",
SessionDescription{
MediaDescriptions: []*MediaDescription{
{
MediaName: MediaName{
Media: "audio",
Protos: []string{"RTP", "AVP"},
Formats: []string{"0", "8"},
},
},
},
},
8,
Codec{
PayloadType: 8,
Name: "PCMA",
ClockRate: 8000,
},
},
} {
t.Run(test.name, func(t *testing.T) {
actual, err := test.SD.GetCodecForPayloadType(test.PayloadType)
if got, want := err, error(nil); !errors.Is(got, want) {
t.Fatalf("GetCodecForPayloadType(): err=%v, want=%v", got, want)
}
if !reflect.DeepEqual(actual, test.Expected) {
t.Errorf("error:\n\nEXPECTED:\n%v\nACTUAL:\n%v", test.Expected, actual)
}
})
}
}
func TestNewSessionID(t *testing.T) {
minVal := uint64(0x7FFFFFFFFFFFFFFF)
maxVal := uint64(0)
for i := 0; i < 10000; i++ {
r, err := newSessionID()
if err != nil {
t.Fatal(err)
}
if r > (1<<63)-1 {
t.Fatalf("Session ID must be less than 2**64-1, got %d", r)
}
if r < minVal {
minVal = r
}
if r > maxVal {
maxVal = r
}
}
if minVal > 0x1000000000000000 {
t.Error("Value around lower boundary was not generated")
}
if maxVal < 0x7000000000000000 {
t.Error("Value around upper boundary was not generated")
}
}
|