/
tisit
/
OpenPLC_v3
Обзор
Документация
Войти
/
tisit
/
OpenPLC_v3
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
utils/dnp3_src/cpp/tests/opendnp3/src/TestOutstationEventResponses.cpp
383 строки
11 KB
thiagoralves
First commit. OpenPLC v3 beta 1
14 июн 2018, 20:43
14 июн 2018, 20:43
1b10e97
Код
Авторство
О чём код?
/* * Licensed to Green Energy Corp (www.greenenergycorp.com) under one or * more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. * Green Energy Corp licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * This project was forked on 01/01/2013 by Automatak, LLC and modifications * may have been made to this file. Automatak, LLC licenses these modifications * to you under the terms of the License. */ #include <catch.hpp> #include "mocks/OutstationTestObject.h" #include <dnp3mocks/APDUHexBuilders.h> #include <functional> using namespace std; using namespace opendnp3; using namespace openpal; #define SUITE(name) "OutstationEventResponsesTestSuite - " name TEST_CASE(SUITE("BlankExceptionScan")) { OutstationConfig config; OutstationTestObject t(config); t.LowerLayerUp(); t.SendToOutstation("C0 01 3C 02 06"); // Read class 1 REQUIRE(t.lower->PopWriteAsHex() == "C0 81 80 00"); } TEST_CASE(SUITE("ReadDiscontiguousEvent")) { OutstationConfig config; config.eventBufferConfig = EventBufferConfig(5); config.params.indexMode = IndexMode::Discontiguous; OutstationTestObject t(config, DatabaseSizes::BinaryOnly(1)); t.LowerLayerUp(); t.Transaction([](IUpdateHandler & db) { db.Update(Binary(true), 0); }); t.SendToOutstation("C0 01 3C 02 06"); // Read class 1 REQUIRE(t.lower->PopWriteAsHex() == "E0 81 80 00 02 01 28 01 00 00 00 81"); } TEST_CASE(SUITE("ReceiveNewRequestSolConfirmWait")) { OutstationConfig config; config.eventBufferConfig = EventBufferConfig::AllTypes(10); OutstationTestObject t(config, DatabaseSizes::BinaryOnly(1)); t.LowerLayerUp(); t.Transaction([](IUpdateHandler & db) { db.Update(Binary(true, 0x01), 0); }); t.SendToOutstation(hex::ClassPoll(0, PointClass::Class1)); REQUIRE(t.lower->PopWriteAsHex() == "E0 81 80 00 02 01 28 01 00 00 00 81"); t.OnSendResult(true); t.SendToOutstation(hex::ClassPoll(1, PointClass::Class1)); REQUIRE(t.lower->PopWriteAsHex() == "E1 81 80 00 02 01 28 01 00 00 00 81"); } TEST_CASE(SUITE("ReadClass1WithSOE")) { OutstationConfig config; config.eventBufferConfig = EventBufferConfig::AllTypes(10); OutstationTestObject t(config, DatabaseSizes::AllTypes(100)); t.LowerLayerUp(); t.Transaction([](IUpdateHandler & db) { db.Update(Analog(0x1234, 0x01), 0x17); // 0x 12 34 00 00 in little endian db.Update(Binary(true, 0x01), 0x10); db.Update(Analog(0x2222, 0x01), 0x17); // 0x 22 22 00 00 in little endian }); t.SendToOutstation(hex::ClassPoll(0, PointClass::Class1)); REQUIRE(t.lower->PopWriteAsHex() == "E0 81 80 00 20 01 28 01 00 17 00 01 34 12 00 00 02 01 28 01 00 10 00 81 20 01 28 01 00 17 00 01 22 22 00 00"); t.OnSendResult(true); t.SendToOutstation(hex::SolicitedConfirm(0)); t.SendToOutstation(hex::ClassPoll(1, PointClass::Class1)); // Repeat read class 1 REQUIRE(t.lower->PopWriteAsHex() == "C1 81 80 00"); // Buffer should have been cleared } TEST_CASE(SUITE("EventBufferOverflowAndClear")) { OutstationConfig config; config.eventBufferConfig = EventBufferConfig::AllTypes(2); OutstationTestObject t(config, DatabaseSizes::AllTypes(100)); t.LowerLayerUp(); t.Transaction([](IUpdateHandler & db) { db.Update(Binary(true, 0x01), 0); // this event is lost in the overflow db.Update(Binary(true, 0x01), 1); db.Update(Binary(true, 0x01), 2); }); t.SendToOutstation("C0 01"); REQUIRE("C0 81 82 08" == t.lower->PopWriteAsHex()); t.OnSendResult(true); t.SendToOutstation("C1 01 3C 02 07 01"); // class 1, count of 1 REQUIRE("E1 81 82 08 02 01 28 01 00 01 00 81" == t.lower->PopWriteAsHex()); t.OnSendResult(true); t.SendToOutstation(hex::SolicitedConfirm(1)); t.SendToOutstation("C0 01"); REQUIRE("C0 81 82 00" == t.lower->PopWriteAsHex()); } TEST_CASE(SUITE("MultipleClasses")) { OutstationConfig config; config.eventBufferConfig = EventBufferConfig::AllTypes(10); OutstationTestObject t(config, DatabaseSizes::AllTypes(1)); t.LowerLayerUp(); auto view = t.context.GetConfigView(); view.binaries[0].config.clazz = PointClass::Class1; view.analogs[0].config.clazz = PointClass::Class2; view.counters[0].config.clazz = PointClass::Class3; t.Transaction([](IUpdateHandler & db) { db.Update(Binary(true), 0); db.Update(Analog(3), 0); db.Update(Counter(7), 0); }); t.SendToOutstation("C0 01"); // empty READ REQUIRE(t.lower->PopWriteAsHex() == "C0 81 8E 00"); // all event bits set + restart t.OnSendResult(true); // ------ read 1 event at a time by class, until all events are gone ---- t.SendToOutstation(hex::ClassPoll(1, PointClass::Class2)); // Class 2 REQUIRE(t.lower->PopWriteAsHex() == "E1 81 8A 00 20 01 28 01 00 00 00 01 03 00 00 00"); // restart + Class 1/3 t.OnSendResult(true); t.SendToOutstation("C1 00"); t.SendToOutstation("C2 01 3C 04 06"); // Class 3 REQUIRE(t.lower->PopWriteAsHex() == "E2 81 82 00 16 01 28 01 00 00 00 01 07 00 00 00"); // restart + Class 1/3 t.OnSendResult(true); t.SendToOutstation("C2 00"); t.SendToOutstation("C3 01 3C 02 06"); // Class 1 REQUIRE(t.lower->PopWriteAsHex() == "E3 81 80 00 02 01 28 01 00 00 00 81"); // restart only t.OnSendResult(true); t.SendToOutstation("C3 00"); t.SendToOutstation("C4 01"); // empty READ REQUIRE(t.lower->PopWriteAsHex() == "C4 81 80 00"); // restart only } void TestEventRead( const std::string& request, const std::string& response, const std::function<void(IUpdateHandler& db)>& loadFun, const std::function<void(DatabaseConfigView& db)>& configure = [](DatabaseConfigView& view) {} ) { OutstationConfig config; config.eventBufferConfig = EventBufferConfig::AllTypes(10); OutstationTestObject t(config, DatabaseSizes::AllTypes(5)); auto view = t.context.GetConfigView(); configure(view); t.LowerLayerUp(); t.Transaction([&](IUpdateHandler & db) { loadFun(db); }); t.SendToOutstation(request); REQUIRE(t.lower->PopWriteAsHex() == response); } TEST_CASE(SUITE("Class1")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01), 0); }; TestEventRead(hex::ClassPoll(0, PointClass::Class1), "E0 81 80 00 02 01 28 01 00 00 00 01", update); } TEST_CASE(SUITE("Class1OneByteLimitedCount")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01), 2); db.Update(Binary(true, 0x01), 1); }; // reads a single event, IIB bit indicates more events present TestEventRead("C0 01 3C 02 07 01", "E0 81 82 00 02 01 28 01 00 02 00 01", update); } TEST_CASE(SUITE("Class1TwoByteLimitedCount")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01), 2); db.Update(Binary(true, 0x01), 1); db.Update(Binary(true, 0x01), 3); }; // reads a single event, IIB bit indicates more events present TestEventRead("C0 01 3C 02 08 02 00", "E0 81 82 00 02 01 28 02 00 02 00 01 01 00 81", update); } TEST_CASE(SUITE("MixedClassLimitedCount")) { auto configure = [](DatabaseConfigView & view) { view.binaries[0].config.clazz = PointClass::Class1; view.binaries[1].config.clazz = PointClass::Class2; view.binaries[2].config.clazz = PointClass::Class3; }; auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01), 0); db.Update(Binary(true, 0x01), 1); db.Update(Binary(false, 0x01), 1); db.Update(Binary(true, 0x01), 2); db.Update(Binary(false, 0x01), 2); }; // read 1 class 2 event and 1 class 3 event, 1 of each event type left in buffer // get back two g2v1 events in the same header for indices 1 & 2 TestEventRead("C0 01 3C 03 07 01 3C 04 07 01", "E0 81 8E 00 02 01 28 02 00 01 00 81 02 00 81", update, configure); } TEST_CASE(SUITE("ReadGrp2Var0")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01), 0); }; TestEventRead("C0 01 02 00 06", "E0 81 80 00 02 01 28 01 00 00 00 01", update); } TEST_CASE(SUITE("ReadGrp22Var0")) { auto update = [](IUpdateHandler & db) { db.Update(Counter(0, 0x01), 0); }; TestEventRead("C0 01 16 00 06", "E0 81 80 00 16 01 28 01 00 00 00 01 00 00 00 00", update); } TEST_CASE(SUITE("ReadGrp32Var0")) { auto update = [](IUpdateHandler & db) { db.Update(Analog(0.0, 0x01), 0); }; TestEventRead("C0 01 20 00 06", "E0 81 80 00 20 01 28 01 00 00 00 01 00 00 00 00", update); } TEST_CASE(SUITE("ReadGrp2Var1")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01), 3); }; TestEventRead("C0 01 02 01 06", "E0 81 80 00 02 01 28 01 00 03 00 01", update); // 1 byte count == 1, ONLINE quality } TEST_CASE(SUITE("ReadGrp2Var1LimitedCount")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01), 3); db.Update(Binary(true, 0x01), 2); db.Update(Binary(false, 0x01), 1); }; // read 2 events only, Class 1 data IIN still set TestEventRead("C0 01 02 01 07 02", "E0 81 82 00 02 01 28 02 00 03 00 01 02 00 81", update); // 1 byte count == 1, ONLINE quality } TEST_CASE(SUITE("ReadGrp2Var2")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01, DNPTime(0x4571)), 3); }; TestEventRead("C0 01 02 02 06", "E0 81 80 00 02 02 28 01 00 03 00 01 71 45 00 00 00 00", update); // 1 byte count == 1, ONLINE quality } TEST_CASE(SUITE("ReadGrp2Var3SingleValue")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01, DNPTime(0x4571)), 3); }; TestEventRead("C0 01 02 03 06", "E0 81 80 00 33 01 07 01 71 45 00 00 00 00 02 03 28 01 00 03 00 01 00 00", update); } TEST_CASE(SUITE("ReadGrp2Var3TwoValues")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01, DNPTime(0x4571)), 3); db.Update(Binary(true, 0x01, DNPTime(0x4579)), 4); }; auto rsp = "E0 81 80 00 33 01 07 01 71 45 00 00 00 00 02 03 28 02 00 03 00 01 00 00 04 00 81 08 00"; TestEventRead("C0 01 02 03 06", rsp, update); } TEST_CASE(SUITE("ReadGrp2Var3TwoValuesNegativeDifference")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01, DNPTime(0x4571)), 3); db.Update(Binary(true, 0x01, DNPTime(0x4570)), 4); }; std::string header = "E0 81 80 00"; std::string cto1 = " 33 01 07 01 71 45 00 00 00 00 02 03 28 01 00 03 00 01 00 00"; std::string cto2 = " 33 01 07 01 70 45 00 00 00 00 02 03 28 01 00 04 00 81 00 00"; auto rsp = header + cto1 + cto2; TestEventRead("C0 01 02 03 06", rsp, update); } TEST_CASE(SUITE("ReadGrp2Var3TwoValuesDifferenceTooBigForCTO")) { auto update = [](IUpdateHandler & db) { db.Update(Binary(false, 0x01, DNPTime(0x000000)), 3); db.Update(Binary(true, 0x01, DNPTime(0x010000)), 4); }; std::string header = "E0 81 80 00"; std::string cto1 = " 33 01 07 01 00 00 00 00 00 00 02 03 28 01 00 03 00 01 00 00"; std::string cto2 = " 33 01 07 01 00 00 01 00 00 00 02 03 28 01 00 04 00 81 00 00"; auto rsp = header + cto1 + cto2; TestEventRead("C0 01 02 03 06", rsp, update); }