2014-09-03 21:14:54 +02:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
#include <stdio.h> /* printf */
|
|
|
|
#include <stdlib.h> /* abort */
|
|
|
|
#include <string.h> /* memset */
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#define xTaskGetTickCount() 1
|
|
|
|
#define portTICK_RATE_MS 1
|
|
|
|
|
|
|
|
#include "lednotification.c"
|
|
|
|
|
2014-08-18 16:35:02 +02:00
|
|
|
void PIOS_WS2811_setColorRGB(__attribute__((unused)) Color_t c, __attribute__((unused)) uint8_t led, __attribute__((unused)) bool update) {}
|
|
|
|
void PIOS_WS2811_Update() {}
|
2014-09-03 21:14:54 +02:00
|
|
|
}
|
|
|
|
|
2014-08-18 16:35:02 +02:00
|
|
|
class LedNotificationTest : public testing::Test {};
|
|
|
|
|
|
|
|
void insert(NotifierLedStatus_t *status, pios_notify_priority priority)
|
|
|
|
{
|
|
|
|
ExtLedNotification_t notification;
|
|
|
|
|
|
|
|
notification.priority = priority;
|
|
|
|
push_queued_sequence(¬ification, status);
|
2014-09-03 21:14:54 +02:00
|
|
|
}
|
|
|
|
|
2014-08-18 16:35:02 +02:00
|
|
|
void init(NotifierLedStatus_t *status, pios_notify_priority priority)
|
|
|
|
{
|
|
|
|
for (uint8_t i = 0; i < MAX_BACKGROUND_NOTIFICATIONS; i++) {
|
|
|
|
status->queued_priorities[i] = priority;
|
|
|
|
}
|
|
|
|
}
|
2014-09-03 21:14:54 +02:00
|
|
|
|
|
|
|
TEST_F(LedNotificationTest, TestQueueOrder1) {
|
|
|
|
NotifierLedStatus_t status;
|
|
|
|
|
2014-08-18 16:35:02 +02:00
|
|
|
init(&status, NOTIFY_PRIORITY_BACKGROUND);
|
2014-09-03 21:14:54 +02:00
|
|
|
|
2014-08-18 16:35:02 +02:00
|
|
|
insert(&status, NOTIFY_PRIORITY_LOW);
|
|
|
|
insert(&status, NOTIFY_PRIORITY_CRITICAL);
|
|
|
|
insert(&status, NOTIFY_PRIORITY_LOW);
|
|
|
|
insert(&status, NOTIFY_PRIORITY_CRITICAL);
|
2014-09-03 21:14:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_LOW, status.queued_priorities[0]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_LOW, status.queued_priorities[1]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_CRITICAL, status.queued_priorities[2]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_CRITICAL, status.queued_priorities[3]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_BACKGROUND, status.queued_priorities[4]);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LedNotificationTest, TestQueueOrder2) {
|
|
|
|
NotifierLedStatus_t status;
|
|
|
|
|
|
|
|
// Fails because insert_point and first_point will both be -1. This will also cause an array-out-of bounds at:
|
|
|
|
// 146 status->queued_priorities[insert_point] = new_notification->priority;
|
|
|
|
// 147 status->queued_sequences[insert_point] = new_notification->sequence;
|
|
|
|
// 148 updated_sequence = insert_point;
|
|
|
|
|
2014-08-18 16:35:02 +02:00
|
|
|
init(&status, NOTIFY_PRIORITY_LOW);
|
2014-09-03 21:14:54 +02:00
|
|
|
|
2014-08-18 16:35:02 +02:00
|
|
|
insert(&status, NOTIFY_PRIORITY_REGULAR);
|
2014-09-03 21:14:54 +02:00
|
|
|
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_REGULAR, status.queued_priorities[4]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_LOW, status.queued_priorities[3]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_LOW, status.queued_priorities[2]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_LOW, status.queued_priorities[1]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_LOW, status.queued_priorities[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LedNotificationTest, TestQueueOrder3) {
|
|
|
|
NotifierLedStatus_t status;
|
|
|
|
|
|
|
|
// Fails because queued_priorities[0] _LOW and not _REGULAR. I _think_ this is a bug.
|
2014-08-18 16:35:02 +02:00
|
|
|
init(&status, NOTIFY_PRIORITY_REGULAR);
|
2014-09-03 21:14:54 +02:00
|
|
|
|
2014-08-18 16:35:02 +02:00
|
|
|
insert(&status, NOTIFY_PRIORITY_LOW);
|
2014-09-03 21:14:54 +02:00
|
|
|
|
|
|
|
for (uint8_t i = 0; i < MAX_BACKGROUND_NOTIFICATIONS; i++) {
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_REGULAR, status.queued_priorities[i]);
|
|
|
|
}
|
|
|
|
}
|
2014-08-18 16:35:02 +02:00
|
|
|
|
|
|
|
TEST_F(LedNotificationTest, TestQueueOrder4) {
|
|
|
|
NotifierLedStatus_t status;
|
|
|
|
|
|
|
|
init(&status, NOTIFY_PRIORITY_BACKGROUND);
|
|
|
|
|
|
|
|
insert(&status, NOTIFY_PRIORITY_REGULAR);
|
|
|
|
insert(&status, NOTIFY_PRIORITY_REGULAR);
|
|
|
|
insert(&status, NOTIFY_PRIORITY_REGULAR);
|
|
|
|
insert(&status, NOTIFY_PRIORITY_LOW);
|
|
|
|
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_BACKGROUND, status.queued_priorities[4]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_REGULAR, status.queued_priorities[3]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_REGULAR, status.queued_priorities[2]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_REGULAR, status.queued_priorities[1]);
|
|
|
|
EXPECT_EQ(NOTIFY_PRIORITY_LOW, status.queued_priorities[0]);
|
|
|
|
}
|