Files
allwpilib/commandsv2/src/test/native/cpp/wpi/command/POVButtonTest.cpp

44 lines
1.3 KiB
C++
Raw Normal View History

// 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 "wpi/commands2/button/POVButton.hpp"
#include <gtest/gtest.h>
2025-11-07 19:56:21 -05:00
#include "CommandTestBase.hpp"
#include "wpi/commands2/CommandScheduler.hpp"
#include "wpi/commands2/RunCommand.hpp"
#include "wpi/commands2/WaitUntilCommand.hpp"
2025-11-07 19:57:55 -05:00
#include "wpi/driverstation/DriverStation.hpp"
#include "wpi/driverstation/Joystick.hpp"
#include "wpi/simulation/JoystickSim.hpp"
2025-11-07 20:00:05 -05:00
using namespace wpi::cmd;
class POVButtonTest : public CommandTestBase {};
TEST_F(POVButtonTest, SetPOV) {
2025-11-07 20:00:05 -05:00
wpi::sim::JoystickSim joysim(1);
joysim.SetPOV(wpi::DriverStation::POVDirection::UP);
joysim.NotifyNewData();
auto& scheduler = CommandScheduler::GetInstance();
bool finished = false;
WaitUntilCommand command([&finished] { return finished; });
2025-11-07 20:00:05 -05:00
wpi::Joystick joy(1);
POVButton(&joy, wpi::DriverStation::POVDirection::RIGHT).OnTrue(&command);
scheduler.Run();
EXPECT_FALSE(scheduler.IsScheduled(&command));
joysim.SetPOV(wpi::DriverStation::POVDirection::RIGHT);
joysim.NotifyNewData();
scheduler.Run();
EXPECT_TRUE(scheduler.IsScheduled(&command));
finished = true;
scheduler.Run();
EXPECT_FALSE(scheduler.IsScheduled(&command));
}