mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
* Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Added etl::type_list to etl::observer * Added etl::type_list to etl::nth_type * Added missing 'typename' to type_list nth_type * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Added type_list definitions for nth_type and observer * Added etl::type_list to etl::variant * Updated comments * Addedetl::type~_list to message_router, observer, visitor # Conflicts: # include/etl/observer.h # test/vs2022/etl.vcxproj.filters * Added member type_list type to tuple * Work in progress * Copy changes from other source * Removed unused tests * Fix iter_swap namespace * Add type_list functionality to etl::variant using etl::variant_from_type_list * Add type_list functionality to etl::message_packet using etl::message_packet_from_type_list * Add type_list functionality to etl::message_router using etl::message_router_from_type_list * Add type_list functionality to etl::observer using etl::observer_from_type_list * Add type_list functionality to etl::tuple using etl::tuple_from_type_list * Allow etl::make_index_sequence to be created from an etl::type_list * Add type_list functionality to etl::visitor using etl::visitor_from_type_list * Fix iter_swap namespace * Allow creation of a message_packet with no message types * Allow creation of a message_router with no message types * Updated VS2022 project files * Added missing test files CMakeLists.txt * Fix C++03 compatibility Fixed unused aregument warnings * Synced message_packet generator to updated code * Synced message_router generator to updated code * Synced message_router generator to updated code # Conflicts: # include/etl/generators/message_router_generator.h # include/etl/message_router.h * Fixed missing zero message specialisation for <= C++14 * Fixed missing zero message specialisation for <= C++14 * Fix year_month arithmetic and correct chrono API behavior (#1257) * Fix & add more tests for year_month arithmetic * Minor addtions to previous commit * More missing values to be uninitialized * Update the default constructors to = default and correct default constructor tests accordingly * Fix & add more tests for year_month arithmetic * Minor addtions to previous commit * More missing values to be uninitialized * Update the default constructors to = default and correct default constructor tests accordingly * Restore default constructor behavior for chrono calender * Suppress warnings from std in optimized builds (#1259) When testing with ./run-tests.sh 23 3 10, some warnings from std surfaced which resulted in build errors. * Add template deduction guide for span from vector (#1264) * Create span from vector deduction * Use ivector for deduction. Add vector_ext to test * Add vector pointer to test * Finish tests * Initialize pdata_ext and others * Document how to implement platform specifics (#1262) Some interfaces need to be implemented in every project or platform using the ETL: * etl_get_high_resolution_clock * etl_get_system_clock * etl_get_steady_clock * etl_putchar Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Fix etl::as_bytes for etl::span<const T> (#1266) A missing 'const' in the etl::as_bytes implementation was causing a compile-time error when etl::as_bytes was called on a span of const values. Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Remove some UB in test_vector_non_trivial.cpp (#1268) Some of the tests' UB are detectable by Gcc15 and thus give a compile error due to warnings-as-error flag. Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Update C++26 deprecated constructs to ensure future standard compliance (#1267) * Update C++26 deprecated constructs to ensure future standard compliance I replaced std::is_trivial with a combination of std::is_trivially_default_constructible and std::is_trivially_copyable. Additionally, I added the required comma before the ellipsis in variadic functions to match updated language specifications. * Some additional is_trivial related changes not found directly when compiling tests in C++26 --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Fix return value of get_token_list (#1271) Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Fix etl::tuple template signature error in pair assignment operator (#1265) * Fix etl::tuple template signature error in pair assignment operator * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update etl::tuple to explicitly use etl::pair or std::pair in assignment operator * Added tests for etl::tuple assignment from pair --------- Co-authored-by: Bryton Flecker <bflecker@swe.com> Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Remove advance() on static spans (#1281) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Remove advance() on static spans Since the size of a static span is constant, we can't reasonably advance() on it. --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Add missing includes (#1286) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Add missing includes Before this change, the includes needed to be done explicitly by files using basic_string_stream.h, and be included first. This was error prone, especially if includes are reordered (e.g. via the currently defined clang-format rules). --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Move comparison operators of etl::expected to namespace etl (#1287) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Move comparison operators of etl::expected to namespace etl --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Make typed_storage constructor constexpr (#1291) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Make typed_storage constructor constexpr --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Add basic_format_arg constructor for ibasic_string (#1288) * Allow string as format arg * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Added test string escaped * Add temporary string test --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * QR Code for Github * Added etl::visitor_from_type_list * accepts(id) for empty router passes on to a sucessor * Fixed incorrect comment from 'tuple' to 'message_router' * PR review changes * PR review changes * Fixed internal constexptr flag in message_packet * Fixed unused variable in unti test --------- Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.co.uk> Co-authored-by: Sergei <sergej.shirokov@gmail.com> Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.com> Co-authored-by: Bo Rydberg <2945606+bolry@users.noreply.github.com> Co-authored-by: Roland Reichwein <Roland.Reichwein@bmw.de> Co-authored-by: Mike Bloom <91038685+mike919192@users.noreply.github.com> Co-authored-by: taltenbach <92919739+taltenbach@users.noreply.github.com> Co-authored-by: Bryton Flecker <fleckerbr@gmail.com> Co-authored-by: Bryton Flecker <bflecker@swe.com>
680 lines
20 KiB
C++
680 lines
20 KiB
C++
/******************************************************************************
|
|
The MIT License(MIT)
|
|
|
|
Embedded Template Library.
|
|
https://github.com/ETLCPP/etl
|
|
https://www.etlcpp.com
|
|
|
|
Copyright(c) 2014 John Wellbelove
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files(the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions :
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
******************************************************************************/
|
|
|
|
#include "unit_test_framework.h"
|
|
|
|
#include "etl/observer.h"
|
|
|
|
namespace
|
|
{
|
|
//*****************************************************************************
|
|
// Notification1
|
|
//*****************************************************************************
|
|
struct Notification1
|
|
{
|
|
};
|
|
|
|
//*****************************************************************************
|
|
// Notification2
|
|
//*****************************************************************************
|
|
struct Notification2
|
|
{
|
|
};
|
|
|
|
//*****************************************************************************
|
|
// Notification3
|
|
//*****************************************************************************
|
|
struct Notification3
|
|
{
|
|
};
|
|
|
|
//*****************************************************************************
|
|
// Generic notification.
|
|
//*****************************************************************************
|
|
template <const int ID>
|
|
struct Notification
|
|
{
|
|
};
|
|
|
|
//*****************************************************************************
|
|
// The observer base type.
|
|
// Declare what notifications you want to observe and how they are passed to 'notification'.
|
|
// The Notification1 is passed by value.
|
|
// The Notification2 is passed by reference.
|
|
// The Notification3 is passed by const reference.
|
|
//*****************************************************************************
|
|
using ObserverType = etl::observer<Notification1, Notification2&, const Notification3&>;
|
|
|
|
#if !defined(ETL_OBSERVER_FORCE_CPP03_IMPLEMENTATION)
|
|
//*****************************************************************************
|
|
// The observer base type.
|
|
// Declare what notifications you want to observe and how they are passed to 'notification'.
|
|
// The Notification1 is passed by value.
|
|
// The Notification2 is passed by reference.
|
|
// The Notification3 is passed by const reference.
|
|
//*****************************************************************************
|
|
using NotificationList = etl::type_list<Notification1, Notification2&, const Notification3&>;
|
|
using ObserverFromTypeList = etl::observer_from_type_list_t<NotificationList>;
|
|
#endif
|
|
|
|
//*****************************************************************************
|
|
// The observer base type that does not take a notification type.
|
|
//*****************************************************************************
|
|
using ObserverVoidIntType = etl::observer<void, int>;
|
|
}
|
|
|
|
//*****************************************************************************
|
|
// The concrete observable 1 class.
|
|
//*****************************************************************************
|
|
class Observable1 : public etl::observable<ObserverType, 2>
|
|
{
|
|
public:
|
|
|
|
Notification1 data1;
|
|
Notification2 data2;
|
|
Notification1& data3 = data1;
|
|
|
|
//*********************************
|
|
// Notify all of the observers.
|
|
//*********************************
|
|
void send_notifications()
|
|
{
|
|
notify_observers(data3);
|
|
notify_observers(data2);
|
|
}
|
|
};
|
|
|
|
//*****************************************************************************
|
|
// The concrete observable 2 class.
|
|
//*****************************************************************************
|
|
class Observable2 : public etl::observable<ObserverType, 2>
|
|
{
|
|
public:
|
|
|
|
Notification3 data3;
|
|
|
|
//*********************************
|
|
// Notify all of the observers.
|
|
//*********************************
|
|
void send_notifications()
|
|
{
|
|
notify_observers(data3);
|
|
}
|
|
};
|
|
|
|
#if !defined(ETL_OBSERVER_FORCE_CPP03_IMPLEMENTATION)
|
|
//*****************************************************************************
|
|
// The concrete observable 3 class.
|
|
//*****************************************************************************
|
|
class Observable3 : public etl::observable<ObserverFromTypeList, 2>
|
|
{
|
|
public:
|
|
|
|
Notification1 data1;
|
|
Notification2 data2;
|
|
Notification1& data3 = data1;
|
|
|
|
//*********************************
|
|
// Notify all of the observers.
|
|
//*********************************
|
|
void send_notifications()
|
|
{
|
|
notify_observers(data3);
|
|
notify_observers(data2);
|
|
}
|
|
};
|
|
#endif
|
|
|
|
//*****************************************************************************
|
|
// The concrete observable 3 class.
|
|
//*****************************************************************************
|
|
class ObservableVoidInt : public etl::observable<ObserverVoidIntType, 2>
|
|
{
|
|
public:
|
|
|
|
//*********************************
|
|
// Notify all of the observers.
|
|
//*********************************
|
|
void send_notifications()
|
|
{
|
|
notify_observers();
|
|
}
|
|
|
|
//*********************************
|
|
// Notify all of the observers.
|
|
//*********************************
|
|
void send_notifications(int n)
|
|
{
|
|
notify_observers(n);
|
|
}
|
|
};
|
|
|
|
//*****************************************************************************
|
|
// The first observer type.
|
|
// If any one of the overloads is missing or a parameter declaration is incorrect
|
|
// then the class will be 'abstract' and will not compile.
|
|
//*****************************************************************************
|
|
class Observer1 : public ObserverType
|
|
{
|
|
public:
|
|
|
|
Observer1()
|
|
: data1_count(0)
|
|
, data2_count(0)
|
|
, data3_count(0)
|
|
{
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification1 is passed by value.
|
|
//*******************************************
|
|
void notification(Notification1 /*data1*/)
|
|
{
|
|
++data1_count;
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification2 is passed by reference.
|
|
//*******************************************
|
|
void notification(Notification2& /*data2*/)
|
|
{
|
|
++data2_count;
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification3 is passed by const reference.
|
|
//*******************************************
|
|
void notification(const Notification3& /*data3*/)
|
|
{
|
|
++data3_count;
|
|
}
|
|
|
|
int data1_count;
|
|
int data2_count;
|
|
int data3_count;
|
|
};
|
|
|
|
//*****************************************************************************
|
|
// The second observer type.
|
|
// If any one of the overloads is missing or a parameter declaration is incorrect
|
|
// then the class will be 'abstract' and will not compile.
|
|
//*****************************************************************************
|
|
class Observer2 : public ObserverType
|
|
{
|
|
public:
|
|
|
|
Observer2()
|
|
: data1_count(0)
|
|
, data2_count(0)
|
|
, data3_count(0)
|
|
{
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification1 is passed by value.
|
|
//*******************************************
|
|
void notification(Notification1 /*data1*/)
|
|
{
|
|
++data1_count;
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification2 is passed by reference.
|
|
//*******************************************
|
|
void notification(Notification2& /*data2*/)
|
|
{
|
|
++data2_count;
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification3 is passed by const reference.
|
|
//*******************************************
|
|
void notification(const Notification3& /*data3*/)
|
|
{
|
|
++data3_count;
|
|
}
|
|
|
|
int data1_count;
|
|
int data2_count;
|
|
int data3_count;
|
|
};
|
|
|
|
#if !defined(ETL_OBSERVER_FORCE_CPP03_IMPLEMENTATION)
|
|
//*****************************************************************************
|
|
// The third observer type.
|
|
// If any one of the overloads is missing or a parameter declaration is incorrect
|
|
// then the class will be 'abstract' and will not compile.
|
|
//*****************************************************************************
|
|
class Observer3 : public ObserverFromTypeList
|
|
{
|
|
public:
|
|
|
|
Observer3()
|
|
: data1_count(0)
|
|
, data2_count(0)
|
|
, data3_count(0)
|
|
{
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification1 is passed by value.
|
|
//*******************************************
|
|
void notification(Notification1 /*data1*/)
|
|
{
|
|
++data1_count;
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification2 is passed by reference.
|
|
//*******************************************
|
|
void notification(Notification2& /*data2*/)
|
|
{
|
|
++data2_count;
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification3 is passed by const reference.
|
|
//*******************************************
|
|
void notification(const Notification3& /*data3*/)
|
|
{
|
|
++data3_count;
|
|
}
|
|
|
|
int data1_count;
|
|
int data2_count;
|
|
int data3_count;
|
|
};
|
|
#endif
|
|
|
|
//*****************************************************************************
|
|
// The third observer type.
|
|
// If any one of the overloads is missing or a parameter declaration is incorrect
|
|
// then the class will be 'abstract' and will not compile.
|
|
//*****************************************************************************
|
|
class ObserverVoidInt : public ObserverVoidIntType
|
|
{
|
|
public:
|
|
|
|
ObserverVoidInt()
|
|
: data1_count(0)
|
|
, data2_count(0)
|
|
{
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification1
|
|
//*******************************************
|
|
void notification() override
|
|
{
|
|
++data1_count;
|
|
}
|
|
|
|
//*******************************************
|
|
// Notification2
|
|
//*******************************************
|
|
void notification(int) override
|
|
{
|
|
++data2_count;
|
|
}
|
|
|
|
int data1_count;
|
|
int data2_count;
|
|
};
|
|
|
|
namespace
|
|
{
|
|
SUITE(test_observer)
|
|
{
|
|
//*************************************************************************
|
|
TEST(test_2_observables_2_observers_3_notifications)
|
|
{
|
|
// The observable objects.
|
|
Observable1 observable1;
|
|
Observable2 observable2;
|
|
|
|
// The observer objects.
|
|
Observer1 observer1;
|
|
Observer2 observer2;
|
|
|
|
observable1.add_observer(observer1);
|
|
|
|
// Send the notifications.
|
|
observable1.send_notifications(); // Updates data1 & data2.
|
|
|
|
CHECK_EQUAL(1, observer1.data1_count);
|
|
CHECK_EQUAL(1, observer1.data2_count);
|
|
CHECK_EQUAL(0, observer1.data3_count);
|
|
|
|
CHECK_EQUAL(0, observer2.data1_count);
|
|
CHECK_EQUAL(0, observer2.data2_count);
|
|
CHECK_EQUAL(0, observer2.data3_count);
|
|
|
|
observable2.send_notifications(); // Updates data3. observeable2 has no observers yet.
|
|
|
|
CHECK_EQUAL(1, observer1.data1_count);
|
|
CHECK_EQUAL(1, observer1.data2_count);
|
|
CHECK_EQUAL(0, observer1.data3_count);
|
|
|
|
CHECK_EQUAL(0, observer2.data1_count);
|
|
CHECK_EQUAL(0, observer2.data2_count);
|
|
CHECK_EQUAL(0, observer2.data3_count);
|
|
|
|
// Add an observer to both.
|
|
observable1.add_observer(observer2);
|
|
observable2.add_observer(observer2);
|
|
|
|
// Send the notifications.
|
|
observable1.send_notifications(); // Updates data1 & data2.
|
|
|
|
CHECK_EQUAL(2, observer1.data1_count);
|
|
CHECK_EQUAL(2, observer1.data2_count);
|
|
CHECK_EQUAL(0, observer1.data3_count);
|
|
|
|
CHECK_EQUAL(1, observer2.data1_count);
|
|
CHECK_EQUAL(1, observer2.data2_count);
|
|
CHECK_EQUAL(0, observer2.data3_count);
|
|
|
|
observable2.send_notifications(); // Updates data3.
|
|
|
|
CHECK_EQUAL(2, observer1.data1_count);
|
|
CHECK_EQUAL(2, observer1.data2_count);
|
|
CHECK_EQUAL(0, observer1.data3_count);
|
|
|
|
CHECK_EQUAL(1, observer2.data1_count);
|
|
CHECK_EQUAL(1, observer2.data2_count);
|
|
CHECK_EQUAL(1, observer2.data3_count);
|
|
|
|
observable1.remove_observer(observer1);
|
|
|
|
// Send the notifications.
|
|
observable1.send_notifications(); // Updates data1 & data2.
|
|
|
|
CHECK_EQUAL(2, observer1.data1_count);
|
|
CHECK_EQUAL(2, observer1.data2_count);
|
|
CHECK_EQUAL(0, observer1.data3_count);
|
|
|
|
CHECK_EQUAL(2, observer2.data1_count);
|
|
CHECK_EQUAL(2, observer2.data2_count);
|
|
CHECK_EQUAL(1, observer2.data3_count);
|
|
|
|
observable2.send_notifications(); // Updates data3.
|
|
|
|
CHECK_EQUAL(2, observer1.data1_count);
|
|
CHECK_EQUAL(2, observer1.data2_count);
|
|
CHECK_EQUAL(0, observer1.data3_count);
|
|
|
|
CHECK_EQUAL(2, observer2.data1_count);
|
|
CHECK_EQUAL(2, observer2.data2_count);
|
|
CHECK_EQUAL(2, observer2.data3_count);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_observable_2_observers_enable_disable)
|
|
{
|
|
// The observable objects.
|
|
Observable1 observable1;
|
|
|
|
// The observer objects.
|
|
Observer1 observer1;
|
|
Observer2 observer2;
|
|
|
|
observable1.add_observer(observer1);
|
|
observable1.add_observer(observer2);
|
|
|
|
// Send the notifications.
|
|
observable1.send_notifications();
|
|
|
|
CHECK_EQUAL(1, observer1.data1_count);
|
|
CHECK_EQUAL(1, observer2.data1_count);
|
|
|
|
// Disable observer1. Send the notifications.
|
|
observable1.disable_observer(observer1);
|
|
observable1.send_notifications();
|
|
|
|
CHECK_EQUAL(1, observer1.data1_count);
|
|
CHECK_EQUAL(2, observer2.data1_count);
|
|
|
|
// Disable observer2. Send the notifications.
|
|
observable1.enable_observer(observer2, false);
|
|
observable1.send_notifications();
|
|
|
|
CHECK_EQUAL(1, observer1.data1_count);
|
|
CHECK_EQUAL(2, observer2.data1_count);
|
|
|
|
// Enable observer1. Send the notifications.
|
|
observable1.enable_observer(observer1);
|
|
observable1.send_notifications();
|
|
|
|
CHECK_EQUAL(2, observer1.data1_count);
|
|
CHECK_EQUAL(2, observer2.data1_count);
|
|
|
|
// Enable observer2. Send the notifications.
|
|
observable1.enable_observer(observer2, true);
|
|
observable1.send_notifications();
|
|
|
|
CHECK_EQUAL(3, observer1.data1_count);
|
|
CHECK_EQUAL(3, observer2.data1_count);
|
|
}
|
|
|
|
#if !defined(ETL_OBSERVER_FORCE_CPP03_IMPLEMENTATION)
|
|
//*************************************************************************
|
|
TEST(test_observer_created_from_a_type_list)
|
|
{
|
|
// The observable objects.
|
|
Observable3 observable3;
|
|
|
|
// The observer objects.
|
|
Observer3 observer3;
|
|
|
|
observable3.add_observer(observer3);
|
|
|
|
// Send the notifications.
|
|
observable3.send_notifications(); // Updates data1 & data2.
|
|
|
|
CHECK_EQUAL(1, observer3.data1_count);
|
|
CHECK_EQUAL(1, observer3.data2_count);
|
|
CHECK_EQUAL(0, observer3.data3_count);
|
|
}
|
|
#endif
|
|
|
|
//*************************************************************************
|
|
TEST(test_8_notifications)
|
|
{
|
|
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>, Notification<7>, Notification<8> > Observer;
|
|
|
|
class Observable : public etl::observable<Observer, 1>
|
|
{
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_7_notifications)
|
|
{
|
|
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>, Notification<7> > Observer;
|
|
|
|
class Observable : public etl::observable<Observer, 1>
|
|
{
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_6_notifications)
|
|
{
|
|
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6> > Observer;
|
|
|
|
class Observable : public etl::observable<Observer, 1>
|
|
{
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_5_notifications)
|
|
{
|
|
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5> > Observer;
|
|
|
|
class Observable : public etl::observable<Observer, 1>
|
|
{
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_4_notifications)
|
|
{
|
|
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4> > Observer;
|
|
|
|
class Observable : public etl::observable<Observer, 1>
|
|
{
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_3_notifications)
|
|
{
|
|
typedef etl::observer<Notification<1>, Notification<2>, Notification<3> > Observer;
|
|
|
|
class Observable : public etl::observable<Observer, 1>
|
|
{
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_2_notifications)
|
|
{
|
|
typedef etl::observer<Notification<1>, Notification<2> > Observer;
|
|
|
|
class Observable : public etl::observable<Observer, 1>
|
|
{
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_1_notification)
|
|
{
|
|
typedef etl::observer<Notification<1> > Observer;
|
|
|
|
class Observable : public etl::observable<Observer, 1>
|
|
{
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_observer_list)
|
|
{
|
|
class Observer : public etl::observer<Notification1>
|
|
{
|
|
void notification(Notification1) {}
|
|
};
|
|
|
|
class Observable : public etl::observable<Observer, 4>
|
|
{
|
|
};
|
|
|
|
Observable observable;
|
|
|
|
Observer observer1;
|
|
Observer observer2;
|
|
Observer observer3;
|
|
Observer observer4;
|
|
Observer observer5;
|
|
|
|
observable.add_observer(observer1);
|
|
CHECK_EQUAL(1UL, observable.number_of_observers());
|
|
|
|
observable.add_observer(observer2);
|
|
CHECK_EQUAL(2UL, observable.number_of_observers());
|
|
|
|
observable.add_observer(observer3);
|
|
CHECK_EQUAL(3UL, observable.number_of_observers());
|
|
|
|
observable.add_observer(observer2);
|
|
CHECK_EQUAL(3UL, observable.number_of_observers());
|
|
|
|
observable.add_observer(observer4);
|
|
CHECK_EQUAL(4UL, observable.number_of_observers());
|
|
|
|
CHECK_THROW(observable.add_observer(observer5), etl::observer_list_full);
|
|
|
|
CHECK(observable.remove_observer(observer3));
|
|
CHECK_EQUAL(3UL, observable.number_of_observers());
|
|
|
|
// Try again.
|
|
CHECK(!observable.remove_observer(observer3));
|
|
CHECK_EQUAL(3UL, observable.number_of_observers());
|
|
|
|
observable.clear_observers();
|
|
CHECK_EQUAL(0UL, observable.number_of_observers());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_void_int_observable)
|
|
{
|
|
// The observable objects.
|
|
ObservableVoidInt observable;
|
|
|
|
// The observer objects.
|
|
ObserverVoidInt observer;
|
|
|
|
observable.add_observer(observer);
|
|
|
|
// Send the notifications.
|
|
observable.send_notifications();
|
|
CHECK_EQUAL(1U, observer.data1_count);
|
|
CHECK_EQUAL(0U, observer.data2_count);
|
|
|
|
observable.send_notifications(1);
|
|
CHECK_EQUAL(1U, observer.data1_count);
|
|
CHECK_EQUAL(1U, observer.data2_count);
|
|
}
|
|
}
|
|
}
|
|
|