mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-18 08:07:56 +01:00

Bug: webrtc:13464 Change-Id: I55750dc842adf0d854bbc45e593c0e251064f9d6 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/259771 Reviewed-by: Artem Titov <titovartem@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/main@{#36623}
46 lines
1.8 KiB
C++
46 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "test/gtest.h"
|
|
#include "test/peer_scenario/peer_scenario.h"
|
|
#include "test/peer_scenario/peer_scenario_client.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
#if defined(WEBRTC_WIN)
|
|
#define MAYBE_PsnrIsCollected DISABLED_PsnrIsCollected
|
|
#else
|
|
#define MAYBE_PsnrIsCollected PsnrIsCollected
|
|
#endif
|
|
TEST(PeerScenarioQualityTest, MAYBE_PsnrIsCollected) {
|
|
VideoQualityAnalyzer analyzer;
|
|
{
|
|
PeerScenario s(*test_info_);
|
|
auto caller = s.CreateClient(PeerScenarioClient::Config());
|
|
auto callee = s.CreateClient(PeerScenarioClient::Config());
|
|
PeerScenarioClient::VideoSendTrackConfig video_conf;
|
|
video_conf.generator.squares_video->framerate = 20;
|
|
auto video = caller->CreateVideo("VIDEO", video_conf);
|
|
auto link_builder = s.net()->NodeBuilder().delay_ms(100).capacity_kbps(600);
|
|
s.AttachVideoQualityAnalyzer(&analyzer, video.track.get(), callee);
|
|
s.SimpleConnection(caller, callee, {link_builder.Build().node},
|
|
{link_builder.Build().node});
|
|
s.ProcessMessages(TimeDelta::Seconds(2));
|
|
// Exit scope to ensure that there's no pending tasks reporting to analyzer.
|
|
}
|
|
|
|
// We expect ca 40 frames to be produced, but to avoid flakiness on slow
|
|
// machines we only test for 10.
|
|
EXPECT_GT(analyzer.stats().render.count, 10);
|
|
EXPECT_GT(analyzer.stats().psnr_with_freeze.Mean(), 20);
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|