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

Unified Diff: media/capture/video/linux/camera_facing_chromeos_unittest.cc

Issue 2508803002: Rotate frames correctly for back camera (Closed)
Patch Set: add unit test Created 4 years 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
Index: media/capture/video/linux/camera_facing_chromeos_unittest.cc
diff --git a/media/capture/video/linux/camera_facing_chromeos_unittest.cc b/media/capture/video/linux/camera_facing_chromeos_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..70ccf2b8b4dafa1848b041f9511f8b2021bd7de6
--- /dev/null
+++ b/media/capture/video/linux/camera_facing_chromeos_unittest.cc
@@ -0,0 +1,26 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <string>
+
+#include "media/capture/video/linux/camera_facing_chromeos.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace media {
+
+TEST(CameraFacingChromeOSTest, ParseSuccessfully) {
+ CameraFacingChromeOS camera_facing("fake_camera_characteristics.conf");
+ EXPECT_EQ(CameraFacingChromeOS::LensFacing::BACK,
+ camera_facing.GetCameraFacing(std::string("/dev/video2"),
+ std::string("04f2:b53a")));
+}
+
+TEST(CameraFacingChromeOSTest, ConfigFileNotExist) {
+ CameraFacingChromeOS camera_facing("file_not_exist");
+ EXPECT_EQ(CameraFacingChromeOS::LensFacing::FRONT,
+ camera_facing.GetCameraFacing(std::string("/dev/video2"),
+ std::string("04f2:b53a")));
+}
+
+} // namespace media

Powered by Google App Engine
This is Rietveld 408576698