1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#define BOOST_TEST_MODULE CEchoRequest
#include <boost/test/unit_test.hpp>
#include "odil/message/CEchoRequest.h"
#include "odil/DataSet.h"
#include "odil/message/Message.h"
#include "odil/registry.h"
#include "../../MessageFixtureBase.h"
struct Fixture: public MessageFixtureBase<odil::message::CEchoRequest>
{
std::shared_ptr<odil::DataSet> command_set;
Fixture()
: command_set(std::make_shared<odil::DataSet>())
{
this->command_set->add(
"CommandField", {odil::message::Message::Command::C_ECHO_RQ});
this->command_set->add("MessageID", {1234});
this->command_set->add(
"AffectedSOPClassUID", {odil::registry::Verification});
}
void check(odil::message::CEchoRequest const & message)
{
BOOST_CHECK_EQUAL(
message.get_command_field(),
odil::message::Message::Command::C_ECHO_RQ);
BOOST_CHECK_EQUAL(message.get_message_id(), 1234);
BOOST_CHECK_EQUAL(
message.get_affected_sop_class_uid(), odil::registry::Verification);
BOOST_CHECK(!message.has_data_set());
}
};
BOOST_FIXTURE_TEST_CASE(Constructor, Fixture)
{
odil::message::CEchoRequest const message(
1234, odil::registry::Verification);
this->check(message);
}
BOOST_FIXTURE_TEST_CASE(MessageConstructor, Fixture)
{
this->check_message_constructor(this->command_set);
}
BOOST_FIXTURE_TEST_CASE(MessageConstructorWrongCommandField, Fixture)
{
this->command_set->as_int("CommandField") = {
odil::message::Message::Command::C_ECHO_RSP};
this->check_message_constructor_throw(this->command_set);
}
BOOST_FIXTURE_TEST_CASE(MessageConstructorMissingAffectSOPClass, Fixture)
{
this->command_set->remove("AffectedSOPClassUID");
this->check_message_constructor_throw(this->command_set);
}
|