File: test_data_source.ts.cpp

package info (click to toggle)
diagnostics 0.3.1-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,032 kB
  • ctags: 2,008
  • sloc: cpp: 13,596; sh: 9,706; makefile: 273; ansic: 9
file content (130 lines) | stat: -rw-r--r-- 4,141 bytes parent folder | download | duplicates (7)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
 * Diagnostics - a unified framework for code annotation, logging,
 * program monitoring, and unit-testing.
 *
 * Copyright (C) 2009 Christian Schallhart <christian@schallhart.net>,
 *                    Michael Tautschnig <tautschnig@forsyte.de>
 *               2008 model.in.tum.de group, FORSYTE group
 *               2006-2007 model.in.tum.de group
 *               2002-2005 Christian Schallhart
 *  
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * This library 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
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */


/**
 * @file diagnostics/unittest/test_system/test_data_source.ts.cpp
 *
 * @brief [LEVEL: beta] Implementation of the compliance test for
 * @ref diagnostics::unittest::Test_Data_Source
 *
 * $Id: test_data_source.ts.cpp,v 1.6 2005/06/23 09:54:26 esdentem Exp $
 * 
 * @author Christian Schallhart
 */

#include <diagnostics/unittest/test_system/test_data_source.ts.hpp>

#include <diagnostics/unittest/test_system/test_data_source.hpp>

#include <diagnostics/unittest/test_system_exception.hpp>

#include <diagnostics/unittest.hpp>

DIAGNOSTICS_NAMESPACE_BEGIN;
UNITTEST_NAMESPACE_BEGIN;
TEST_NAMESPACE_BEGIN;


Test_Data_Source_Compliance::Test_Data_Source_Compliance(Test_Data_Source * const source_init,
							 Test_Data_Source * const source)
    : m_source_init(source_init),
      m_source(source)
{
}


Test_Data_Source_Compliance::Test_Data_Source_Compliance(Self const & other)
    : m_source_init(other.m_source_init),
      m_source(other.m_source)
{
}

Test_Data_Source_Compliance & Test_Data_Source_Compliance::operator=(Self const & other)
{
    m_source_init=other.m_source_init;
    m_source=other.m_source;
    return *this;
}


void Test_Data_Source_Compliance::operator()(Test_Data & test_data) const
{
    ////////////////////////////////////////////////////////////////////////////////
    // uninitialized
    TEST_ASSERT(m_source->is_initialized()==false);

    TEST_THROWING_BLOCK_ENTER;
    m_source->exists_entry("x");
    TEST_THROWING_BLOCK_EXIT(Test_System_Exception);

    TEST_THROWING_BLOCK_ENTER;
    m_source->get_entry("x");
    TEST_THROWING_BLOCK_EXIT(Test_System_Exception);
    
    TEST_THROWING_BLOCK_ENTER;
    m_source->set_entry("x","y");
    TEST_THROWING_BLOCK_EXIT(Test_System_Exception);

    ////////////////////////////////////////////////////////////////////////////////
    // initilized

    TEST_ASSERT(m_source_init->is_initialized()==true);

    TEST_ASSERT(m_source_init->exists_entry("x")==false);
    
    TEST_THROWING_BLOCK_ENTER;
    m_source_init->get_entry("x");
    TEST_THROWING_BLOCK_EXIT(Test_System_Exception);

    // set now
    m_source_init->set_entry("x","y");
    TEST_ASSERT(m_source_init->get_entry("x")=="y");
    TEST_THROWING_BLOCK_ENTER;
    m_source_init->get_entry("x1");
    TEST_THROWING_BLOCK_EXIT(Test_System_Exception);

    // set another one
    m_source_init->set_entry("x1","y1");
    TEST_ASSERT(m_source_init->get_entry("x")=="y");
    TEST_ASSERT(m_source_init->get_entry("x1")=="y1");
    TEST_THROWING_BLOCK_ENTER;
    m_source_init->get_entry("x2");
    TEST_THROWING_BLOCK_EXIT(Test_System_Exception);

    // overwrite
    m_source_init->set_entry("x","Y");
    TEST_ASSERT(m_source_init->get_entry("x")=="Y");
    TEST_ASSERT(m_source_init->get_entry("x1")=="y1");
    TEST_THROWING_BLOCK_ENTER;
    m_source_init->get_entry("x2");
    TEST_THROWING_BLOCK_EXIT(Test_System_Exception);
}


TEST_NAMESPACE_END;
UNITTEST_NAMESPACE_END;
DIAGNOSTICS_NAMESPACE_END;
// vim:ts=4:sw=4