OpenRTX/tests/unit/cps.c

187 wiersze
5.6 KiB
C

#include <interfaces/cps_io.h>
#include <string.h>
#include <stdio.h>
int test_initCPS() {
// Initialize a new cps
int err = cps_create("/tmp/test1.rtxc");
if (err)
return -1;
// Re-open it
err = cps_open("/tmp/test1.rtxc");
if (err)
return -1;
return 0;
}
int test_insertContact() {
cps_create("/tmp/test2.rtxc");
cps_open("/tmp/test2.rtxc");
contact_t c1 = { "Test contact 1", 0, {{0}} };
contact_t c2 = { "Test contact 2", 0, {{0}} };
contact_t c3 = { "Test contact 3", 0, {{0}} };
contact_t c4 = { "Test contact 4", 0, {{0}} };
cps_insertContact(c1, 0);
cps_insertContact(c2, 0);
cps_insertContact(c3, 0);
cps_insertContact(c4, 1);
contact_t c = { 0 };
cps_readContact(&c, 0);
if(strncmp(c3.name, c.name, 32L))
return -1;
cps_readContact(&c, 1);
if(strncmp(c4.name, c.name, 32L))
return -1;
cps_readContact(&c, 2);
if(strncmp(c2.name, c.name, 32L))
return -1;
cps_readContact(&c, 3);
if(strncmp(c1.name, c.name, 32L))
return -1;
cps_close();
return 0;
}
int test_insertChannel() {
cps_create("/tmp/test3.rtxc");
cps_open("/tmp/test3.rtxc");
channel_t c1 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 1", "", {0}, {{0}} };
channel_t c2 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 2", "", {0}, {{0}} };
channel_t c3 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 3", "", {0}, {{0}} };
channel_t c4 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 4", "", {0}, {{0}} };
cps_insertChannel(c1, 0);
cps_insertChannel(c2, 0);
cps_insertChannel(c3, 0);
cps_insertChannel(c4, 1);
channel_t c = { 0 };
cps_readChannel(&c, 0);
if(strncmp(c3.name, c.name, 32L))
return -1;
cps_readChannel(&c, 1);
if(strncmp(c4.name, c.name, 32L))
return -1;
cps_readChannel(&c, 2);
if(strncmp(c2.name, c.name, 32L))
return -1;
cps_readChannel(&c, 3);
if(strncmp(c1.name, c.name, 32L))
return -1;
cps_close();
return 0;
}
int test_contactIndexFix() {
cps_create("/tmp/test4.rtxc");
cps_open("/tmp/test4.rtxc");
contact_t ct1 = { "Test contact 1", 0, {{0}} };
contact_t ct2 = { "Test contact 2", 0, {{0}} };
channel_t ch1 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 1", "", {0}, {{0}} };
cps_insertContact(ct1, 0);
cps_insertChannel(ch1, 0);
cps_insertContact(ct2, 0);
channel_t c = { 0 };
cps_readChannel(&c, 0);
if(c.m17.contact_index != 1)
return -1;
cps_close();
return 0;
}
int test_createComplexCPS() {
cps_create("/tmp/test5.rtxc");
cps_open("/tmp/test5.rtxc");
contact_t ct1 = { "Test contact 1", 0, {{0}} };
contact_t ct2 = { "Test contact 2", 0, {{0}} };
channel_t ch1 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 1", "", {0}, {{0}} };
channel_t ch2 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 2", "", {0}, {{0}} };
channel_t ch3 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 3", "", {0}, {{0}} };
channel_t ch4 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 4", "", {0}, {{0}} };
channel_t ch5 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 5", "", {0}, {{0}} };
bankHdr_t b1 = { "Test Bank 1", 0 };
bankHdr_t b2 = { "Test Bank 2", 0 };
cps_insertContact(ct2, 0);
cps_insertContact(ct1, 0);
cps_insertChannel(ch1, 0);
cps_insertChannel(ch2, 1);
cps_insertChannel(ch3, 2);
cps_insertChannel(ch4, 3);
cps_insertChannel(ch5, 4);
cps_insertBankHeader(b2, 0);
cps_insertBankHeader(b1, 0);
cps_insertBankData(0, 0, 0);
cps_insertBankData(1, 0, 1);
cps_insertBankData(2, 1, 0);
cps_insertBankData(3, 1, 1);
cps_insertBankData(4, 1, 2);
cps_close();
return 0;
}
int test_createOOOCPS() {
cps_create("/tmp/test6.rtxc");
cps_open("/tmp/test6.rtxc");
contact_t ct1 = { "Test contact 1", 0, {{0}} };
contact_t ct2 = { "Test contact 2", 0, {{0}} };
channel_t ch1 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 1", "", {0}, {{0}} };
channel_t ch2 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 2", "", {0}, {{0}} };
channel_t ch3 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 3", "", {0}, {{0}} };
channel_t ch4 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 4", "", {0}, {{0}} };
channel_t ch5 = { 2, 0, 0, 0, 0, 0, 0, 0, 0, "Test channel 5", "", {0}, {{0}} };
bankHdr_t b1 = { "Test Bank 1", 0 };
bankHdr_t b2 = { "Test Bank 2", 0 };
cps_insertContact(ct1, 0);
cps_insertContact(ct2, 1);
cps_insertBankHeader(b1, 0);
cps_insertBankHeader(b2, 1);
cps_insertChannel(ch5, 0);
cps_insertBankData(0, 1, 0);
cps_insertChannel(ch4, 0);
cps_insertBankData(0, 1, 0);
cps_insertChannel(ch3, 0);
cps_insertBankData(0, 1, 0);
cps_insertChannel(ch2, 0);
cps_insertBankData(0, 0, 0);
cps_insertChannel(ch1, 0);
cps_insertBankData(0, 0, 0);
cps_close();
return 0;
}
int main() {
if (test_initCPS())
{
printf("Error in codeplug initialization and read back!\n");
return -1;
}
if (test_insertContact())
{
printf("Error in contact insertion!\n");
return -1;
}
if (test_insertChannel())
{
printf("Error in channel insertion!\n");
return -1;
}
// if (test_contactIndexFix())
// {
// printf("Error in contact index fix!\n");
// return -1;
// }
if (test_createComplexCPS())
{
printf("Error in creation of complex CPS!\n");
return -1;
}
if (test_createOOOCPS())
{
printf("Error in creation of Out-Of-Order CPS!\n");
return -1;
}
}