1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* DMXTriggerTest.cpp
* Test fixture for the DMXTrigger class.
* Copyright (C) 2011 Simon Newton
*/
#include <cppunit/extensions/HelperMacros.h>
#include <ola/Logging.h>
#include <ola/DmxBuffer.h>
#include <vector>
#include "tools/ola_trigger/Action.h"
#include "tools/ola_trigger/DMXTrigger.h"
#include "tools/ola_trigger/MockAction.h"
#include "ola/testing/TestUtils.h"
using std::vector;
using ola::DmxBuffer;
class DMXTriggerTest: public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(DMXTriggerTest);
CPPUNIT_TEST(testRisingEdgeTrigger);
CPPUNIT_TEST(testFallingEdgeTrigger);
CPPUNIT_TEST_SUITE_END();
public:
void testRisingEdgeTrigger();
void testFallingEdgeTrigger();
void setUp() {
ola::InitLogging(ola::OLA_LOG_INFO, ola::OLA_LOG_STDERR);
}
};
CPPUNIT_TEST_SUITE_REGISTRATION(DMXTriggerTest);
/**
* Check that triggering on a rising edge works correctly.
*/
void DMXTriggerTest::testRisingEdgeTrigger() {
// setup the actions
vector<Slot*> slots;
Slot slot(2);
MockAction *action = new MockAction();
BadAction *bad_action = new BadAction();
ValueInterval interval(10, 20);
slot.AddAction(interval, action, bad_action);
slots.push_back(&slot);
Context context;
DMXTrigger trigger(&context, slots);
DmxBuffer buffer;
// this shouldn't trigger
buffer.SetFromString("0,0,0");
trigger.NewDMX(buffer);
OLA_ASSERT(action->NoCalls());
// trigger rising edge
buffer.SetFromString("0,0,10");
trigger.NewDMX(buffer);
action->CheckForValue(OLA_SOURCELINE(), 10);
// now send the same again
OLA_ASSERT(action->NoCalls());
trigger.NewDMX(buffer);
OLA_ASSERT(action->NoCalls());
// shorten the frame
buffer.SetFromString("0,0");
trigger.NewDMX(buffer);
OLA_ASSERT(action->NoCalls());
// lengthen again
buffer.SetFromString("0,0,10,0");
trigger.NewDMX(buffer);
OLA_ASSERT(action->NoCalls());
// change everything else
buffer.SetFromString("10,100,10,20");
trigger.NewDMX(buffer);
OLA_ASSERT(action->NoCalls());
}
/**
* Test that falling edges trigger
*/
void DMXTriggerTest::testFallingEdgeTrigger() {
// setup the actions
vector<Slot*> slots;
Slot slot(2);
MockAction *rising_action = new MockAction();
MockAction *falling_action = new MockAction();
ValueInterval interval(10, 20);
slot.AddAction(interval, rising_action, falling_action);
slots.push_back(&slot);
Context context;
DMXTrigger trigger(&context, slots);
DmxBuffer buffer;
// trigger
buffer.SetFromString("0,0,20");
trigger.NewDMX(buffer);
rising_action->CheckForValue(OLA_SOURCELINE(), 20);
OLA_ASSERT(falling_action->NoCalls());
// trigger a falling edge
buffer.SetFromString("0,0,19");
trigger.NewDMX(buffer);
OLA_ASSERT(rising_action->NoCalls());
falling_action->CheckForValue(OLA_SOURCELINE(), 19);
// now send the same again
trigger.NewDMX(buffer);
OLA_ASSERT(rising_action->NoCalls());
OLA_ASSERT(falling_action->NoCalls());
// shorten the frame
buffer.SetFromString("0,0");
trigger.NewDMX(buffer);
OLA_ASSERT(rising_action->NoCalls());
OLA_ASSERT(falling_action->NoCalls());
// lengthen again
buffer.SetFromString("0,0,19,0");
trigger.NewDMX(buffer);
OLA_ASSERT(rising_action->NoCalls());
OLA_ASSERT(falling_action->NoCalls());
// change everything else
buffer.SetFromString("10,100,19,20");
trigger.NewDMX(buffer);
OLA_ASSERT(rising_action->NoCalls());
OLA_ASSERT(falling_action->NoCalls());
// change once more
buffer.SetFromString("10,100,20,20");
trigger.NewDMX(buffer);
rising_action->CheckForValue(OLA_SOURCELINE(), 20);
OLA_ASSERT(falling_action->NoCalls());
}
|