mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-29 21:32:38 +00:00
54 lines
1.4 KiB
C
54 lines
1.4 KiB
C
|
|
//*****************************************************************************
|
|
//
|
|
// test rfcomm query tests
|
|
//
|
|
//*****************************************************************************
|
|
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "ad_parser.h"
|
|
|
|
#include "CppUTest/TestHarness.h"
|
|
#include "CppUTest/CommandLineTestRunner.h"
|
|
|
|
static uint8_t ad_data[] = {0x02, 0x01, 0x05, 0x03, 0x02, 0xF0, 0xFF};
|
|
|
|
TEST_GROUP(ADParser){
|
|
};
|
|
|
|
|
|
TEST(ADParser, Test){
|
|
ad_context_t context;
|
|
uint8_t expected_len[] = {1, 2};
|
|
uint8_t expected_type[] = {0x01, 0x02};
|
|
uint8_t expected_data[][2] = {{0x05, 0x00}, {0xF0, 0xFF}};
|
|
|
|
int i = 0;
|
|
uint8_t ad_len = sizeof(ad_data);
|
|
|
|
for (ad_iterator_init(&context, ad_len, ad_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)){
|
|
uint8_t data_type = ad_iterator_get_data_type(&context);
|
|
uint8_t data_len = ad_iterator_get_data_len(&context);
|
|
uint8_t * data = ad_iterator_get_data(&context);
|
|
|
|
CHECK_EQUAL(expected_len[i], data_len);
|
|
CHECK_EQUAL(expected_type[i], data_type);
|
|
|
|
int j;
|
|
for (j = 0; j < data_len; j++){
|
|
CHECK_EQUAL(expected_data[i][j], data[j]);
|
|
}
|
|
i++;
|
|
}
|
|
}
|
|
|
|
|
|
int main (int argc, const char * argv[]){
|
|
return CommandLineTestRunner::RunAllTests(argc, argv);
|
|
}
|