87 lines
2.3 KiB
C
87 lines
2.3 KiB
C
// Copyright 2011 Juri Glass, Mathias Runge, Nadim El Sayed
|
|
// DAI-Labor, TU-Berlin
|
|
//
|
|
// This file is part of libSML.
|
|
//
|
|
// libSML is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// libSML is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with libSML. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include "../unity/unity_fixture.h"
|
|
#include "test_helper.h"
|
|
#include <sml/sml_time.h>
|
|
|
|
TEST_GROUP(sml_time);
|
|
|
|
sml_buffer *buf;
|
|
|
|
TEST_SETUP(sml_time) {
|
|
buf = sml_buffer_init(512);
|
|
}
|
|
|
|
TEST_TEAR_DOWN(sml_time) {
|
|
sml_buffer_free(buf);
|
|
}
|
|
|
|
TEST(sml_time, init) {
|
|
sml_time *t = sml_time_init();
|
|
TEST_ASSERT_NOT_NULL(t);
|
|
}
|
|
|
|
TEST(sml_time, parse_sec_index) {
|
|
hex2binary("72620165000000FF", sml_buf_get_current_buf(buf));
|
|
sml_time *t = sml_time_parse(buf);
|
|
|
|
TEST_ASSERT_NOT_NULL(t);
|
|
TEST_ASSERT_EQUAL(SML_TIME_SEC_INDEX, *(t->tag));
|
|
TEST_ASSERT_EQUAL(8, buf->cursor);
|
|
}
|
|
|
|
TEST(sml_time, parse_timestamp) {
|
|
hex2binary("72620265000000FF", sml_buf_get_current_buf(buf));
|
|
sml_time *t = sml_time_parse(buf);
|
|
|
|
TEST_ASSERT_NOT_NULL(t);
|
|
TEST_ASSERT_EQUAL(SML_TIME_TIMESTAMP, *(t->tag));
|
|
TEST_ASSERT_EQUAL(8, buf->cursor);
|
|
}
|
|
|
|
TEST(sml_time, parse_optional) {
|
|
hex2binary("01", sml_buf_get_current_buf(buf));
|
|
sml_time *t = sml_time_parse(buf);
|
|
|
|
TEST_ASSERT_NULL(t);
|
|
TEST_ASSERT_EQUAL(1, buf->cursor);
|
|
}
|
|
|
|
TEST(sml_time, write_sec_index) {
|
|
sml_time *t = sml_time_init();
|
|
t->data.sec_index = sml_u32_init(255);
|
|
t->tag = sml_u8_init(SML_TIME_SEC_INDEX);
|
|
|
|
sml_time_write(t, buf);
|
|
expected_buf(buf, "72620165000000FF", 8);
|
|
}
|
|
|
|
TEST(sml_time, write_optional) {
|
|
sml_time_write(0, buf);
|
|
expected_buf(buf, "01", 1);
|
|
}
|
|
|
|
TEST_GROUP_RUNNER(sml_time) {
|
|
RUN_TEST_CASE(sml_time, init);
|
|
RUN_TEST_CASE(sml_time, parse_sec_index);
|
|
RUN_TEST_CASE(sml_time, parse_timestamp);
|
|
RUN_TEST_CASE(sml_time, parse_optional);
|
|
RUN_TEST_CASE(sml_time, write_sec_index);
|
|
RUN_TEST_CASE(sml_time, write_optional);
|
|
}
|