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

Side by Side Diff: talk/app/webrtc/peerconnectioninterface_unittest.cc

Issue 1670153003: Introduce struct MediaConfig, with construction-time settings. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Split into three separate tests. Created 4 years, 10 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
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 2337 matching lines...) Expand 10 before | Expand all | Expand 10 after
2348 webrtc::CreateSessionDescription(SessionDescriptionInterface::kOffer, sdp, 2348 webrtc::CreateSessionDescription(SessionDescriptionInterface::kOffer, sdp,
2349 nullptr)); 2349 nullptr));
2350 2350
2351 EXPECT_TRUE(DoSetLocalDescription(updated_desc.release())); 2351 EXPECT_TRUE(DoSetLocalDescription(updated_desc.release()));
2352 senders = pc_->GetSenders(); 2352 senders = pc_->GetSenders();
2353 EXPECT_EQ(2u, senders.size()); 2353 EXPECT_EQ(2u, senders.size());
2354 EXPECT_TRUE(ContainsSender(senders, kAudioTracks[0])); 2354 EXPECT_TRUE(ContainsSender(senders, kAudioTracks[0]));
2355 EXPECT_TRUE(ContainsSender(senders, kVideoTracks[0])); 2355 EXPECT_TRUE(ContainsSender(senders, kVideoTracks[0]));
2356 } 2356 }
2357 2357
2358 // The PeerConnectionMediaConfig tests below verify that configuration
2359 // and constraints are propagated into the MediaConfig passed to
2360 // CreateMediaController. These settings are intended for MediaChannel
2361 // constructors, but that is not exercised by these unittest.
2362
perkj_webrtc 2016/02/11 08:04:06 nit: remove empty line
2363 class PeerConnectionFactoryForTest : public webrtc::PeerConnectionFactory {
2364 public:
2365 webrtc::MediaControllerInterface* CreateMediaController(
2366 const cricket::MediaConfig &config) const override {
2367 create_media_controller_called_ = true;
2368 create_media_controller_config_ = config;
2369
2370 webrtc::MediaControllerInterface* mc =
2371 PeerConnectionFactory::CreateMediaController(config);
2372 EXPECT_TRUE(mc != nullptr);
2373 return mc;
2374 }
2375
2376 mutable bool create_media_controller_called_ = false;
2377 mutable cricket::MediaConfig create_media_controller_config_;
pthatcher1 2016/02/10 19:24:23 What's the purpose of marking these "mutable"? So
nisse-webrtc 2016/02/11 07:54:33 So I can change them in the CreateMediaController
perkj_webrtc 2016/02/11 08:04:06 maybe add a comment.
2378 };
2379
2380 // This test verifies the DSCP constraint is recognized and passed to
2381 // the CreateMediaController.
2382 TEST(PeerConnectionMediaConfig, TestDscpConstraint) {
2383 scoped_refptr<PeerConnectionFactoryForTest> pcf(
2384 new rtc::RefCountedObject<PeerConnectionFactoryForTest>());
2385 pcf->Initialize();
2386
2387 EXPECT_FALSE(pcf->create_media_controller_config_.enable_dscp);
2388
2389 // Without constraint, default value is true
perkj_webrtc 2016/02/11 08:04:06 false
2390 scoped_refptr<PeerConnectionInterface> pc;
2391 PeerConnectionInterface::RTCConfiguration config;
2392 FakeConstraints constraints;
2393 MockPeerConnectionObserver observer;
2394
2395 pc = pcf->CreatePeerConnection(config, &constraints,
2396 nullptr, nullptr, &observer);
2397 EXPECT_TRUE(pc.get() != nullptr);
perkj_webrtc 2016/02/11 08:04:06 nit: ASSERT_TRUE - otherwise the test will crash b
nisse-webrtc 2016/02/11 09:16:00 Done. I didn't know, and I've had precisely that p
2398 EXPECT_TRUE(pcf->create_media_controller_called_);
2399 EXPECT_FALSE(pcf->create_media_controller_config_.enable_dscp);
2400
2401 // With constraint set to false
perkj_webrtc 2016/02/11 08:04:05 to true
2402 pcf->create_media_controller_called_ = false;
2403
2404 constraints.AddOptional(
2405 webrtc::MediaConstraintsInterface::kEnableDscp, true);
2406
2407 pc = pcf->CreatePeerConnection(config, &constraints,
2408 nullptr, nullptr, &observer);
2409 EXPECT_TRUE(pc.get() != nullptr);
2410 EXPECT_TRUE(pcf->create_media_controller_called_);
2411 EXPECT_TRUE(pcf->create_media_controller_config_.enable_dscp);
2412 }
2413
2414 // This test verifies the cpu overuse detection constraint is
2415 // recognized and passed to the CreateMediaController.
2416 TEST(PeerConnectionMediaConfig, TestCpuOveruseConstraint) {
2417 scoped_refptr<PeerConnectionFactoryForTest> pcf(
2418 new rtc::RefCountedObject<PeerConnectionFactoryForTest>());
2419 pcf->Initialize();
2420
2421 EXPECT_FALSE(pcf->create_media_controller_config_.enable_dscp);
2422
2423 // Without constraint, default value is false
perkj_webrtc 2016/02/11 08:04:06 true
2424 PeerConnectionInterface::RTCConfiguration config;
2425 FakeConstraints constraints;
2426 MockPeerConnectionObserver observer;
2427 scoped_refptr<PeerConnectionInterface> pc;
2428
2429 pc = pcf->CreatePeerConnection(config, &constraints,
2430 nullptr, nullptr, &observer);
2431 EXPECT_TRUE(pc.get() != nullptr);
perkj_webrtc 2016/02/11 08:04:06 same as above
2432 EXPECT_TRUE(pcf->create_media_controller_called_);
2433 EXPECT_TRUE(
2434 pcf->create_media_controller_config_.enable_cpu_overuse_detection);
2435
2436 // With constraint set to true
2437 pcf->create_media_controller_called_ = false;
2438
2439 constraints.AddOptional(
2440 webrtc::MediaConstraintsInterface::kCpuOveruseDetection, false);
2441
2442 pc = pcf->CreatePeerConnection(config, &constraints,
2443 nullptr, nullptr, &observer);
2444 EXPECT_TRUE(pc.get() != nullptr);
2445 EXPECT_TRUE(pcf->create_media_controller_called_);
2446 EXPECT_FALSE(
2447 pcf->create_media_controller_config_.enable_cpu_overuse_detection);
2448 }
2449
2450 // This test verifies the disable_prerenderer_smoothing flag is
2451 // propagated from RTCConfiguration to the CreateMediaController call.
2452 TEST(PeerConnectionMediaConfig, TestDisablePrerenderFlag) {
2453 scoped_refptr<PeerConnectionFactoryForTest> pcf(
2454 new rtc::RefCountedObject<PeerConnectionFactoryForTest>());
2455 pcf->Initialize();
2456
2457 EXPECT_FALSE(pcf->create_media_controller_config_.enable_dscp);
2458
2459 // Default value, false
2460 PeerConnectionInterface::RTCConfiguration config;
2461 FakeConstraints constraints;
2462 MockPeerConnectionObserver observer;
2463 scoped_refptr<PeerConnectionInterface> pc;
2464
2465 pc = pcf->CreatePeerConnection(config, &constraints,
2466 nullptr, nullptr, &observer);
2467 EXPECT_TRUE(pc.get() != nullptr);
perkj_webrtc 2016/02/11 08:04:06 ASSERT....
2468 EXPECT_TRUE(pcf->create_media_controller_called_);
2469 EXPECT_FALSE(
2470 pcf->create_media_controller_config_.disable_prerenderer_smoothing);
2471
2472 // Flag set
2473 pcf->create_media_controller_called_ = false;
2474
2475 config.disable_prerenderer_smoothing = true;
2476 pc = pcf->CreatePeerConnection(config, &constraints,
2477 nullptr, nullptr, &observer);
2478 EXPECT_TRUE(pc.get() != nullptr);
2479 EXPECT_TRUE(pcf->create_media_controller_called_);
2480 EXPECT_TRUE(
2481 pcf->create_media_controller_config_.disable_prerenderer_smoothing);
2482 }
2483
2358 // The following tests verify that session options are created correctly. 2484 // The following tests verify that session options are created correctly.
2359 // TODO(deadbeef): Convert these tests to be more end-to-end. Instead of 2485 // TODO(deadbeef): Convert these tests to be more end-to-end. Instead of
2360 // "verify options are converted correctly", should be "pass options into 2486 // "verify options are converted correctly", should be "pass options into
2361 // CreateOffer and verify the correct offer is produced." 2487 // CreateOffer and verify the correct offer is produced."
2362 2488
2363 TEST(CreateSessionOptionsTest, GetOptionsForOfferWithInvalidAudioOption) { 2489 TEST(CreateSessionOptionsTest, GetOptionsForOfferWithInvalidAudioOption) {
2364 RTCOfferAnswerOptions rtc_options; 2490 RTCOfferAnswerOptions rtc_options;
2365 rtc_options.offer_to_receive_audio = RTCOfferAnswerOptions::kUndefined - 1; 2491 rtc_options.offer_to_receive_audio = RTCOfferAnswerOptions::kUndefined - 1;
2366 2492
2367 cricket::MediaSessionOptions options; 2493 cricket::MediaSessionOptions options;
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
2516 FakeConstraints updated_answer_c; 2642 FakeConstraints updated_answer_c;
2517 answer_c.SetMandatoryReceiveAudio(false); 2643 answer_c.SetMandatoryReceiveAudio(false);
2518 answer_c.SetMandatoryReceiveVideo(false); 2644 answer_c.SetMandatoryReceiveVideo(false);
2519 2645
2520 cricket::MediaSessionOptions updated_answer_options; 2646 cricket::MediaSessionOptions updated_answer_options;
2521 EXPECT_TRUE( 2647 EXPECT_TRUE(
2522 ParseConstraintsForAnswer(&updated_answer_c, &updated_answer_options)); 2648 ParseConstraintsForAnswer(&updated_answer_c, &updated_answer_options));
2523 EXPECT_TRUE(updated_answer_options.has_audio()); 2649 EXPECT_TRUE(updated_answer_options.has_audio());
2524 EXPECT_TRUE(updated_answer_options.has_video()); 2650 EXPECT_TRUE(updated_answer_options.has_video());
2525 } 2651 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698