OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 #else | 32 #else |
33 #define ASSERT_CRYPTO(cd, s, cs) \ | 33 #define ASSERT_CRYPTO(cd, s, cs) \ |
34 ASSERT_EQ(cricket::CT_NONE, cd->crypto_required()); \ | 34 ASSERT_EQ(cricket::CT_NONE, cd->crypto_required()); \ |
35 ASSERT_EQ(0U, cd->cryptos().size()); | 35 ASSERT_EQ(0U, cd->cryptos().size()); |
36 #endif | 36 #endif |
37 | 37 |
38 typedef std::vector<cricket::Candidate> Candidates; | 38 typedef std::vector<cricket::Candidate> Candidates; |
39 | 39 |
40 using cricket::MediaContentDescription; | 40 using cricket::MediaContentDescription; |
41 using cricket::MediaSessionDescriptionFactory; | 41 using cricket::MediaSessionDescriptionFactory; |
| 42 using cricket::MediaContentDirection; |
42 using cricket::MediaSessionOptions; | 43 using cricket::MediaSessionOptions; |
43 using cricket::MediaType; | 44 using cricket::MediaType; |
44 using cricket::SessionDescription; | 45 using cricket::SessionDescription; |
45 using cricket::SsrcGroup; | 46 using cricket::SsrcGroup; |
46 using cricket::StreamParams; | 47 using cricket::StreamParams; |
47 using cricket::StreamParamsVec; | 48 using cricket::StreamParamsVec; |
48 using cricket::TransportDescription; | 49 using cricket::TransportDescription; |
49 using cricket::TransportDescriptionFactory; | 50 using cricket::TransportDescriptionFactory; |
50 using cricket::TransportInfo; | 51 using cricket::TransportInfo; |
51 using cricket::ContentInfo; | 52 using cricket::ContentInfo; |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 codec_names.push_back(codec.name); | 205 codec_names.push_back(codec.name); |
205 } | 206 } |
206 return codec_names; | 207 return codec_names; |
207 } | 208 } |
208 | 209 |
209 class MediaSessionDescriptionFactoryTest : public testing::Test { | 210 class MediaSessionDescriptionFactoryTest : public testing::Test { |
210 public: | 211 public: |
211 MediaSessionDescriptionFactoryTest() | 212 MediaSessionDescriptionFactoryTest() |
212 : f1_(&tdf1_), | 213 : f1_(&tdf1_), |
213 f2_(&tdf2_) { | 214 f2_(&tdf2_) { |
214 f1_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs1)); | 215 f1_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs1), |
| 216 MAKE_VECTOR(kAudioCodecs1)); |
215 f1_.set_video_codecs(MAKE_VECTOR(kVideoCodecs1)); | 217 f1_.set_video_codecs(MAKE_VECTOR(kVideoCodecs1)); |
216 f1_.set_data_codecs(MAKE_VECTOR(kDataCodecs1)); | 218 f1_.set_data_codecs(MAKE_VECTOR(kDataCodecs1)); |
217 f2_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs2)); | 219 f2_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs2), |
| 220 MAKE_VECTOR(kAudioCodecs2)); |
218 f2_.set_video_codecs(MAKE_VECTOR(kVideoCodecs2)); | 221 f2_.set_video_codecs(MAKE_VECTOR(kVideoCodecs2)); |
219 f2_.set_data_codecs(MAKE_VECTOR(kDataCodecs2)); | 222 f2_.set_data_codecs(MAKE_VECTOR(kDataCodecs2)); |
220 tdf1_.set_certificate(rtc::RTCCertificate::Create( | 223 tdf1_.set_certificate(rtc::RTCCertificate::Create( |
221 std::unique_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id1")))); | 224 std::unique_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id1")))); |
222 tdf2_.set_certificate(rtc::RTCCertificate::Create( | 225 tdf2_.set_certificate(rtc::RTCCertificate::Create( |
223 std::unique_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id2")))); | 226 std::unique_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id2")))); |
224 } | 227 } |
225 | 228 |
226 // Create a video StreamParamsVec object with: | 229 // Create a video StreamParamsVec object with: |
227 // - one video stream with 3 simulcast streams and FEC, | 230 // - one video stream with 3 simulcast streams and FEC, |
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
855 | 858 |
856 std::unique_ptr<SessionDescription> answer( | 859 std::unique_ptr<SessionDescription> answer( |
857 f2_.CreateAnswer(offer3.get(), opts, NULL)); | 860 f2_.CreateAnswer(offer3.get(), opts, NULL)); |
858 ASSERT_TRUE(answer.get() != NULL); | 861 ASSERT_TRUE(answer.get() != NULL); |
859 EXPECT_EQ(3u, answer->contents().size()); | 862 EXPECT_EQ(3u, answer->contents().size()); |
860 EXPECT_TRUE(IsMediaContentOfType(&answer->contents()[0], MEDIA_TYPE_DATA)); | 863 EXPECT_TRUE(IsMediaContentOfType(&answer->contents()[0], MEDIA_TYPE_DATA)); |
861 EXPECT_TRUE(IsMediaContentOfType(&answer->contents()[1], MEDIA_TYPE_AUDIO)); | 864 EXPECT_TRUE(IsMediaContentOfType(&answer->contents()[1], MEDIA_TYPE_AUDIO)); |
862 EXPECT_TRUE(IsMediaContentOfType(&answer->contents()[2], MEDIA_TYPE_VIDEO)); | 865 EXPECT_TRUE(IsMediaContentOfType(&answer->contents()[2], MEDIA_TYPE_VIDEO)); |
863 } | 866 } |
864 | 867 |
| 868 // TODO(deadbeef): Extend these tests to ensure the correct direction with other |
| 869 // answerer settings. |
| 870 |
865 // This test that the media direction is set to send/receive in an answer if | 871 // This test that the media direction is set to send/receive in an answer if |
866 // the offer is send receive. | 872 // the offer is send receive. |
867 TEST_F(MediaSessionDescriptionFactoryTest, CreateAnswerToSendReceiveOffer) { | 873 TEST_F(MediaSessionDescriptionFactoryTest, CreateAnswerToSendReceiveOffer) { |
868 TestMediaDirectionInAnswer(cricket::MD_SENDRECV, cricket::MD_SENDRECV); | 874 TestMediaDirectionInAnswer(cricket::MD_SENDRECV, cricket::MD_SENDRECV); |
869 } | 875 } |
870 | 876 |
871 // This test that the media direction is set to receive only in an answer if | 877 // This test that the media direction is set to receive only in an answer if |
872 // the offer is send only. | 878 // the offer is send only. |
873 TEST_F(MediaSessionDescriptionFactoryTest, CreateAnswerToSendOnlyOffer) { | 879 TEST_F(MediaSessionDescriptionFactoryTest, CreateAnswerToSendOnlyOffer) { |
874 TestMediaDirectionInAnswer(cricket::MD_SENDONLY, cricket::MD_RECVONLY); | 880 TestMediaDirectionInAnswer(cricket::MD_SENDONLY, cricket::MD_RECVONLY); |
(...skipping 1513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2388 ASSERT_TRUE(video_content != nullptr); | 2394 ASSERT_TRUE(video_content != nullptr); |
2389 ASSERT_TRUE(data_content != nullptr); | 2395 ASSERT_TRUE(data_content != nullptr); |
2390 EXPECT_EQ("audio_modified", audio_content->name); | 2396 EXPECT_EQ("audio_modified", audio_content->name); |
2391 EXPECT_EQ("video_modified", video_content->name); | 2397 EXPECT_EQ("video_modified", video_content->name); |
2392 EXPECT_EQ("data_modified", data_content->name); | 2398 EXPECT_EQ("data_modified", data_content->name); |
2393 } | 2399 } |
2394 | 2400 |
2395 class MediaProtocolTest : public ::testing::TestWithParam<const char*> { | 2401 class MediaProtocolTest : public ::testing::TestWithParam<const char*> { |
2396 public: | 2402 public: |
2397 MediaProtocolTest() : f1_(&tdf1_), f2_(&tdf2_) { | 2403 MediaProtocolTest() : f1_(&tdf1_), f2_(&tdf2_) { |
2398 f1_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs1)); | 2404 f1_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs1), |
| 2405 MAKE_VECTOR(kAudioCodecs1)); |
2399 f1_.set_video_codecs(MAKE_VECTOR(kVideoCodecs1)); | 2406 f1_.set_video_codecs(MAKE_VECTOR(kVideoCodecs1)); |
2400 f1_.set_data_codecs(MAKE_VECTOR(kDataCodecs1)); | 2407 f1_.set_data_codecs(MAKE_VECTOR(kDataCodecs1)); |
2401 f2_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs2)); | 2408 f2_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs2), |
| 2409 MAKE_VECTOR(kAudioCodecs2)); |
2402 f2_.set_video_codecs(MAKE_VECTOR(kVideoCodecs2)); | 2410 f2_.set_video_codecs(MAKE_VECTOR(kVideoCodecs2)); |
2403 f2_.set_data_codecs(MAKE_VECTOR(kDataCodecs2)); | 2411 f2_.set_data_codecs(MAKE_VECTOR(kDataCodecs2)); |
2404 f1_.set_secure(SEC_ENABLED); | 2412 f1_.set_secure(SEC_ENABLED); |
2405 f2_.set_secure(SEC_ENABLED); | 2413 f2_.set_secure(SEC_ENABLED); |
2406 tdf1_.set_certificate(rtc::RTCCertificate::Create( | 2414 tdf1_.set_certificate(rtc::RTCCertificate::Create( |
2407 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id1")))); | 2415 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id1")))); |
2408 tdf2_.set_certificate(rtc::RTCCertificate::Create( | 2416 tdf2_.set_certificate(rtc::RTCCertificate::Create( |
2409 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id2")))); | 2417 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id2")))); |
2410 tdf1_.set_secure(SEC_ENABLED); | 2418 tdf1_.set_secure(SEC_ENABLED); |
2411 tdf2_.set_secure(SEC_ENABLED); | 2419 tdf2_.set_secure(SEC_ENABLED); |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2443 EXPECT_EQ(GetParam(), acd->protocol()); | 2451 EXPECT_EQ(GetParam(), acd->protocol()); |
2444 EXPECT_EQ(GetParam(), vcd->protocol()); | 2452 EXPECT_EQ(GetParam(), vcd->protocol()); |
2445 } | 2453 } |
2446 | 2454 |
2447 INSTANTIATE_TEST_CASE_P(MediaProtocolPatternTest, | 2455 INSTANTIATE_TEST_CASE_P(MediaProtocolPatternTest, |
2448 MediaProtocolTest, | 2456 MediaProtocolTest, |
2449 ::testing::ValuesIn(kMediaProtocols)); | 2457 ::testing::ValuesIn(kMediaProtocols)); |
2450 INSTANTIATE_TEST_CASE_P(MediaProtocolDtlsPatternTest, | 2458 INSTANTIATE_TEST_CASE_P(MediaProtocolDtlsPatternTest, |
2451 MediaProtocolTest, | 2459 MediaProtocolTest, |
2452 ::testing::ValuesIn(kMediaProtocolsDtls)); | 2460 ::testing::ValuesIn(kMediaProtocolsDtls)); |
| 2461 |
| 2462 TEST_F(MediaSessionDescriptionFactoryTest, TestSetAudioCodecs) { |
| 2463 TransportDescriptionFactory tdf; |
| 2464 MediaSessionDescriptionFactory sf(&tdf); |
| 2465 std::vector<AudioCodec> send_codecs = MAKE_VECTOR(kAudioCodecs1); |
| 2466 std::vector<AudioCodec> recv_codecs = MAKE_VECTOR(kAudioCodecs2); |
| 2467 |
| 2468 // The merged list of codecs should contain any send codecs that are also |
| 2469 // nominally in the recieve codecs list. Payload types should be picked from |
| 2470 // the send codecs and a number-of-channels of 0 and 1 should be equivalent |
| 2471 // (set to 1). This equals what happens when the send codecs are used in an |
| 2472 // offer and the receive codecs are used in the following answer. |
| 2473 const std::vector<AudioCodec> sendrecv_codecs = |
| 2474 MAKE_VECTOR(kAudioCodecsAnswer); |
| 2475 const std::vector<AudioCodec> no_codecs; |
| 2476 |
| 2477 RTC_CHECK_EQ(send_codecs[1].name, "iLBC") |
| 2478 << "Please don't change shared test data!"; |
| 2479 RTC_CHECK_EQ(recv_codecs[2].name, "iLBC") |
| 2480 << "Please don't change shared test data!"; |
| 2481 // Alter iLBC send codec to have zero channels, to test that that is handled |
| 2482 // properly. |
| 2483 send_codecs[1].channels = 0; |
| 2484 |
| 2485 // Alther iLBC receive codec to be lowercase, to test that case conversions |
| 2486 // are handled properly. |
| 2487 recv_codecs[2].name = "ilbc"; |
| 2488 |
| 2489 // Test proper merge |
| 2490 sf.set_audio_codecs(send_codecs, recv_codecs); |
| 2491 EXPECT_TRUE(sf.audio_send_codecs() == send_codecs); |
| 2492 EXPECT_TRUE(sf.audio_recv_codecs() == recv_codecs); |
| 2493 EXPECT_TRUE(sf.audio_codecs() == sendrecv_codecs); |
| 2494 |
| 2495 // Test empty send codecs list |
| 2496 sf.set_audio_codecs(no_codecs, recv_codecs); |
| 2497 EXPECT_TRUE(sf.audio_send_codecs() == no_codecs); |
| 2498 EXPECT_TRUE(sf.audio_recv_codecs() == recv_codecs); |
| 2499 EXPECT_TRUE(sf.audio_codecs() == no_codecs); |
| 2500 |
| 2501 // Test empty recv codecs list |
| 2502 sf.set_audio_codecs(send_codecs, no_codecs); |
| 2503 EXPECT_TRUE(sf.audio_send_codecs() == send_codecs); |
| 2504 EXPECT_TRUE(sf.audio_recv_codecs() == no_codecs); |
| 2505 EXPECT_TRUE(sf.audio_codecs() == no_codecs); |
| 2506 |
| 2507 // Test all empty codec lists |
| 2508 sf.set_audio_codecs(no_codecs, no_codecs); |
| 2509 EXPECT_TRUE(sf.audio_send_codecs() == no_codecs); |
| 2510 EXPECT_TRUE(sf.audio_recv_codecs() == no_codecs); |
| 2511 EXPECT_TRUE(sf.audio_codecs() == no_codecs); |
| 2512 } |
| 2513 |
| 2514 namespace { |
| 2515 void TestAudioCodecsOffer(MediaContentDirection direction, |
| 2516 bool add_legacy_stream) { |
| 2517 TransportDescriptionFactory tdf; |
| 2518 MediaSessionDescriptionFactory sf(&tdf); |
| 2519 const std::vector<AudioCodec> send_codecs = MAKE_VECTOR(kAudioCodecs1); |
| 2520 const std::vector<AudioCodec> recv_codecs = MAKE_VECTOR(kAudioCodecs2); |
| 2521 const std::vector<AudioCodec> sendrecv_codecs = |
| 2522 MAKE_VECTOR(kAudioCodecsAnswer); |
| 2523 sf.set_audio_codecs(send_codecs, recv_codecs); |
| 2524 sf.set_add_legacy_streams(add_legacy_stream); |
| 2525 |
| 2526 MediaSessionOptions opts; |
| 2527 opts.recv_audio = (direction == cricket::MD_RECVONLY || |
| 2528 direction == cricket::MD_SENDRECV); |
| 2529 opts.recv_video = false; |
| 2530 if (direction == cricket::MD_SENDONLY || direction == cricket::MD_SENDRECV) |
| 2531 opts.AddSendStream(MEDIA_TYPE_AUDIO, kAudioTrack1, kMediaStream1); |
| 2532 |
| 2533 std::unique_ptr<SessionDescription> offer(sf.CreateOffer(opts, NULL)); |
| 2534 ASSERT_TRUE(offer.get() != NULL); |
| 2535 const ContentInfo* ac = offer->GetContentByName("audio"); |
| 2536 |
| 2537 // If the factory didn't add any audio content to the offer, we cannot check |
| 2538 // that the codecs put in are right. This happens when we neither want to send |
| 2539 // nor receive audio. The checks are still in place if at some point we'd |
| 2540 // instead create an inactive stream. |
| 2541 if (ac) { |
| 2542 AudioContentDescription* acd = |
| 2543 static_cast<AudioContentDescription*>(ac->description); |
| 2544 // sendrecv and inactive should both present lists as if the channel was to |
| 2545 // be used for sending and receiving. Inactive essentially means it might |
| 2546 // eventually be used anything, but we don't know more at this moment. |
| 2547 if (acd->direction() == cricket::MD_SENDONLY) { |
| 2548 EXPECT_TRUE(acd->codecs() == send_codecs); |
| 2549 } else if (acd->direction() == cricket::MD_RECVONLY) { |
| 2550 EXPECT_TRUE(acd->codecs() == recv_codecs); |
| 2551 } else { |
| 2552 EXPECT_TRUE(acd->codecs() == sendrecv_codecs); |
| 2553 } |
| 2554 } |
| 2555 } |
| 2556 |
| 2557 static const AudioCodec kOfferAnswerCodecs[] = { |
| 2558 AudioCodec(0, "codec0", 16000, -1, 1), |
| 2559 AudioCodec(1, "codec1", 8000, 13300, 1), |
| 2560 AudioCodec(2, "codec2", 8000, 64000, 1), |
| 2561 AudioCodec(3, "codec3", 8000, 64000, 1), |
| 2562 AudioCodec(4, "codec4", 8000, 0, 2), |
| 2563 AudioCodec(5, "codec5", 32000, 0, 1), |
| 2564 AudioCodec(6, "codec6", 48000, 0, 1) |
| 2565 }; |
| 2566 |
| 2567 |
| 2568 /* The codecs groups below are chosen as per the matrix below. The objective is |
| 2569 * to have different sets of codecs in the inputs, to get unique sets of codecs |
| 2570 * after negotiation, depending on offer and answer communication directions. |
| 2571 * One-way directions in the offer should either result in the opposite |
| 2572 * direction in the answer, or an inactive answer. Regardless, the choice of |
| 2573 * codecs should be as if the answer contained the opposite direction. |
| 2574 * Inactive offers should be treated as sendrecv/sendrecv. |
| 2575 * |
| 2576 * | Offer | Answer | Result |
| 2577 * codec|send recv sr | send recv sr | s/r r/s sr/s sr/r sr/sr |
| 2578 * 0 | x - - | - x - | x - - - - |
| 2579 * 1 | x x x | - x - | x - - x - |
| 2580 * 2 | - x - | x - - | - x - - - |
| 2581 * 3 | x x x | x - - | - x x - - |
| 2582 * 4 | - x - | x x x | - x - - - |
| 2583 * 5 | x - - | x x x | x - - - - |
| 2584 * 6 | x x x | x x x | x x x x x |
| 2585 */ |
| 2586 // Codecs used by offerer in the AudioCodecsAnswerTest |
| 2587 static const int kOfferSendCodecs[] = { 0, 1, 3, 5, 6 }; |
| 2588 static const int kOfferRecvCodecs[] = { 1, 2, 3, 4, 6 }; |
| 2589 // Codecs used in the answerer in the AudioCodecsAnswerTest. The order is |
| 2590 // jumbled to catch the answer not following the order in the offer. |
| 2591 static const int kAnswerSendCodecs[] = { 6, 5, 2, 3, 4 }; |
| 2592 static const int kAnswerRecvCodecs[] = { 6, 5, 4, 1, 0 }; |
| 2593 // The resulting sets of codecs in the answer in the AudioCodecsAnswerTest |
| 2594 static const int kResultSend_RecvCodecs[] = { 0, 1, 5, 6 }; |
| 2595 static const int kResultRecv_SendCodecs[] = { 2, 3, 4, 6 }; |
| 2596 static const int kResultSendrecv_SendCodecs[] = { 3, 6 }; |
| 2597 static const int kResultSendrecv_RecvCodecs[] = { 1, 6 }; |
| 2598 static const int kResultSendrecv_SendrecvCodecs[] = { 6 }; |
| 2599 |
| 2600 template <typename T, int IDXS> |
| 2601 std::vector<T> VectorFromIndices(const T* array, const int (&indices)[IDXS]) { |
| 2602 std::vector<T> out; |
| 2603 out.reserve(IDXS); |
| 2604 for (int idx : indices) |
| 2605 out.push_back(array[idx]); |
| 2606 |
| 2607 return out; |
| 2608 } |
| 2609 |
| 2610 void TestAudioCodecsAnswer(MediaContentDirection offer_direction, |
| 2611 MediaContentDirection answer_direction, |
| 2612 bool add_legacy_stream) { |
| 2613 TransportDescriptionFactory offer_tdf; |
| 2614 TransportDescriptionFactory answer_tdf; |
| 2615 MediaSessionDescriptionFactory offer_factory(&offer_tdf); |
| 2616 MediaSessionDescriptionFactory answer_factory(&answer_tdf); |
| 2617 offer_factory.set_audio_codecs( |
| 2618 VectorFromIndices(kOfferAnswerCodecs, kOfferSendCodecs), |
| 2619 VectorFromIndices(kOfferAnswerCodecs, kOfferRecvCodecs)); |
| 2620 answer_factory.set_audio_codecs( |
| 2621 VectorFromIndices(kOfferAnswerCodecs, kAnswerSendCodecs), |
| 2622 VectorFromIndices(kOfferAnswerCodecs, kAnswerRecvCodecs)); |
| 2623 |
| 2624 // Never add a legacy stream to offer - we want to control the offer |
| 2625 // parameters exactly. |
| 2626 offer_factory.set_add_legacy_streams(false); |
| 2627 answer_factory.set_add_legacy_streams(add_legacy_stream); |
| 2628 MediaSessionOptions offer_opts; |
| 2629 offer_opts.recv_audio = (offer_direction == cricket::MD_RECVONLY || |
| 2630 offer_direction == cricket::MD_SENDRECV); |
| 2631 offer_opts.recv_video = false; |
| 2632 if (offer_direction == cricket::MD_SENDONLY || |
| 2633 offer_direction == cricket::MD_SENDRECV) { |
| 2634 offer_opts.AddSendStream(MEDIA_TYPE_AUDIO, kAudioTrack1, kMediaStream1); |
| 2635 } |
| 2636 |
| 2637 std::unique_ptr<SessionDescription> offer( |
| 2638 offer_factory.CreateOffer(offer_opts, NULL)); |
| 2639 ASSERT_TRUE(offer.get() != NULL); |
| 2640 |
| 2641 MediaSessionOptions answer_opts; |
| 2642 answer_opts.recv_audio = (answer_direction == cricket::MD_RECVONLY || |
| 2643 answer_direction == cricket::MD_SENDRECV); |
| 2644 answer_opts.recv_video = false; |
| 2645 if (answer_direction == cricket::MD_SENDONLY || |
| 2646 answer_direction == cricket::MD_SENDRECV) { |
| 2647 answer_opts.AddSendStream(MEDIA_TYPE_AUDIO, kAudioTrack1, kMediaStream1); |
| 2648 } |
| 2649 std::unique_ptr<SessionDescription> answer( |
| 2650 answer_factory.CreateAnswer(offer.get(), answer_opts, NULL)); |
| 2651 const ContentInfo* ac = answer->GetContentByName("audio"); |
| 2652 |
| 2653 // If the factory didn't add any audio content to the answer, we cannot check |
| 2654 // that the codecs put in are right. This happens when we neither want to send |
| 2655 // nor receive audio. The checks are still in place if at some point we'd |
| 2656 // instead create an inactive stream. |
| 2657 if (ac) { |
| 2658 const AudioContentDescription* acd = |
| 2659 static_cast<const AudioContentDescription*>(ac->description); |
| 2660 EXPECT_EQ(MEDIA_TYPE_AUDIO, acd->type()); |
| 2661 |
| 2662 |
| 2663 std::vector<AudioCodec> target_codecs; |
| 2664 // For offers with sendrecv or inactive, we should never reply with more |
| 2665 // codecs than offered, with these codec sets. |
| 2666 switch (offer_direction) { |
| 2667 case cricket::MD_INACTIVE: |
| 2668 target_codecs = VectorFromIndices(kOfferAnswerCodecs, |
| 2669 kResultSendrecv_SendrecvCodecs); |
| 2670 break; |
| 2671 case cricket::MD_SENDONLY: |
| 2672 target_codecs = VectorFromIndices(kOfferAnswerCodecs, |
| 2673 kResultSend_RecvCodecs); |
| 2674 break; |
| 2675 case cricket::MD_RECVONLY: |
| 2676 target_codecs = VectorFromIndices(kOfferAnswerCodecs, |
| 2677 kResultRecv_SendCodecs); |
| 2678 break; |
| 2679 case cricket::MD_SENDRECV: |
| 2680 if (acd->direction() == cricket::MD_SENDONLY) { |
| 2681 target_codecs = VectorFromIndices(kOfferAnswerCodecs, |
| 2682 kResultSendrecv_SendCodecs); |
| 2683 } else if (acd->direction() == cricket::MD_RECVONLY) { |
| 2684 target_codecs = VectorFromIndices(kOfferAnswerCodecs, |
| 2685 kResultSendrecv_RecvCodecs); |
| 2686 } else { |
| 2687 target_codecs = VectorFromIndices(kOfferAnswerCodecs, |
| 2688 kResultSendrecv_SendrecvCodecs); |
| 2689 } |
| 2690 break; |
| 2691 } |
| 2692 |
| 2693 auto format_codecs = [] (const std::vector<AudioCodec>& codecs) { |
| 2694 std::stringstream os; |
| 2695 bool first = true; |
| 2696 os << "{"; |
| 2697 for (const auto& c : codecs) { |
| 2698 os << (first ? " " : ", ") << c.id; |
| 2699 first = false; |
| 2700 } |
| 2701 os << " }"; |
| 2702 return os.str(); |
| 2703 }; |
| 2704 |
| 2705 EXPECT_TRUE(acd->codecs() == target_codecs) |
| 2706 << "Expected: " << format_codecs(target_codecs) |
| 2707 << ", got: " << format_codecs(acd->codecs()) |
| 2708 << "; Offered: " << MediaContentDirectionToString(offer_direction) |
| 2709 << ", answerer wants: " |
| 2710 << MediaContentDirectionToString(answer_direction) |
| 2711 << "; got: " << MediaContentDirectionToString(acd->direction()); |
| 2712 } else { |
| 2713 EXPECT_EQ(offer_direction, cricket::MD_INACTIVE) |
| 2714 << "Only inactive offers are allowed to not generate any audio content"; |
| 2715 } |
| 2716 } |
| 2717 } |
| 2718 |
| 2719 class AudioCodecsOfferTest |
| 2720 : public ::testing::TestWithParam<std::tr1::tuple<MediaContentDirection, |
| 2721 bool>> { |
| 2722 }; |
| 2723 |
| 2724 TEST_P(AudioCodecsOfferTest, TestCodecsInOffer) { |
| 2725 TestAudioCodecsOffer(std::tr1::get<0>(GetParam()), |
| 2726 std::tr1::get<1>(GetParam())); |
| 2727 } |
| 2728 |
| 2729 INSTANTIATE_TEST_CASE_P(MediaSessionDescriptionFactoryTest, |
| 2730 AudioCodecsOfferTest, |
| 2731 ::testing::Combine( |
| 2732 ::testing::Values(cricket::MD_SENDONLY, |
| 2733 cricket::MD_RECVONLY, |
| 2734 cricket::MD_SENDRECV, |
| 2735 cricket::MD_INACTIVE), |
| 2736 ::testing::Bool())); |
| 2737 |
| 2738 class AudioCodecsAnswerTest |
| 2739 : public ::testing::TestWithParam<std::tr1::tuple<MediaContentDirection, |
| 2740 MediaContentDirection, |
| 2741 bool>> { |
| 2742 }; |
| 2743 |
| 2744 TEST_P(AudioCodecsAnswerTest, TestCodecsInAnswer) { |
| 2745 TestAudioCodecsAnswer(std::tr1::get<0>(GetParam()), |
| 2746 std::tr1::get<1>(GetParam()), |
| 2747 std::tr1::get<2>(GetParam())); |
| 2748 } |
| 2749 |
| 2750 INSTANTIATE_TEST_CASE_P(MediaSessionDescriptionFactoryTest, |
| 2751 AudioCodecsAnswerTest, |
| 2752 ::testing::Combine( |
| 2753 ::testing::Values(cricket::MD_SENDONLY, |
| 2754 cricket::MD_RECVONLY, |
| 2755 cricket::MD_SENDRECV, |
| 2756 cricket::MD_INACTIVE), |
| 2757 ::testing::Values(cricket::MD_SENDONLY, |
| 2758 cricket::MD_RECVONLY, |
| 2759 cricket::MD_SENDRECV, |
| 2760 cricket::MD_INACTIVE), |
| 2761 ::testing::Bool())); |
OLD | NEW |