Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: webrtc/pc/mediasession_unittest.cc

Issue 1956343002: Initial asymmetric codec support in MediaSessionDescription (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix MediaContetDirectionToString warning. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« webrtc/pc/mediasession.cc ('K') | « webrtc/pc/mediasession.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 2160 matching lines...) Expand 10 before | Expand all | Expand 10 after
2388 ASSERT_TRUE(video_content != nullptr); 2391 ASSERT_TRUE(video_content != nullptr);
2389 ASSERT_TRUE(data_content != nullptr); 2392 ASSERT_TRUE(data_content != nullptr);
2390 EXPECT_EQ("audio_modified", audio_content->name); 2393 EXPECT_EQ("audio_modified", audio_content->name);
2391 EXPECT_EQ("video_modified", video_content->name); 2394 EXPECT_EQ("video_modified", video_content->name);
2392 EXPECT_EQ("data_modified", data_content->name); 2395 EXPECT_EQ("data_modified", data_content->name);
2393 } 2396 }
2394 2397
2395 class MediaProtocolTest : public ::testing::TestWithParam<const char*> { 2398 class MediaProtocolTest : public ::testing::TestWithParam<const char*> {
2396 public: 2399 public:
2397 MediaProtocolTest() : f1_(&tdf1_), f2_(&tdf2_) { 2400 MediaProtocolTest() : f1_(&tdf1_), f2_(&tdf2_) {
2398 f1_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs1)); 2401 f1_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs1),
2402 MAKE_VECTOR(kAudioCodecs1));
2399 f1_.set_video_codecs(MAKE_VECTOR(kVideoCodecs1)); 2403 f1_.set_video_codecs(MAKE_VECTOR(kVideoCodecs1));
2400 f1_.set_data_codecs(MAKE_VECTOR(kDataCodecs1)); 2404 f1_.set_data_codecs(MAKE_VECTOR(kDataCodecs1));
2401 f2_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs2)); 2405 f2_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs2),
2406 MAKE_VECTOR(kAudioCodecs2));
2402 f2_.set_video_codecs(MAKE_VECTOR(kVideoCodecs2)); 2407 f2_.set_video_codecs(MAKE_VECTOR(kVideoCodecs2));
2403 f2_.set_data_codecs(MAKE_VECTOR(kDataCodecs2)); 2408 f2_.set_data_codecs(MAKE_VECTOR(kDataCodecs2));
2404 f1_.set_secure(SEC_ENABLED); 2409 f1_.set_secure(SEC_ENABLED);
2405 f2_.set_secure(SEC_ENABLED); 2410 f2_.set_secure(SEC_ENABLED);
2406 tdf1_.set_certificate(rtc::RTCCertificate::Create( 2411 tdf1_.set_certificate(rtc::RTCCertificate::Create(
2407 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id1")))); 2412 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id1"))));
2408 tdf2_.set_certificate(rtc::RTCCertificate::Create( 2413 tdf2_.set_certificate(rtc::RTCCertificate::Create(
2409 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id2")))); 2414 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id2"))));
2410 tdf1_.set_secure(SEC_ENABLED); 2415 tdf1_.set_secure(SEC_ENABLED);
2411 tdf2_.set_secure(SEC_ENABLED); 2416 tdf2_.set_secure(SEC_ENABLED);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
2443 EXPECT_EQ(GetParam(), acd->protocol()); 2448 EXPECT_EQ(GetParam(), acd->protocol());
2444 EXPECT_EQ(GetParam(), vcd->protocol()); 2449 EXPECT_EQ(GetParam(), vcd->protocol());
2445 } 2450 }
2446 2451
2447 INSTANTIATE_TEST_CASE_P(MediaProtocolPatternTest, 2452 INSTANTIATE_TEST_CASE_P(MediaProtocolPatternTest,
2448 MediaProtocolTest, 2453 MediaProtocolTest,
2449 ::testing::ValuesIn(kMediaProtocols)); 2454 ::testing::ValuesIn(kMediaProtocols));
2450 INSTANTIATE_TEST_CASE_P(MediaProtocolDtlsPatternTest, 2455 INSTANTIATE_TEST_CASE_P(MediaProtocolDtlsPatternTest,
2451 MediaProtocolTest, 2456 MediaProtocolTest,
2452 ::testing::ValuesIn(kMediaProtocolsDtls)); 2457 ::testing::ValuesIn(kMediaProtocolsDtls));
2458
2459 TEST_F(MediaSessionDescriptionFactoryTest, TestSetAudioCodecs) {
2460 TransportDescriptionFactory tdf;
2461 MediaSessionDescriptionFactory sf(&tdf);
2462 std::vector<AudioCodec> send_codecs = MAKE_VECTOR(kAudioCodecs1);
2463 std::vector<AudioCodec> recv_codecs = MAKE_VECTOR(kAudioCodecs2);
2464
2465 // The merged list of codecs should contain any send codecs that are also
2466 // nominally in the recieve codecs list. Payload types should be picked from
2467 // the send codecs and a number-of-channels of 0 and 1 should be equivalent
2468 // (set to 1). This equals what happens when the send codecs are used in an
2469 // offer and the receive codecs are used in the following answer.
2470 const std::vector<AudioCodec> sendrecv_codecs =
2471 MAKE_VECTOR(kAudioCodecsAnswer);
2472 const std::vector<AudioCodec> no_codecs;
2473
2474 RTC_CHECK_EQ(send_codecs[1].name, "iLBC")
2475 << "Please don't change shared test data!";
2476 RTC_CHECK_EQ(recv_codecs[2].name, "iLBC")
2477 << "Please don't change shared test data!";
2478 // Alter iLBC send codec to have zero channels, to test that that is handled
2479 // properly.
2480 send_codecs[1].channels = 0;
2481
2482 // Alther iLBC receive codec to be lowercase, to test that case conversions
2483 // are handled properly.
2484 recv_codecs[2].name = "ilbc";
2485
2486 // Test proper merge
2487 sf.set_audio_codecs(send_codecs, recv_codecs);
2488 EXPECT_TRUE(sf.audio_send_codecs() == send_codecs);
2489 EXPECT_TRUE(sf.audio_recv_codecs() == recv_codecs);
2490 EXPECT_TRUE(sf.audio_codecs() == sendrecv_codecs);
2491
2492 // Test empty send codecs list
2493 sf.set_audio_codecs(no_codecs, recv_codecs);
2494 EXPECT_TRUE(sf.audio_send_codecs() == no_codecs);
2495 EXPECT_TRUE(sf.audio_recv_codecs() == recv_codecs);
2496 EXPECT_TRUE(sf.audio_codecs() == no_codecs);
2497
2498 // Test empty recv codecs list
2499 sf.set_audio_codecs(send_codecs, no_codecs);
2500 EXPECT_TRUE(sf.audio_send_codecs() == send_codecs);
2501 EXPECT_TRUE(sf.audio_recv_codecs() == no_codecs);
2502 EXPECT_TRUE(sf.audio_codecs() == no_codecs);
2503
2504 // Test all empty codec lists
2505 sf.set_audio_codecs(no_codecs, no_codecs);
2506 EXPECT_TRUE(sf.audio_send_codecs() == no_codecs);
2507 EXPECT_TRUE(sf.audio_recv_codecs() == no_codecs);
2508 EXPECT_TRUE(sf.audio_codecs() == no_codecs);
2509 }
2510
2511 namespace {
2512 void TestAudioCodecsOffer(MediaContentDirection direction,
2513 bool add_legacy_stream) {
2514 TransportDescriptionFactory tdf;
2515 MediaSessionDescriptionFactory sf(&tdf);
2516 const std::vector<AudioCodec> send_codecs = MAKE_VECTOR(kAudioCodecs1);
2517 const std::vector<AudioCodec> recv_codecs = MAKE_VECTOR(kAudioCodecs2);
2518 const std::vector<AudioCodec> sendrecv_codecs =
2519 MAKE_VECTOR(kAudioCodecsAnswer);
2520 sf.set_audio_codecs(send_codecs, recv_codecs);
2521 sf.set_add_legacy_streams(add_legacy_stream);
2522
2523 MediaSessionOptions opts;
2524 opts.recv_audio = (direction == cricket::MD_RECVONLY ||
2525 direction == cricket::MD_SENDRECV);
2526 opts.recv_video = false;
2527 if (direction == cricket::MD_SENDONLY || direction == cricket::MD_SENDRECV)
2528 opts.AddSendStream(MEDIA_TYPE_AUDIO, kAudioTrack1, kMediaStream1);
2529
2530 std::unique_ptr<SessionDescription> offer(sf.CreateOffer(opts, NULL));
2531 ASSERT_TRUE(offer.get() != NULL);
2532 const ContentInfo* ac = offer->GetContentByName("audio");
2533
2534 // If the factory didn't add any audio content to the offer, we cannot check
2535 // that the codecs put in are right. This happens when we neither want to send
2536 // nor receive audio. The checks are still in place if at some point we'd
2537 // instead create an inactive stream.
2538 if (ac) {
2539 AudioContentDescription* acd =
2540 static_cast<AudioContentDescription*>(ac->description);
2541 // sendrecv and inactive should both present lists as if the channel was to
2542 // be used for sending and receiving. Inactive essentially means it might
2543 // eventually be used anything, but we don't know more at this moment.
2544 if (acd->direction() == cricket::MD_SENDONLY) {
2545 EXPECT_TRUE(acd->codecs() == send_codecs);
2546 } else if (acd->direction() == cricket::MD_RECVONLY) {
2547 EXPECT_TRUE(acd->codecs() == recv_codecs);
2548 } else {
2549 EXPECT_TRUE(acd->codecs() == sendrecv_codecs);
2550 }
2551 }
2552 }
2553
2554 static const AudioCodec kOfferAnswerCodecs[] = {
2555 AudioCodec(0, "codec0", 16000, -1, 1),
2556 AudioCodec(1, "codec1", 8000, 13300, 1),
2557 AudioCodec(2, "codec2", 8000, 64000, 1),
2558 AudioCodec(3, "codec3", 8000, 64000, 1),
2559 AudioCodec(4, "codec4", 8000, 0, 2),
2560 AudioCodec(5, "codec5", 32000, 0, 1),
2561 AudioCodec(6, "codec6", 48000, 0, 1)
2562 };
2563
2564
2565 /* The codecs groups below are chosen as per the matrix below. The objective is
2566 * to have different sets of codecs in the inputs, to get unique sets of codecs
2567 * after negotiation, depending on offer and answer communication directions.
2568 *
2569 * | Offer | Answer | Result
2570 * codec|send recv sr | send recv sr | s/r s/sr r/s r/sr sr/s sr/r sr/sr
Taylor Brandstetter 2016/06/03 17:13:20 I'm confused about s/sr and r/sr. How can the answ
ossu 2016/06/10 09:10:04 I should flesh out this description: s/sr means th
Taylor Brandstetter 2016/06/10 17:39:13 Yes, I think that's right. Similarly, suppose the
2571 * 0 | x - - | - x - | x - - - - - -
2572 * 1 | x x x | - x - | x - - - - x -
2573 * 2 | - x - | x - - | - - x - - - -
2574 * 3 | x x x | x - - | - - x - x - -
2575 * 4 | - x - | x x x | - - x x - - -
2576 * 5 | x - - | x x x | x x - - - - -
2577 * 6 | x x x | x x x | x x x x x x x
2578 */
2579 // Codecs used by offerer in the AudioCodecsAnswerTest
2580 static const int kOfferSendCodecs[] = { 0, 1, 3, 5, 6 };
2581 static const int kOfferRecvCodecs[] = { 1, 2, 3, 4, 6 };
2582 // Codecs used in the answerer in the AudioCodecsAnswerTest. The order is
2583 // jumbled to catch the answer not following the order in the offer.
2584 static const int kAnswerSendCodecs[] = { 6, 5, 2, 3, 4 };
2585 static const int kAnswerRecvCodecs[] = { 6, 5, 4, 1, 0 };
2586 // The resulting sets of codecs in the answer in the AudioCodecsAnswerTest
2587 static const int kResultSend_RecvCodecs[] = { 0, 1, 5, 6 };
2588 static const int kResultSend_SendrecvCodecs[] = { 5, 6 };
2589 static const int kResultRecv_SendCodecs[] = { 2, 3, 4, 6 };
2590 static const int kResultRecv_SendrecvCodecs[] = { 4, 6 };
2591 static const int kResultSendrecv_SendCodecs[] = { 3, 6 };
2592 static const int kResultSendrecv_RecvCodecs[] = { 1, 6 };
2593 static const int kResultSendrecv_SendrecvCodecs[] = { 6 };
2594
2595 template <typename T, int IDXS>
2596 std::vector<T> VectorFromIndices(const T* array, const int (&indices)[IDXS]) {
2597 std::vector<T> out;
2598 out.reserve(IDXS);
2599 for (int idx : indices)
2600 out.push_back(array[idx]);
2601
2602 return out;
2603 }
2604
2605 void TestAudioCodecsAnswer(MediaContentDirection offer_direction,
2606 MediaContentDirection answer_direction,
2607 bool add_legacy_stream) {
2608 TransportDescriptionFactory offer_tdf;
2609 TransportDescriptionFactory answer_tdf;
2610 MediaSessionDescriptionFactory offer_factory(&offer_tdf);
2611 MediaSessionDescriptionFactory answer_factory(&answer_tdf);
2612 offer_factory.set_audio_codecs(
2613 VectorFromIndices(kOfferAnswerCodecs, kOfferSendCodecs),
2614 VectorFromIndices(kOfferAnswerCodecs, kOfferRecvCodecs));
2615 answer_factory.set_audio_codecs(
2616 VectorFromIndices(kOfferAnswerCodecs, kAnswerSendCodecs),
2617 VectorFromIndices(kOfferAnswerCodecs, kAnswerRecvCodecs));
2618
2619 // Never add a legacy stream to offer - we want to control the offer
2620 // parameters exactly.
2621 offer_factory.set_add_legacy_streams(false);
2622 answer_factory.set_add_legacy_streams(add_legacy_stream);
2623 MediaSessionOptions offer_opts;
2624 offer_opts.recv_audio = (offer_direction == cricket::MD_RECVONLY ||
2625 offer_direction == cricket::MD_SENDRECV);
2626 offer_opts.recv_video = false;
2627 if (offer_direction == cricket::MD_SENDONLY ||
2628 offer_direction == cricket::MD_SENDRECV) {
2629 offer_opts.AddSendStream(MEDIA_TYPE_AUDIO, kAudioTrack1, kMediaStream1);
2630 }
2631
2632 std::unique_ptr<SessionDescription> offer(
2633 offer_factory.CreateOffer(offer_opts, NULL));
2634 ASSERT_TRUE(offer.get() != NULL);
2635
2636 MediaSessionOptions answer_opts;
2637 answer_opts.recv_audio = (answer_direction == cricket::MD_RECVONLY ||
2638 answer_direction == cricket::MD_SENDRECV);
2639 answer_opts.recv_video = false;
2640 if (answer_direction == cricket::MD_SENDONLY ||
2641 answer_direction == cricket::MD_SENDRECV) {
2642 answer_opts.AddSendStream(MEDIA_TYPE_AUDIO, kAudioTrack1, kMediaStream1);
2643 }
2644 std::unique_ptr<SessionDescription> answer(
2645 answer_factory.CreateAnswer(offer.get(), answer_opts, NULL));
2646 const ContentInfo* ac = answer->GetContentByName("audio");
2647
2648 // If the factory didn't add any audio content to the answer, we cannot check
2649 // that the codecs put in are right. This happens when we neither want to send
2650 // nor receive audio. The checks are still in place if at some point we'd
2651 // instead create an inactive stream.
2652 if (ac) {
2653 const AudioContentDescription* acd =
2654 static_cast<const AudioContentDescription*>(ac->description);
Taylor Brandstetter 2016/06/03 17:18:58 Another small afterthought: It may be valuable to
ossu 2016/06/10 09:10:04 I intended this test to only cover that the correc
Taylor Brandstetter 2016/06/10 17:39:13 Acknowledged. I don't think we *have* full coverag
ossu 2016/06/13 12:47:19 Acknowledged.
2655 EXPECT_EQ(MEDIA_TYPE_AUDIO, acd->type());
2656
2657
2658 std::vector<AudioCodec> target_codecs;
2659 // For offers with sendrecv or inactive, we should never reply with more
2660 // codecs than offered, with these codec sets.
2661 switch (offer_direction) {
2662 case cricket::MD_INACTIVE:
2663 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2664 kResultSendrecv_SendrecvCodecs);
2665 break;
2666 case cricket::MD_SENDONLY:
2667 if (acd->direction() == cricket::MD_RECVONLY) {
2668 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2669 kResultSend_RecvCodecs);
2670 } else {
2671 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2672 kResultSend_SendrecvCodecs);
2673 }
2674 break;
2675 case cricket::MD_RECVONLY:
2676 if (acd->direction() == cricket::MD_SENDONLY) {
2677 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2678 kResultRecv_SendCodecs);
2679 } else {
2680 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2681 kResultRecv_SendrecvCodecs);
2682 }
2683 break;
2684 case cricket::MD_SENDRECV:
2685 if (acd->direction() == cricket::MD_SENDONLY) {
2686 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2687 kResultSendrecv_SendCodecs);
2688 } else if (acd->direction() == cricket::MD_RECVONLY) {
2689 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2690 kResultSendrecv_RecvCodecs);
2691 } else {
2692 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2693 kResultSendrecv_SendrecvCodecs);
2694 }
2695 break;
2696 }
2697
2698 auto format_codecs = [] (const std::vector<AudioCodec>& codecs) {
2699 std::stringstream os;
2700 bool first = true;
2701 os << "{";
2702 for (const auto& c : codecs) {
2703 os << (first ? " " : ", ") << c.id;
2704 first = false;
2705 }
2706 os << " }";
2707 return os.str();
2708 };
2709
2710 EXPECT_TRUE(acd->codecs() == target_codecs)
2711 << "Expected: " << format_codecs(target_codecs)
2712 << ", got: " << format_codecs(acd->codecs())
2713 << "; Offered: " << MediaContentDirectionToString(offer_direction)
2714 << ", answerer wants: "
2715 << MediaContentDirectionToString(answer_direction)
2716 << "; got: " << MediaContentDirectionToString(acd->direction());
2717 } else {
2718 EXPECT_EQ(offer_direction, cricket::MD_INACTIVE)
2719 << "Only inactive offers are allowed to not generate any audio content";
2720 }
2721 }
2722 }
2723
2724 class AudioCodecsOfferTest
2725 : public ::testing::TestWithParam<std::tr1::tuple<MediaContentDirection,
2726 bool>> {
2727 };
2728
2729 TEST_P(AudioCodecsOfferTest, TestCodecsInOffer) {
2730 TestAudioCodecsOffer(std::tr1::get<0>(GetParam()),
2731 std::tr1::get<1>(GetParam()));
2732 }
2733
2734 INSTANTIATE_TEST_CASE_P(MediaSessionDescriptionFactoryTest,
2735 AudioCodecsOfferTest,
2736 ::testing::Combine(
2737 ::testing::Values(cricket::MD_SENDONLY,
2738 cricket::MD_RECVONLY,
2739 cricket::MD_SENDRECV,
2740 cricket::MD_INACTIVE),
2741 ::testing::Bool()));
2742
2743 class AudioCodecsAnswerTest
2744 : public ::testing::TestWithParam<std::tr1::tuple<MediaContentDirection,
2745 MediaContentDirection,
2746 bool>> {
2747 };
2748
2749 TEST_P(AudioCodecsAnswerTest, TestCodecsInAnswer) {
2750 TestAudioCodecsAnswer(std::tr1::get<0>(GetParam()),
2751 std::tr1::get<1>(GetParam()),
2752 std::tr1::get<2>(GetParam()));
2753 }
2754
2755 INSTANTIATE_TEST_CASE_P(MediaSessionDescriptionFactoryTest,
2756 AudioCodecsAnswerTest,
2757 ::testing::Combine(
2758 ::testing::Values(cricket::MD_SENDONLY,
2759 cricket::MD_RECVONLY,
2760 cricket::MD_SENDRECV,
2761 cricket::MD_INACTIVE),
2762 ::testing::Values(cricket::MD_SENDONLY,
2763 cricket::MD_RECVONLY,
2764 cricket::MD_SENDRECV,
2765 cricket::MD_INACTIVE),
2766 ::testing::Bool()));
OLDNEW
« webrtc/pc/mediasession.cc ('K') | « webrtc/pc/mediasession.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698