File: ItemWithParameters.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 (70 lines) | stat: -rw-r--r-- 1,974 bytes parent folder | download | duplicates (5)
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
#define BOOST_TEST_MODULE ItemWithParameters
#include <boost/test/unit_test.hpp>

#include <sstream>

#include "odil/webservices/ItemWithParameters.h"

BOOST_AUTO_TEST_CASE(NoParameter)
{
    std::stringstream stream("text/plain");
    odil::webservices::ItemWithParameters item;
    stream >> item;

    BOOST_REQUIRE_EQUAL(item.name, "text/plain");
    BOOST_REQUIRE(item.name_parameters.empty());
    BOOST_REQUIRE(item.extension_parameters.empty());
}

BOOST_AUTO_TEST_CASE(NameParametersOnly)
{
    std::stringstream stream(
        "text/plain; charset=\"iso-8859-1\"; format=\"flowed\"");
    odil::webservices::ItemWithParameters item;
    stream >> item;

    typedef std::map<std::string, std::string> Map;

    BOOST_REQUIRE_EQUAL(item.name, "text/plain");
    BOOST_REQUIRE(
        item.name_parameters == Map({
            { "charset", "\"iso-8859-1\""},
            { "format", "\"flowed\""}
    }));
    BOOST_REQUIRE(item.extension_parameters.empty());
}

BOOST_AUTO_TEST_CASE(ExtensionParametersOnly)
{
    std::stringstream stream("text/plain; q=0.8;foo=bar");
    odil::webservices::ItemWithParameters item;
    stream >> item;

    typedef std::map<std::string, std::string> Map;

    BOOST_REQUIRE_EQUAL(item.name, "text/plain");
    BOOST_REQUIRE(item.name_parameters.empty());
    BOOST_REQUIRE(
        item.extension_parameters == Map({ { "q", "0.8"}, { "foo", "bar"} }));

}

BOOST_AUTO_TEST_CASE(BothParameters)
{
    std::stringstream stream(
        "text/plain; charset=\"iso-8859-1\"; format=\"flowed\"; q=0.8;foo=bar");
    odil::webservices::ItemWithParameters item;
    stream >> item;

    typedef std::map<std::string, std::string> Map;

    BOOST_REQUIRE_EQUAL(item.name, "text/plain");
    BOOST_REQUIRE(
        item.name_parameters == Map({
            { "charset", "\"iso-8859-1\""},
            { "format", "\"flowed\""}
    }));
    BOOST_REQUIRE(
        item.extension_parameters == Map({ { "q", "0.8"}, { "foo", "bar"} }));

}