From 73b7ba9da5fe7b1aec62af091ad36403cd3505c4 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sun, 1 Mar 2020 22:02:37 +0200 Subject: libcamera: controls: Name all ControlInfoMap instance variables infoMap To prepare for the rename of ControlRange to ControlInfo, rename all the ControlInfoMap instance variables currently named info to infoMap. This will help avoiding namespace clashes. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- test/controls/control_info_map.cpp | 82 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 test/controls/control_info_map.cpp (limited to 'test/controls/control_info_map.cpp') diff --git a/test/controls/control_info_map.cpp b/test/controls/control_info_map.cpp new file mode 100644 index 00000000..eeb702db --- /dev/null +++ b/test/controls/control_info_map.cpp @@ -0,0 +1,82 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + * Copyright (C) 2019, Google Inc. + * + * control_info.cpp - ControlInfoMap tests + */ + +#include + +#include +#include +#include +#include + +#include "camera_controls.h" + +#include "camera_test.h" +#include "test.h" + +using namespace std; +using namespace libcamera; + +class ControlInfoMapTest : public CameraTest, public Test +{ +public: + ControlInfoMapTest() + : CameraTest("VIMC Sensor B") + { + } + +protected: + int init() override + { + return status_; + } + + int run() override + { + const ControlInfoMap &infoMap = camera_->controls(); + + /* Test looking up a valid control by ControlId. */ + if (infoMap.count(&controls::Brightness) != 1) { + cerr << "count() on valid control failed" << endl; + return TestFail; + } + + if (infoMap.find(&controls::Brightness) == infoMap.end()) { + cerr << "find() on valid control failed" << endl; + return TestFail; + } + + infoMap.at(&controls::Brightness); + + /* Test looking up a valid control by numerical ID. */ + if (infoMap.count(controls::Brightness.id()) != 1) { + cerr << "count() on valid ID failed" << endl; + return TestFail; + } + + if (infoMap.find(controls::Brightness.id()) == infoMap.end()) { + cerr << "find() on valid ID failed" << endl; + return TestFail; + } + + infoMap.at(controls::Brightness.id()); + + /* Test looking up an invalid control by numerical ID. */ + if (infoMap.count(12345) != 0) { + cerr << "count() on invalid ID failed" << endl; + return TestFail; + } + + if (infoMap.find(12345) != infoMap.end()) { + cerr << "find() on invalid ID failed" << endl; + return TestFail; + } + + return TestPass; + } +}; + +TEST_REGISTER(ControlInfoMapTest) -- cgit v1.2.1