blob: 901e8550b92e7b9afd174a29b18760cbc6576f6c [file] [log] [blame]
[email protected]11d0c362012-10-11 02:02:111// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "ppapi/c/dev/ppb_video_capture_dev.h"
6#include "ppapi/c/pp_errors.h"
7#include "ppapi/c/private/ppb_flash.h"
8#include "ppapi/proxy/ppapi_messages.h"
9#include "ppapi/proxy/ppapi_proxy_test.h"
10#include "ppapi/shared_impl/scoped_pp_resource.h"
11#include "ppapi/thunk/thunk.h"
12
13namespace ppapi {
14namespace proxy {
15
16namespace {
17
18typedef PluginProxyTest FlashResourceTest;
19
20// This simulates the creation reply message of a VideoCapture resource. This
21// won't be necessary once VideoCapture is converted to the new-style proxy.
22class VideoCaptureCreationHandler : public IPC::Listener {
23 public:
24 VideoCaptureCreationHandler(ResourceMessageTestSink* test_sink,
25 PP_Instance instance)
26 : test_sink_(test_sink),
27 instance_(instance) {
28 }
29 virtual ~VideoCaptureCreationHandler() {}
30
31 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE {
32 if (msg.type() != ::PpapiHostMsg_PPBVideoCapture_Create::ID)
33 return false;
34
35 IPC::Message* reply_msg = IPC::SyncMessage::GenerateReply(&msg);
36 HostResource resource;
37 resource.SetHostResource(instance_, 12345);
38 PpapiHostMsg_PPBVideoCapture_Create::WriteReplyParams(reply_msg, resource);
39 test_sink_->SetSyncReplyMessage(reply_msg);
40 return true;
41 }
42 private:
43 ResourceMessageTestSink* test_sink_;
44 PP_Instance instance_;
45};
46
47void* Unused(void* user_data, uint32_t element_count, uint32_t element_size) {
48 return NULL;
49}
50
51} // namespace
52
53// Does a test of EnumerateVideoCaptureDevices() and reply functionality in
54// the plugin side using the public C interfaces.
55TEST_F(FlashResourceTest, EnumerateVideoCaptureDevices) {
56 // TODO(raymes): This doesn't actually check that the data is converted from
57 // |ppapi::DeviceRefData| to |PPB_DeviceRef| correctly, just that the right
58 // messages are sent.
59
60 // Set up a sync call handler that should return this message.
61 std::vector<ppapi::DeviceRefData> reply_device_ref_data;
62 int32_t expected_result = PP_OK;
63 PpapiPluginMsg_Flash_EnumerateVideoCaptureDevicesReply reply_msg(
64 reply_device_ref_data);
65 ResourceSyncCallHandler enumerate_video_devices_handler(
66 &sink(),
67 PpapiHostMsg_Flash_EnumerateVideoCaptureDevices::ID,
68 expected_result,
69 reply_msg);
70 sink().AddFilter(&enumerate_video_devices_handler);
71
72 // Setup the handler to simulate creation of the video resource.
73 VideoCaptureCreationHandler video_creation_handler(&sink(), pp_instance());
74 sink().AddFilter(&video_creation_handler);
75
76 // Set up the arguments to the call.
77 ScopedPPResource video_capture(ScopedPPResource::PassRef(),
78 ::ppapi::thunk::GetPPB_VideoCapture_Dev_0_2_Thunk()->Create(
79 pp_instance()));
80 std::vector<PP_Resource> unused;
81 PP_ArrayOutput output;
82 output.GetDataBuffer = &Unused;
83 output.user_data = &unused;
84
85 // Make the call.
86 const PPB_Flash_12_6* flash_iface = ::ppapi::thunk::GetPPB_Flash_12_6_Thunk();
87 int32_t actual_result = flash_iface->EnumerateVideoCaptureDevices(
88 pp_instance(), video_capture.get(), output);
89
90 // Check the result is as expected.
91 EXPECT_EQ(expected_result, actual_result);
92
93 // Should have sent an "EnumerateVideoCaptureDevices" message.
94 ASSERT_TRUE(enumerate_video_devices_handler.last_handled_msg().type() ==
95 PpapiHostMsg_Flash_EnumerateVideoCaptureDevices::ID);
96
97 // Remove the filter or it will be destroyed before the sink() is destroyed.
98 sink().RemoveFilter(&enumerate_video_devices_handler);
99 sink().RemoveFilter(&video_creation_handler);
100}
101
102} // namespace proxy
103} // namespace ppapi