Add extracted tools: CitrineOS, OpenOCPP, ShapeShifter

- CitrineOS core extracted (CSMS OCPP 2.0.1)
- OpenOCPP extracted (firmware OCPP 1.6J/2.0.1)
- ShapeShifter library installed (pip install -e)
- ShapeShifter specification extracted
- EVerest extracted

TODO updated with progress
This commit is contained in:
Eric F
2026-06-08 00:38:27 -04:00
parent 468cfeaa50
commit d398a6ced2
7326 changed files with 1177561 additions and 7 deletions

View File

@@ -0,0 +1,48 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright Pionix GmbH and Contributors to EVerest
#ifndef TESTS_ENERGY_MANAGER_CONFIG_JSON_HPP
#define TESTS_ENERGY_MANAGER_CONFIG_JSON_HPP
#include "EnergyManagerImpl.hpp"
#include <nlohmann/json.hpp>
NLOHMANN_JSON_NAMESPACE_BEGIN
template <> struct adl_serializer<module::EnergyManagerConfig> {
static void to_json(json& j, const module::EnergyManagerConfig& config) {
j = {
{"nominal_ac_voltage", config.nominal_ac_voltage},
{"update_interval", config.update_interval},
{"schedule_interval_duration", config.schedule_interval_duration},
{"schedule_total_duration", config.schedule_total_duration},
{"slice_ampere", config.slice_ampere},
{"slice_watt", config.slice_watt},
{"debug", config.debug},
{"switch_3ph1ph_while_charging_mode", config.switch_3ph1ph_while_charging_mode},
{"switch_3ph1ph_max_nr_of_switches_per_session", config.switch_3ph1ph_max_nr_of_switches_per_session},
{"switch_3ph1ph_switch_limit_stickyness", config.switch_3ph1ph_switch_limit_stickyness},
{"switch_3ph1ph_power_hysteresis_W", config.switch_3ph1ph_power_hysteresis_W},
{"switch_3ph1ph_time_hysteresis_s", config.switch_3ph1ph_time_hysteresis_s},
};
}
static module::EnergyManagerConfig from_json(const json& j) {
return {
j.at("nominal_ac_voltage"),
j.at("update_interval"),
j.at("schedule_interval_duration"),
j.at("schedule_total_duration"),
j.at("slice_ampere"),
j.at("slice_watt"),
j.at("debug"),
j.at("switch_3ph1ph_while_charging_mode"),
j.at("switch_3ph1ph_max_nr_of_switches_per_session"),
j.at("switch_3ph1ph_switch_limit_stickyness"),
j.at("switch_3ph1ph_power_hysteresis_W"),
j.at("switch_3ph1ph_time_hysteresis_s"),
};
}
};
NLOHMANN_JSON_NAMESPACE_END
#endif // TESTS_ENERGY_MANAGER_CONFIG_JSON_HPP

View File

@@ -0,0 +1,44 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright Pionix GmbH and Contributors to EVerest
#ifndef JSON_DEFINED_ENERGY_MANAGER_TEST_HPP
#define JSON_DEFINED_ENERGY_MANAGER_TEST_HPP
#include <chrono>
#include <date/date.h>
#include <date/tz.h>
#include <filesystem>
#include <gtest/gtest.h>
#include <memory>
#include <generated/types/energy.hpp>
#include "EnergyManagerImpl.hpp"
namespace module {
// This test runs a test from a single json file
// and asserts that the result matches the expected result defined in the same file
class JsonDefinedEnergyManagerTest : public ::testing::Test {
public:
JsonDefinedEnergyManagerTest();
explicit JsonDefinedEnergyManagerTest(const std::filesystem::path& path);
void TestBody() override;
protected:
void load_test(const std::filesystem::path& path);
void run_test(std::vector<date::utc_clock::time_point> _start_times);
std::unique_ptr<EnergyManagerImpl> impl;
std::vector<date::utc_clock::time_point> start_times;
EnergyManagerConfig config;
types::energy::EnergyFlowRequest request;
std::vector<std::vector<types::energy::EnforcedLimits>> expected_results;
private:
std::string comment;
};
} // namespace module
#endif // JSON_DEFINED_ENERGY_MANAGER_TEST_HPP