File: RoleSelection.cpp

package info (click to toggle)
odil 0.13.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,476 kB
  • sloc: cpp: 55,982; python: 3,947; javascript: 460; xml: 182; makefile: 99; sh: 36
file content (74 lines) | stat: -rw-r--r-- 1,840 bytes parent folder | download | duplicates (6)
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
#define BOOST_TEST_MODULE RoleSelection
#include <boost/test/unit_test.hpp>

#include <sstream>
#include <string>

#include "odil/pdu/RoleSelection.h"

#include <iostream>

std::string const data(
    "\x54\x00\x00\x0b"
    "\x00\x07" "1.2.3.4"
    "\x01\x01",
    15
);

BOOST_AUTO_TEST_CASE(DefaultConstructor)
{
    odil::pdu::RoleSelection const item;
    BOOST_REQUIRE_EQUAL(item.get_sop_class_uid(), "");
    BOOST_REQUIRE_EQUAL(item.get_scu_role_support(), false);
    BOOST_REQUIRE_EQUAL(item.get_scp_role_support(), false);
}

BOOST_AUTO_TEST_CASE(Constructor)
{
    odil::pdu::RoleSelection const item("1.2.3.4", true, true);
    BOOST_REQUIRE_EQUAL(item.get_sop_class_uid(), "1.2.3.4");
    BOOST_REQUIRE_EQUAL(item.get_scu_role_support(), true);
    BOOST_REQUIRE_EQUAL(item.get_scp_role_support(), true);
}

BOOST_AUTO_TEST_CASE(FromStream)
{
    std::istringstream stream(data);
    odil::pdu::RoleSelection const item(stream);

    BOOST_REQUIRE_EQUAL(item.get_sop_class_uid(), "1.2.3.4");
    BOOST_REQUIRE_EQUAL(item.get_scu_role_support(), true);
    BOOST_REQUIRE_EQUAL(item.get_scp_role_support(), true);
}

BOOST_AUTO_TEST_CASE(SOPClassUID)
{
    odil::pdu::RoleSelection item;
    item.set_sop_class_uid("1.2.3.4");
    BOOST_REQUIRE_EQUAL(item.get_sop_class_uid(), "1.2.3.4");
}

BOOST_AUTO_TEST_CASE(SCURoleSupport)
{
    odil::pdu::RoleSelection item;
    item.set_scu_role_support(true);
    BOOST_REQUIRE_EQUAL(item.get_scu_role_support(), true);
}

BOOST_AUTO_TEST_CASE(SCPRoleSupport)
{
    odil::pdu::RoleSelection item;
    item.set_scp_role_support(true);
    BOOST_REQUIRE_EQUAL(item.get_scp_role_support(), true);
}


BOOST_AUTO_TEST_CASE(Write)
{
    odil::pdu::RoleSelection item("1.2.3.4", true, true);

    std::ostringstream stream;
    stream << item;

    BOOST_REQUIRE_EQUAL(stream.str(), data);
}