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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
#define BOOST_TEST_MODULE CStoreRequest
#include <boost/test/unit_test.hpp>
#include "odil/message/CStoreRequest.h"
#include "odil/DataSet.h"
#include "odil/message/Message.h"
#include "odil/registry.h"
#include "../../MessageFixtureBase.h"
struct Fixture: public MessageFixtureBase<odil::message::CStoreRequest>
{
std::shared_ptr<odil::DataSet> command_set;
std::shared_ptr<odil::DataSet> data_set;
Fixture()
: command_set(std::make_shared<odil::DataSet>()),
data_set(std::make_shared<odil::DataSet>())
{
this->command_set->add(
"CommandField", {odil::message::Message::Command::C_STORE_RQ});
this->command_set->add("MessageID", {1234});
this->command_set->add(
"AffectedSOPClassUID", {odil::registry::MRImageStorage});
this->command_set->add("AffectedSOPInstanceUID", {"1.2.3.4"});
this->command_set->add(
"Priority", {odil::message::Message::Priority::MEDIUM});
this->command_set->add("MoveOriginatorApplicationEntityTitle", {"origin"});
this->command_set->add("MoveOriginatorMessageID", {5678});
this->data_set->add("PatientName", {"Doe^John"});
this->data_set->add("PatientID", {"DJ123"});
this->data_set->add("StudyDescription", {"Brain"});
this->data_set->add("StudyInstanceUID", {"1.2.3"});
}
void check(odil::message::CStoreRequest const & message)
{
BOOST_CHECK_EQUAL(
message.get_command_field(),
odil::message::Message::Command::C_STORE_RQ);
BOOST_CHECK_EQUAL(message.get_message_id(), 1234);
BOOST_CHECK_EQUAL(
message.get_affected_sop_class_uid(), odil::registry::MRImageStorage);
BOOST_CHECK_EQUAL(
message.get_affected_sop_instance_uid(), "1.2.3.4");
BOOST_CHECK(message.has_move_originator_ae_title());
BOOST_CHECK_EQUAL(message.get_move_originator_ae_title(), "origin");
BOOST_CHECK(message.has_move_originator_message_id());
BOOST_CHECK_EQUAL(message.get_move_originator_message_id(), 5678);
BOOST_CHECK(message.has_data_set());
BOOST_CHECK(*message.get_data_set() == *this->data_set);
}
};
BOOST_FIXTURE_TEST_CASE(Constructor, Fixture)
{
odil::message::CStoreRequest message(
1234, odil::registry::MRImageStorage, "1.2.3.4",
odil::message::Message::Priority::MEDIUM,
this->data_set);
message.set_move_originator_ae_title("origin");
message.set_move_originator_message_id(5678);
this->check(message);
}
BOOST_FIXTURE_TEST_CASE(MessageConstructor, Fixture)
{
this->check_message_constructor(this->command_set, this->data_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, this->data_set);
}
BOOST_FIXTURE_TEST_CASE(MessageConstructorMissingAffectSOPClass, Fixture)
{
this->command_set->remove("AffectedSOPClassUID");
this->check_message_constructor_throw(this->command_set, this->data_set);
}
BOOST_FIXTURE_TEST_CASE(MessageConstructorMissingAffectSOPInstance, Fixture)
{
this->command_set->remove("AffectedSOPInstanceUID");
this->check_message_constructor_throw(this->command_set, this->data_set);
}
|