From patchwork Mon Jan 14 09:54:17 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 223 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 21D3E60C76 for ; Mon, 14 Jan 2019 10:54:22 +0100 (CET) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id B04FD573; Mon, 14 Jan 2019 10:54:21 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1547459661; bh=9fT3IChQjj2P7BbXLBZfOh6Tmd8voRWI2qNFdfoB2p0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oMMUh8osGdSo9x942b3ovM0qg9O0OTL36py09aR0Qh4nBlpFyc6qGMpMyk1uAA3tb 0wUlN8+gdA9h1Xkj4Dqw2u305/jEHhpr1brTk4yPyk+OcsLSw8Fbmr3oHtE7j9PhBP 8/LXDDWyHQjNde3WjkSdHe+DvXr62w47jwM3+pyQ= From: Kieran Bingham To: LibCamera Devel Date: Mon, 14 Jan 2019 09:54:17 +0000 Message-Id: <20190114095417.16473-3-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190114095417.16473-1-kieran.bingham@ideasonboard.com> References: <20190114095417.16473-1-kieran.bingham@ideasonboard.com> Subject: [libcamera-devel] [PATCH RFC 2/2] test: Provide TestStatus validation tests X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jan 2019 09:54:22 -0000 Validate the return values of the objects, and the ability to use "is" and "isnt()" correctly. Signed-off-by: Kieran Bingham --- test/meson.build | 1 + test/test_status.cpp | 52 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 test/test_status.cpp diff --git a/test/meson.build b/test/meson.build index 32152888a55e..ae5bd7b47b3b 100644 --- a/test/meson.build +++ b/test/meson.build @@ -6,6 +6,7 @@ public_tests = [ ['event', 'event.cpp'], ['list-cameras', 'list-cameras.cpp'], ['signal', 'signal.cpp'], + ['test_status', 'test_status.cpp'], ['timer', 'timer.cpp'], ] diff --git a/test/test_status.cpp b/test/test_status.cpp new file mode 100644 index 000000000000..297cc5189f49 --- /dev/null +++ b/test/test_status.cpp @@ -0,0 +1,52 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + * Copyright (C) 2018, Google Inc. + * + * list.cpp - camera list tests + */ + +#include +#include + +#include "test.h" + +class TestStatusTest : public Test +{ +protected: + int run() + { + // plan(8); + // note("Correct output here is 1 skip, and three failures"); + + /* + * TestStatusPass should return 0. + * Test without operator= + */ + if (TestStatusPass("[Verify TestStatusPass]")) + return TestStatusFail("TestStatusPass test"); + + /* Test an integer on the rhs. */ + if (TestStatusFail("[Verify TestStatusFail]") != -1) + return TestStatusFail("TestStatusFail test"); + + /* Test an integer on the lhs. */ + if (77 != TestStatusSkip("[Verify TestStatusSkip]")) + return TestStatusFail("TestStatusSkip test"); + + if (is(1, 1, "[Good is return check]") != TestStatusBase::ValuePass) + return TestStatusFail("Good is check failed"); + + if (isnt(1, 0, "[Good isn't return check]") != TestStatusBase::ValuePass) + return TestStatusFail("Good isn't check failed"); + + if (is(1, 0, "[Bad Is Check]") == TestStatusBase::ValuePass) + return TestStatusFail("Bad is check failed"); + + if (isnt(1, 1, "[Bad Isn't check]") == TestStatusBase::ValuePass) + return TestStatusFail("Bad isn't check failed"); + + return TestStatusPass("TestStatus validations"); + } +}; + +TEST_REGISTER(TestStatusTest)