/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2017 - ROLI Ltd. Permission is granted to use this software under the terms of the ISC license http://www.isc.org/downloads/software-support-policy/isc-license/ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----------------------------------------------------------------------------- To release a closed-source product which uses other parts of JUCE not licensed under the ISC terms, commercial licenses are available: visit www.juce.com for more information. ============================================================================== */ namespace juce { #if JUCE_UNIT_TESTS namespace FunctionTestsHelpers { static void incrementArgument (int& x) { x++; } static double multiply (double x, double a) noexcept { return a * x; } struct BigData { BigData() { for (auto i = 0; i < bigDataSize; ++i) content[i] = i + 1; } int sum() const { int result = 0; for (auto i = 0; i < bigDataSize; ++i) result += content[i]; return result; } static const int bigDataSize = 32, bigDataSum = bigDataSize * (bigDataSize + 1) / 2; int content[bigDataSize]; }; struct FunctionObject { FunctionObject() = default; FunctionObject (const FunctionObject& other) { bigData.reset (new BigData (*other.bigData)); } int operator()(int i) const { return bigData->sum() + i; } std::unique_ptr bigData { new BigData() }; JUCE_LEAK_DETECTOR (FunctionObject) }; struct BigFunctionObject { BigFunctionObject() = default; BigFunctionObject (const BigFunctionObject& other) { bigData.reset (new BigData (*other.bigData)); } int operator()(int i) const { return bigData->sum() + i; } std::unique_ptr bigData { new BigData() }; int stackUsage[32]; JUCE_LEAK_DETECTOR (BigFunctionObject) }; } class FunctionTests : public UnitTest { public: FunctionTests() : UnitTest ("Function", "Function") {} void runTest() override { FunctionTestsHelpers::BigData bigData; { beginTest ("Functions"); std::function f1 (FunctionTestsHelpers::incrementArgument); auto x = 0; f1 (x); expectEquals (x, 1); std::function f2 (FunctionTestsHelpers::multiply); expectEquals (6.0, f2 (2.0, 3.0)); } { beginTest ("Function objects"); std::function f1 = FunctionTestsHelpers::FunctionObject(); expectEquals (f1 (5), FunctionTestsHelpers::BigData::bigDataSum + 5); std::function f2 { FunctionTestsHelpers::BigFunctionObject() }; expectEquals (f2 (5), FunctionTestsHelpers::BigData::bigDataSum + 5); } { beginTest ("Lambdas"); std::function fStack ([] { return 3; }); expectEquals (fStack(), 3); std::function fHeap ([=] { return bigData.sum(); }); expectEquals (fHeap(), FunctionTestsHelpers::BigData::bigDataSum); } { beginTest ("Boolean"); std::function f1; if (f1) expect (false); std::function f2 ([]() { return 3; }); if (! f2) expect (false); } std::function fEmpty; std::function fStack ([] { return 3; }); std::function fHeap ([=] { return bigData.sum(); }); { beginTest ("copy constructor"); std::function f1 (fStack); expectEquals (f1(), 3); std::function f2 (fHeap); expectEquals (f2(), FunctionTestsHelpers::BigData::bigDataSum); std::function f3 (fEmpty); if (f3) expect (false); } { beginTest ("assignment"); std::function f1; f1 = fStack; expectEquals (f1(), 3); std::function f2; f2 = fHeap; expectEquals (f2(), FunctionTestsHelpers::BigData::bigDataSum); f1 = fHeap; expectEquals (f1(), FunctionTestsHelpers::BigData::bigDataSum); f2 = fStack; expectEquals (f2(), 3); f1 = fEmpty; if (f1) expect (false); } { beginTest ("move constructor"); std::unique_ptr> fStackTmp (new std::function (fStack)); std::function f1 (std::move (*fStackTmp)); fStackTmp.reset(); expectEquals (f1(), 3); std::unique_ptr> fHeapTmp (new std::function (fHeap)); std::function f2 (std::move (*fHeapTmp)); if (*fHeapTmp) expect (false); fHeapTmp.reset(); expectEquals (f2(), FunctionTestsHelpers::BigData::bigDataSum); std::unique_ptr> fEmptyTmp (new std::function()); std::function f3 (std::move (*fEmptyTmp)); fEmptyTmp.reset(); if (f3) expect (false); } { beginTest ("move assignment"); std::function f1 (fHeap); std::unique_ptr> fStackTmp (new std::function (fStack)); f1 = std::move (*fStackTmp); fStackTmp.reset(); expectEquals (f1(), 3); std::function f2 (fStack); std::unique_ptr> fHeapTmp (new std::function (fHeap)); f2 = std::move (*fHeapTmp); if (*fHeapTmp) expect (false); fHeapTmp.reset(); expectEquals (f2(), FunctionTestsHelpers::BigData::bigDataSum); std::function f3 (fHeap); std::unique_ptr> fEmptyTmp (new std::function()); f3 = std::move (*fEmptyTmp); fEmptyTmp.reset(); if (f3) expect (false); } { beginTest ("nullptr"); std::function f1 (nullptr); if (f1) expect (false); std::function f2 ([]() { return 11; }); f2 = nullptr; if (f2) expect (false); } { beginTest ("Swap"); std::function f1; std::function f2 (fStack); f2.swap (f1); expectEquals (f1(), 3); if (f2) expect (false); std::function f3 (fHeap); f3.swap (f1); expectEquals (f3(), 3); expectEquals (f1(), FunctionTestsHelpers::BigData::bigDataSum); } } }; static FunctionTests functionTests; #endif } // namespace juce