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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
/*
* Copyright (c) 2001-2002 MUSIC TECHNOLOGY GROUP (MTG)
* UNIVERSITAT POMPEU FABRA
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "Text.hxx" // CLAM
#include "DynamicType.hxx" // CLAM
#include "XMLStorage.hxx" // CLAM
#include "XMLTestHelper.hxx"
#include <cppunit/extensions/HelperMacros.h>
using namespace CLAM;
/////////////////////////////////////////////////////////////////////
// Test Class
/////////////////////////////////////////////////////////////////////
namespace CLAMTest {
class TextTest;
CPPUNIT_TEST_SUITE_REGISTRATION( TextTest );
class TextTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE (CLAMTest::TextTest);
CPPUNIT_TEST (testDefaultConstructor);
CPPUNIT_TEST (testStringComparation_whenEqual);
CPPUNIT_TEST (testStringComparation_whenDiffers);
CPPUNIT_TEST (testInitializationFromCharPointer);
CPPUNIT_TEST (testStreamExtraction_withSpaces);
CPPUNIT_TEST (testStreamExtraction_withTabs);
CPPUNIT_TEST (testStreamExtraction_clearsPreviousContent);
CPPUNIT_TEST (testXml_output);
CPPUNIT_TEST (testXml_inputOutputAreIdempotent);
CPPUNIT_TEST_SUITE_END();
private:
class TextContainerComponent : public CLAM::DynamicType
{
public:
DYNAMIC_TYPE(TextContainerComponent, 1);
DYN_ATTRIBUTE(0, public, CLAM::Text, Text);
};
private:
void testDefaultConstructor()
{
CLAM::Text text;
CPPUNIT_ASSERT_EQUAL(CLAM::Text(""), text);
}
void testStringComparation_whenEqual()
{
CLAM::Text text("Hola");
std::string str("Hola");
bool result = (text==str);
CPPUNIT_ASSERT_EQUAL(true, result);
}
void testStringComparation_whenDiffers()
{
CLAM::Text text("Hola");
std::string str("Adios");
bool result = (text==str);
CPPUNIT_ASSERT_EQUAL(false, result);
}
void testInitializationFromCharPointer()
{
CLAM::Text text = "Hola";
std::string & str = text;
CPPUNIT_ASSERT_EQUAL(std::string("Hola"), str);
}
void testStreamExtraction_withSpaces()
{
std::string toberead("Hola tu");
std::istringstream myistream (toberead);
CLAM::Text extracted;
myistream >> extracted;
CLAM::Text expected("Hola tu");
CPPUNIT_ASSERT_EQUAL(expected, extracted);
}
void testStreamExtraction_withTabs()
{
std::string toberead("Hola\t tu");
std::istringstream myistream (toberead);
CLAM::Text extracted;
myistream >> extracted;
CLAM::Text expected("Hola\t tu");
CPPUNIT_ASSERT_EQUAL(expected, extracted);
}
void testStreamExtraction_clearsPreviousContent()
{
std::string toberead("Hola");
std::istringstream myistream (toberead);
CLAM::Text extracted("Previous content");
myistream >> extracted;
CLAM::Text expected("Hola");
CPPUNIT_ASSERT_EQUAL(expected, extracted);
}
void testXml_inputOutputAreIdempotent()
{
TextContainerComponent component;
component.AddText();
component.UpdateData();
component.SetText("La cadena esperada");
bool match = XMLInputOutputMatches(component,__FILE__"TextContainer.xml");
CLAM_ASSERT(match, "Text Store/Load mismatch");
}
void testXml_output()
{
TextContainerComponent component;
component.AddText();
component.UpdateData();
component.SetText("La cadena esperada");
std::stringstream stream;
XMLStorage storage;
storage.Dump(component, "object", stream, false);
CLAMTEST_ASSERT_XML_EQUAL(
"<object><Text>La cadena esperada</Text></object>\n", stream.str());
}
};
}
|