1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/browser/api/webcam_private/visca_webcam.h"
#include <vector>
#include "base/containers/to_vector.h"
#include "base/functional/bind.h"
#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/gmock_callback_support.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace extensions {
namespace {
using ::base::test::RunCallback;
using ::base::test::RunOnceCallback;
using ::testing::_;
using ::testing::DoAll;
using ::testing::Return;
class MockSerialConnection : public SerialConnection {
public:
explicit MockSerialConnection() : SerialConnection("dummy_id") {
InitSerialPortForTesting();
}
~MockSerialConnection() override = default;
MockSerialConnection(const MockSerialConnection&) = delete;
MockSerialConnection& operator=(const MockSerialConnection&) = delete;
MOCK_METHOD4(Open,
void(api::SerialPortManager* port_manager,
const std::string& path,
const api::serial::ConnectionOptions& options,
OpenCompleteCallback callback));
MOCK_METHOD1(StartPolling, void(const ReceiveEventCallback& callback));
MOCK_METHOD2(Send,
void(const std::vector<uint8_t>& data,
SendCompleteCallback callback));
};
} // namespace
class ViscaWebcamTest : public testing::Test {
protected:
ViscaWebcamTest() {
webcam_ = new ViscaWebcam;
webcam_->OpenForTesting(std::make_unique<MockSerialConnection>());
}
~ViscaWebcamTest() override {}
Webcam* webcam() { return webcam_.get(); }
MockSerialConnection* serial_connection() {
return static_cast<MockSerialConnection*>(
webcam_->GetSerialConnectionForTesting());
}
private:
content::BrowserTaskEnvironment task_environment_;
scoped_refptr<ViscaWebcam> webcam_;
};
TEST_F(ViscaWebcamTest, Zoom) {
// Check getting the zoom.
const uint8_t kGetZoomCommand[] = {0x81, 0x09, 0x04, 0x47, 0xFF};
const uint8_t kGetZoomResponse[] = {0x00, 0x50, 0x01, 0x02, 0x03, 0x04, 0xFF};
EXPECT_CALL(*serial_connection(), Send(base::ToVector(kGetZoomCommand), _))
.WillOnce(RunOnceCallback<1>(sizeof(kGetZoomCommand),
api::serial::SendError::kNone));
EXPECT_CALL(*serial_connection(), StartPolling(_))
.WillOnce(RunCallback<0>(base::ToVector(kGetZoomResponse),
api::serial::ReceiveError::kNone));
{
base::RunLoop loop;
webcam()->GetZoom(base::BindLambdaForTesting(
[&](bool success, int value, int min_value, int max_value) {
EXPECT_TRUE(success);
EXPECT_EQ(0x1234, value);
// TODO(pbos): min/max values aren't currently supported. These
// expectations should be updated when we do.
EXPECT_EQ(0, min_value);
EXPECT_EQ(0, max_value);
loop.Quit();
}));
loop.Run();
}
// Check setting the zoom.
static constexpr uint8_t kSetZoomCommand[] = {0x81, 0x01, 0x04, 0x47, 0x06,
0x02, 0x05, 0x03, 0xFF};
// Note: this is a valid, but empty value because nothing is checking it.
static constexpr uint8_t kSetZoomResponse[] = {0x00, 0x50, 0x00, 0x00,
0x00, 0x00, 0xFF};
EXPECT_CALL(*serial_connection(), Send(base::ToVector(kSetZoomCommand), _))
.WillOnce(RunOnceCallback<1>(sizeof(kSetZoomCommand),
api::serial::SendError::kNone));
EXPECT_CALL(*serial_connection(), StartPolling(_))
.WillOnce(RunCallback<0>(base::ToVector(kSetZoomResponse),
api::serial::ReceiveError::kNone));
{
base::RunLoop loop;
webcam()->SetZoom(0x6253, base::BindLambdaForTesting([&](bool success) {
EXPECT_TRUE(success);
loop.Quit();
}));
loop.Run();
}
}
} // namespace extensions
|