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

Unified Diff: chrome/renderer/pepper_devices_unittest.cc

Issue 1207005: Add a Pepper audio basic functionality unit test. (Closed)
Patch Set: Fixed style issues. Created 10 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/mock_render_thread.cc ('k') | ipc/ipc_channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/pepper_devices_unittest.cc
diff --git a/chrome/renderer/pepper_devices_unittest.cc b/chrome/renderer/pepper_devices_unittest.cc
index b793a4ece48fb492c9fdad6236b4ef4eb1a96cdf..d7d2a6e1c0476698b6df929e0709e0c5c7c2d0c8 100644
--- a/chrome/renderer/pepper_devices_unittest.cc
+++ b/chrome/renderer/pepper_devices_unittest.cc
@@ -117,6 +117,9 @@ class PepperDeviceTest : public RenderViewTest {
NPError err,
NPUserData* user_data);
+ // Audio callback, currently empty.
+ static void AudioCallback(NPDeviceContextAudio* context);
+
// A log of flush commands we can use to check the async callbacks.
struct FlushData {
NPP instance;
@@ -218,6 +221,10 @@ void PepperDeviceTest::FlushCalled(NPP instance,
that->flush_calls_.push_back(flush_data);
}
+void PepperDeviceTest::AudioCallback(NPDeviceContextAudio* context) {
+}
+
+
// -----------------------------------------------------------------------------
// TODO(brettw) this crashes on Mac. Figure out why and enable.
@@ -250,3 +257,23 @@ TEST_F(PepperDeviceTest, Flush) {
EXPECT_EQ(1u, flush_calls_.size());
}
#endif
+
+TEST_F(PepperDeviceTest, AudioInit) {
+ NPDeviceContextAudioConfig config;
+ config.sampleRate = NPAudioSampleRate44100Hz;
+ config.sampleType = NPAudioSampleTypeInt16;
+ config.outputChannelMap = NPAudioChannelStereo;
+ config.callback = &AudioCallback;
+ config.userData = this;
+ NPDeviceContextAudio context;
+ EXPECT_EQ(NPERR_NO_ERROR,
+ pepper_plugin()->DeviceAudioInitializeContext(&config, &context));
+ EXPECT_TRUE(render_thread_.sink().GetFirstMessageMatching(
+ ViewHostMsg_CreateAudioStream::ID));
+ EXPECT_EQ(0, memcmp(&config, &context.config, sizeof(config)));
+ EXPECT_EQ(NPERR_NO_ERROR,
+ pepper_plugin()->DeviceAudioDestroyContext(&context));
+ EXPECT_TRUE(render_thread_.sink().GetFirstMessageMatching(
+ ViewHostMsg_CloseAudioStream::ID));
+}
+
« no previous file with comments | « chrome/renderer/mock_render_thread.cc ('k') | ipc/ipc_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698