mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-06 11:36:51 +03:00
* Testcase for #2145 and debug-log (#2151) * new models ana-cont-11.0.5, ana-class100-1.5.7, dig-class100-1.6.0 * Testcase for #2145 Added debug log, if allowNegativeRates is handeled * Fix timezone config parser (#2169) * make sure to parse the whole config line * fix crash on empty timezone parameter --------- Co-authored-by: CaCO3 <caco@ruinelli.ch> * Enhance ROI pages (#2161) * Check if the ROIs are equidistant. Only if not, untick the checkbox * renaming * Check if the ROIs have same y, dy and dx. If so, tick the sync checkbox * only allow editing space when box is checked * fix sync check * show inner frame on all ROIs * cleanup * Check if the ROIs have same dy and dx. If so, tick the sync checkbox * checkbox position * renaming * renaming * show inner frame and cross hairs on all ROIs * update ROIs on ticking checkboxes * show timezone hint * fix deleting last ROI * cleanup --------- Co-authored-by: CaCO3 <caco@ruinelli.ch> * restart timeout on progress, catch error (#2170) * restart timeout on progress, catch error * . --------- Co-authored-by: CaCO3 <caco@ruinelli.ch> * BugFix #2167 * Release 15.1 preparations (#2171) * Update Changelog.md * Update Changelog.md * Update Changelog.md * Update changelog * Fix links to PR * Formating * Update Changelog.md * Update Changelog.md * Update Changelog.md * Update Changelog.md * Update Changelog.md * Update Changelog.md * Update Changelog.md * Update Changelog.md * Update Changelog.md * Update Changelog.md * Update Changelog.md * Update Changelog.md --------- Co-authored-by: Slider0007 <jobbelle@gmx.net> Co-authored-by: Slider0007 <115730895+Slider0007@users.noreply.github.com> --------- Co-authored-by: Frank Haverland <fspapaping@googlemail.com> Co-authored-by: CaCO3 <caco@ruinelli.ch> Co-authored-by: jomjol <30766535+jomjol@users.noreply.github.com> Co-authored-by: Slider0007 <jobbelle@gmx.net> Co-authored-by: Slider0007 <115730895+Slider0007@users.noreply.github.com>
105 lines
4.2 KiB
C++
105 lines
4.2 KiB
C++
#include "test_flow_postrocess_helper.h"
|
|
|
|
|
|
|
|
|
|
/**
|
|
* @brief Testfall für Überprüfung allowNegatives
|
|
*
|
|
*/
|
|
void testNegative() {
|
|
|
|
|
|
// Ohne decimal_shift
|
|
std::vector<float> digits = { 1.2, 6.7};
|
|
std::vector<float> analogs = { 9.5, 8.4};
|
|
double preValue_extended = 16.985;
|
|
double preValue = 16.98;
|
|
|
|
const char* expected = "16.98";
|
|
|
|
// extendResolution=false
|
|
// da kein negativ, sollte kein Error auftreten
|
|
UnderTestPost* underTestPost = init_do_flow(analogs, digits, Digital100, false, false, 0);
|
|
setAllowNegatives(underTestPost, false);
|
|
setPreValue(underTestPost, preValue);
|
|
std::string result = process_doFlow(underTestPost);
|
|
TEST_ASSERT_EQUAL_STRING("no error", underTestPost->getReadoutError().c_str());
|
|
TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
delete underTestPost;
|
|
|
|
// extendResolution=true
|
|
// da negativ im Rahmen (letzte Stelle -0.2 > ergebnis), kein Error
|
|
// Aber der PreValue wird gesetzt
|
|
underTestPost = init_do_flow(analogs, digits, Digital100, false, true, 0);
|
|
setAllowNegatives(underTestPost, false);
|
|
setPreValue(underTestPost, preValue_extended);
|
|
result = process_doFlow(underTestPost);
|
|
TEST_ASSERT_EQUAL_STRING("no error", underTestPost->getReadoutError().c_str());
|
|
TEST_ASSERT_EQUAL_STRING(RundeOutput(preValue_extended, analogs.size()+1).c_str(), result.c_str());
|
|
delete underTestPost;
|
|
|
|
// extendResolution=true
|
|
// Tolleranz überschritten, Error wird gesetzt, kein ReturnValue
|
|
preValue_extended = 16.988; // zu groß
|
|
underTestPost = init_do_flow(analogs, digits, Digital100, false, true, 0);
|
|
setAllowNegatives(underTestPost, false);
|
|
setPreValue(underTestPost, preValue_extended);
|
|
result = process_doFlow(underTestPost);
|
|
TEST_ASSERT_EQUAL_STRING("Neg. Rate - Read: - Raw: 16.984 - Pre: 16.988 ", underTestPost->getReadoutError().c_str());
|
|
TEST_ASSERT_EQUAL_STRING("", result.c_str());
|
|
delete underTestPost;
|
|
|
|
// extendResolution=false
|
|
// value < preValue
|
|
preValue = 16.99; // zu groß
|
|
underTestPost = init_do_flow(analogs, digits, Digital100, false, false, 0);
|
|
setAllowNegatives(underTestPost, false);
|
|
setPreValue(underTestPost, preValue_extended);
|
|
result = process_doFlow(underTestPost);
|
|
TEST_ASSERT_EQUAL_STRING("Neg. Rate - Read: - Raw: 16.98 - Pre: 16.99 ", underTestPost->getReadoutError().c_str());
|
|
TEST_ASSERT_EQUAL_STRING("", result.c_str());
|
|
delete underTestPost;
|
|
|
|
|
|
// extendResolution=false
|
|
// value < preValue
|
|
// Aber Prüfung abgeschaltet => kein Fehler
|
|
preValue = 16.99; // zu groß
|
|
underTestPost = init_do_flow(analogs, digits, Digital100, false, false, 0);
|
|
setAllowNegatives(underTestPost, true);
|
|
setPreValue(underTestPost, preValue_extended);
|
|
result = process_doFlow(underTestPost);
|
|
TEST_ASSERT_EQUAL_STRING("no error", underTestPost->getReadoutError().c_str());
|
|
TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
delete underTestPost;
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief Fehlerberichte aus Issues
|
|
*
|
|
*/
|
|
void testNegative_Issues() {
|
|
// Ohne decimal_shift
|
|
std::vector<float> digits = { 2.0, 2.0, 0.0, 1.0, 7.2, 9.0, 8.0};
|
|
std::vector<float> analogs = { };
|
|
double preValue_extended = 22018.080;
|
|
double preValue = 22018.08;
|
|
|
|
const char* expected = "22017.98";
|
|
|
|
// https://github.com/jomjol/AI-on-the-edge-device/issues/2145#issuecomment-1461899094
|
|
// extendResolution=false
|
|
// value < preValue
|
|
// Prüfung eingeschaltet => Fehler
|
|
preValue = 22018.08; // zu groß
|
|
UnderTestPost* underTestPost = init_do_flow(analogs, digits, Digital100, false, false, -2);
|
|
setAllowNegatives(underTestPost, false);
|
|
setPreValue(underTestPost, preValue_extended);
|
|
std::string result = process_doFlow(underTestPost);
|
|
TEST_ASSERT_EQUAL_STRING("Neg. Rate - Read: - Raw: 22017.98 - Pre: 22018.08 ", underTestPost->getReadoutError().c_str());
|
|
TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
delete underTestPost;
|
|
|
|
} |