mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
I started with the output of styleguide#217, then renamed a few classes to fix compilation. ntcore's StorageTest needed some manual renaming since it put the Test word in the middle instead of at the end. One limitation of wpiformat is test cases that were only named "Test" were unmodified, and an error was generated. These test cases were manually given more descriptive names: * TimedRobotTest mode test cases had "Mode" appended to the name. Java tests were renamed to match. * UvAsyncTest and UvAsyncFunctionTest cases were given alternate names
126 lines
3.4 KiB
C++
126 lines
3.4 KiB
C++
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#include "frc/motorcontrol/MotorControllerGroup.h" // NOLINT(build/include_order)
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "MockMotorController.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace frc;
|
|
|
|
enum MotorControllerGroupTestType { TEST_ONE, TEST_TWO, TEST_THREE };
|
|
|
|
std::ostream& operator<<(std::ostream& os,
|
|
const MotorControllerGroupTestType& type) {
|
|
switch (type) {
|
|
case TEST_ONE:
|
|
os << "MotorControllerGroup with one speed controller";
|
|
break;
|
|
case TEST_TWO:
|
|
os << "MotorControllerGroup with two speed controllers";
|
|
break;
|
|
case TEST_THREE:
|
|
os << "MotorControllerGroup with three speed controllers";
|
|
break;
|
|
}
|
|
|
|
return os;
|
|
}
|
|
|
|
/**
|
|
* A fixture used for MotorControllerGroup testing.
|
|
*/
|
|
class MotorControllerGroupTest
|
|
: public testing::TestWithParam<MotorControllerGroupTestType> {
|
|
protected:
|
|
std::vector<MockMotorController> m_speedControllers;
|
|
std::unique_ptr<MotorControllerGroup> m_group;
|
|
|
|
void SetUp() override {
|
|
switch (GetParam()) {
|
|
case TEST_ONE: {
|
|
m_speedControllers.emplace_back();
|
|
m_group = std::make_unique<MotorControllerGroup>(m_speedControllers[0]);
|
|
break;
|
|
}
|
|
|
|
case TEST_TWO: {
|
|
m_speedControllers.emplace_back();
|
|
m_speedControllers.emplace_back();
|
|
m_group = std::make_unique<MotorControllerGroup>(m_speedControllers[0],
|
|
m_speedControllers[1]);
|
|
break;
|
|
}
|
|
|
|
case TEST_THREE: {
|
|
m_speedControllers.emplace_back();
|
|
m_speedControllers.emplace_back();
|
|
m_speedControllers.emplace_back();
|
|
m_group = std::make_unique<MotorControllerGroup>(m_speedControllers[0],
|
|
m_speedControllers[1],
|
|
m_speedControllers[2]);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
TEST_P(MotorControllerGroupTest, Set) {
|
|
m_group->Set(1.0);
|
|
|
|
for (auto& speedController : m_speedControllers) {
|
|
EXPECT_FLOAT_EQ(speedController.Get(), 1.0);
|
|
}
|
|
}
|
|
|
|
TEST_P(MotorControllerGroupTest, GetInverted) {
|
|
m_group->SetInverted(true);
|
|
|
|
EXPECT_TRUE(m_group->GetInverted());
|
|
}
|
|
|
|
TEST_P(MotorControllerGroupTest, SetInvertedDoesNotModifyMotorControllers) {
|
|
for (auto& speedController : m_speedControllers) {
|
|
speedController.SetInverted(false);
|
|
}
|
|
m_group->SetInverted(true);
|
|
|
|
for (auto& speedController : m_speedControllers) {
|
|
EXPECT_EQ(speedController.GetInverted(), false);
|
|
}
|
|
}
|
|
|
|
TEST_P(MotorControllerGroupTest, SetInvertedDoesInvert) {
|
|
m_group->SetInverted(true);
|
|
m_group->Set(1.0);
|
|
|
|
for (auto& speedController : m_speedControllers) {
|
|
EXPECT_FLOAT_EQ(speedController.Get(), -1.0);
|
|
}
|
|
}
|
|
|
|
TEST_P(MotorControllerGroupTest, Disable) {
|
|
m_group->Set(1.0);
|
|
m_group->Disable();
|
|
|
|
for (auto& speedController : m_speedControllers) {
|
|
EXPECT_FLOAT_EQ(speedController.Get(), 0.0);
|
|
}
|
|
}
|
|
|
|
TEST_P(MotorControllerGroupTest, StopMotor) {
|
|
m_group->Set(1.0);
|
|
m_group->StopMotor();
|
|
|
|
for (auto& speedController : m_speedControllers) {
|
|
EXPECT_FLOAT_EQ(speedController.Get(), 0.0);
|
|
}
|
|
}
|
|
|
|
INSTANTIATE_TEST_SUITE_P(Tests, MotorControllerGroupTest,
|
|
testing::Values(TEST_ONE, TEST_TWO, TEST_THREE));
|