TestOutputNode.cpp

Go to the documentation of this file.
00001 
00002 //
00003 // This source file is a part of ParCompMark
00004 // Parallel Compositing Benchmark Framework
00005 //
00006 // for latest info see http://parcompmark.sourceforge.net
00007 
00008 //
00009 // Copyright (C) 2006 IT2 ParCompMark Dev. Team
00010 // 
00011 // This program is free software; you can redistribute it and/or
00012 // modify it under the terms of the GNU General Public License
00013 // as published by the Free Software Foundation; either version 2
00014 // of the License, or (at your option) any later version.
00015 // 
00016 // This program is distributed in the hope that it will be useful,
00017 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00018 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00019 // GNU General Public License for more details.
00020 // 
00021 // You should have received a copy of the GNU General Public License
00022 // along with this program; if not, write to the Free Software
00023 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
00024 
00027 
00028 #include "../include/TestOutputNode.h"
00029 #include "../../include/PCMFileSystemManager.h"
00030 
00031 namespace ParCompMarkTest
00032 {
00033 
00034   void TestOutputNode::setUp()
00035   {
00036         std::string currentLogFile = "logs/TestOutputNode.log";
00037 
00038         if(Logger::getInstance() && Logger::getInstance()->getLogFileName() != currentLogFile)
00039          Logger::destroyInstance();
00040 
00041         if(!FileSystemManager::getInstance())
00042         {
00043          FileSystemManager::createInstance();
00044          FileSystemManager::getInstance()->setAppDirectory("./");
00045          FileSystemManager::getInstance()->initialize();
00046         }
00047 
00048         if(!Logger::getInstance())
00049         {
00050          Logger::createInstance();
00051          Logger::getInstance()->setLogFileName(currentLogFile);
00052          Logger::getInstance()->initialize();
00053         }
00054   }
00055 
00056  /*----------------------------------------------------------------------*/
00057 
00058   void TestOutputNode::tearDown()
00059   {
00060   }
00061 
00062  /*----------------------------------------------------------------------*/
00063 
00064   //
00065   // Constructor & destructor tests
00066   //
00067 
00068   void TestOutputNode::test_constructor_cstd__string_cNodeType()
00069   {
00070 
00071         /*
00072          * You have to verify the following:
00073          * 
00074          * Creates output node.
00075          */
00076 
00077         // Creation with C style pointer (not textual node)
00078         OutputNode *node1 = 0;
00079 
00080         CPPUNIT_ASSERT_NO_THROW(node1 = new OutputNode("name", OutputNode::DEFINITION));
00081         CPPUNIT_ASSERT(node1->mName == "name");
00082         CPPUNIT_ASSERT(node1->mType == OutputNode::DEFINITION);
00083         CPPUNIT_ASSERT(node1->mText == "");
00084         CPPUNIT_ASSERT_NO_THROW(delete node1);
00085 
00086         // Smart pointer reference
00087         OutputNode::Pointer node2;
00088 
00089         CPPUNIT_ASSERT_NO_THROW(node2 = new OutputNode("name", OutputNode::DEFINITION));
00090         CPPUNIT_ASSERT(node2->mName == "name");
00091         CPPUNIT_ASSERT(node2->mType == OutputNode::DEFINITION);
00092         CPPUNIT_ASSERT(node2->mText == "");
00093   }
00094 
00095  /*----------------------------------------------------------------------*/
00096 
00097   void TestOutputNode::test_constructor_cstd__string()
00098   {
00099 
00100         /*
00101          * You have to verify the following:
00102          * 
00103          * Creates text field.
00104          */
00105 
00106         // Creation with C style pointer (textual node)
00107         OutputNode *node1 = 0;
00108 
00109         CPPUNIT_ASSERT_NO_THROW(node1 = new OutputNode("This is the text."));
00110         CPPUNIT_ASSERT(node1->mName == OutputNode::TEXTNODENAME);
00111         CPPUNIT_ASSERT(node1->mType == OutputNode::TEXT);
00112         CPPUNIT_ASSERT(node1->mText == "This is the text.");
00113         CPPUNIT_ASSERT_NO_THROW(delete node1);
00114 
00115         // Smart pointer reference
00116         OutputNode::Pointer node2;
00117 
00118         CPPUNIT_ASSERT_NO_THROW(node2 = new OutputNode("This is the text."));
00119         CPPUNIT_ASSERT(node2->mName == OutputNode::TEXTNODENAME);
00120         CPPUNIT_ASSERT(node2->mType == OutputNode::TEXT);
00121         CPPUNIT_ASSERT(node2->mText == "This is the text.");
00122   }
00123 
00124  /*----------------------------------------------------------------------*/
00125 
00126   void TestOutputNode::test_destructor()
00127   {
00128         // Already tested above
00129   }
00130 
00131  /*----------------------------------------------------------------------*/
00132 
00133   //
00134   // Class method tests
00135   //
00136 
00137   void TestOutputNode::test_parseFromXML_std__string()
00138   {
00139 
00140         /*
00141          * You have to verify the following:
00142          * 
00143          * Parse XML document and construct its OutputNode equivalent.
00144          */
00145 
00146         CPPUNIT_FAIL("Implement this test!");
00147   }
00148 
00149  /*----------------------------------------------------------------------*/
00150 
00151   void TestOutputNode::test__testXMLName_cstd__string()
00152   {
00153 
00154         /*
00155          * You have to verify the following:
00156          * 
00157          * Test name if its a correct xml name.
00158          */
00159 
00160         CPPUNIT_FAIL("Implement this test!");
00161   }
00162 
00163  /*----------------------------------------------------------------------*/
00164 
00165   void TestOutputNode::test__convertSpecialChars_cstd__string()
00166   {
00167 
00168         /*
00169          * You have to verify the following:
00170          * 
00171          * Convert special characters to XML entites.
00172          */
00173 
00174         CPPUNIT_FAIL("Implement this test!");
00175   }
00176 
00177  /*----------------------------------------------------------------------*/
00178 
00179   //
00180   // Method tests
00181   //
00182 
00183   void TestOutputNode::test_createChildNode_cstd__string_cNodeType()
00184   {
00185 
00186         /*
00187          * You have to verify the following:
00188          * 
00189          * Create nontextual child node.
00190          */
00191 
00192         OutputNode::Pointer parent, child;
00193 
00194         // Create nontextual parent node
00195         CPPUNIT_ASSERT_NO_THROW(parent = new OutputNode("parent", OutputNode::DEFINITION));
00196         CPPUNIT_ASSERT_NO_THROW(child = parent->createChildNode("child", OutputNode::INFORMATION));
00197         CPPUNIT_ASSERT(child->mName == "child");
00198         CPPUNIT_ASSERT(child->mType == OutputNode::INFORMATION);
00199         CPPUNIT_ASSERT(child->mText == "");
00200 
00201         // Create another child with another name
00202         CPPUNIT_ASSERT_NO_THROW(parent->createChildNode("child2", OutputNode::INFORMATION));
00203 
00204         // Create textual parent node (no child is allowed)
00205         CPPUNIT_ASSERT_NO_THROW(parent = new OutputNode("This is a text."));
00206         CPPUNIT_ASSERT_THROW(parent->createChildNode("child", OutputNode::INFORMATION), ParCompMark::Exception);
00207   }
00208 
00209  /*----------------------------------------------------------------------*/
00210 
00211   void TestOutputNode::test_createChildNode_cstd__string()
00212   {
00213 
00214         /*
00215          * You have to verify the following:
00216          * 
00217          * Create textual child node.
00218          */
00219 
00220         OutputNode::Pointer parent, child;
00221 
00222         // Create nontextual parent node
00223         CPPUNIT_ASSERT_NO_THROW(parent = new OutputNode("parent", OutputNode::DEFINITION));
00224         CPPUNIT_ASSERT_NO_THROW(child = parent->createChildNode("This is a text."));
00225         CPPUNIT_ASSERT(child->mName == OutputNode::TEXTNODENAME);
00226         CPPUNIT_ASSERT(child->mType == OutputNode::TEXT);
00227         CPPUNIT_ASSERT(child->mText == "This is a text.");
00228 
00229         // Create textual parent node (no child is allowed)
00230         CPPUNIT_ASSERT_NO_THROW(parent = new OutputNode("This is a text."));
00231         CPPUNIT_ASSERT_THROW(parent->createChildNode("This is a text."), ParCompMark::Exception);
00232   }
00233 
00234  /*----------------------------------------------------------------------*/
00235 
00236   void TestOutputNode::test_addChildNode_OutputNode__Pointer()
00237   {
00238 
00239         /*
00240          * You have to verify the following:
00241          * 
00242          * Add child node.
00243          */
00244 
00245         OutputNode::Pointer parent, child1, child2;
00246 
00247         // Create nontextual child node
00248         CPPUNIT_ASSERT_NO_THROW(child1 = new OutputNode("child", OutputNode::INFORMATION));
00249 
00250         // Create textual child node
00251         CPPUNIT_ASSERT_NO_THROW(child2 = new OutputNode("This is a text."));
00252 
00253         // Create nontextual parent node
00254         CPPUNIT_ASSERT_NO_THROW(parent = new OutputNode("parent", OutputNode::DEFINITION));
00255 
00256         // Correct work
00257         CPPUNIT_ASSERT_NO_THROW(parent->addChildNode(child1));
00258         CPPUNIT_ASSERT_NO_THROW(parent->addChildNode(child2));
00259 
00260         // Cannot add itself as a child
00261         CPPUNIT_ASSERT_THROW(parent->addChildNode(parent), ParCompMark::Exception);
00262 
00263         // Create textual parent node (no child is allowed)
00264         CPPUNIT_ASSERT_NO_THROW(parent = new OutputNode("This is a text."));
00265         CPPUNIT_ASSERT_THROW(parent->addChildNode(child1), ParCompMark::Exception);
00266         CPPUNIT_ASSERT_THROW(parent->addChildNode(child2), ParCompMark::Exception);
00267   }
00268 
00269  /*----------------------------------------------------------------------*/
00270 
00271   void TestOutputNode::test_getChildCount()
00272   {
00273 
00274         /*
00275          * You have to verify the following:
00276          * 
00277          * Return the number of child nodes.
00278          */
00279 
00280         CPPUNIT_FAIL("Implement this test!");
00281   }
00282 
00283  /*----------------------------------------------------------------------*/
00284 
00285   void TestOutputNode::test_getFirstChildNode()
00286   {
00287 
00288         /*
00289          * You have to verify the following:
00290          * 
00291          * Return first child node.
00292          */
00293 
00294         CPPUNIT_FAIL("Implement this test!");
00295   }
00296 
00297  /*----------------------------------------------------------------------*/
00298 
00299   void TestOutputNode::test_hasAttribute_cstd__string()
00300   {
00301 
00302         /*
00303          * You have to verify the following:
00304          * 
00305          * Return true if the node has attribute with the specified name.
00306          */
00307 
00308         // Create nontextual node
00309         OutputNode::Pointer node;
00310 
00311         CPPUNIT_ASSERT_NO_THROW(node = new OutputNode("node", OutputNode::DEFINITION));
00312         CPPUNIT_ASSERT(!node->hasAttribute("attribute"));
00313 
00314         // Create textual node
00315         CPPUNIT_ASSERT_NO_THROW(node = new OutputNode("This is a text."));
00316         CPPUNIT_ASSERT_THROW(node->hasAttribute("attribute"), ParCompMark::Exception);
00317 
00318         // Correct working tested in setAttribute method
00319   }
00320 
00321  /*----------------------------------------------------------------------*/
00322 
00323   void TestOutputNode::test_getAttribute_cstd__string()
00324   {
00325 
00326         /*
00327          * You have to verify the following:
00328          * 
00329          * Get an attribute by name.
00330          */
00331 
00332         // Create nontextual node
00333         OutputNode::Pointer node;
00334 
00335         CPPUNIT_ASSERT_NO_THROW(node = new OutputNode("node", OutputNode::DEFINITION));
00336         CPPUNIT_ASSERT_THROW(node->getAttribute("attribute"), ParCompMark::Exception);
00337 
00338         // Create textual node
00339         CPPUNIT_ASSERT_NO_THROW(node = new OutputNode("This is a text."));
00340         CPPUNIT_ASSERT_THROW(node->getAttribute("attribute"), ParCompMark::Exception);
00341 
00342         // Correct working tested in setAttribute method
00343   }
00344 
00345  /*----------------------------------------------------------------------*/
00346 
00347   void TestOutputNode::test_setAttribute_cstd__string_cstd__string()
00348   {
00349 
00350         /*
00351          * You have to verify the following:
00352          * 
00353          * Set attribute, also create if does not exists, overwrite otherwise.
00354          */
00355 
00356         // Create nontextual node
00357         OutputNode::Pointer node;
00358 
00359         CPPUNIT_ASSERT_NO_THROW(node = new OutputNode("node", OutputNode::DEFINITION));
00360         CPPUNIT_ASSERT(!node->hasAttribute("attribute"));
00361         CPPUNIT_ASSERT_NO_THROW(node->setAttribute("attribute", "value"));
00362         CPPUNIT_ASSERT(node->hasAttribute("attribute"));
00363         CPPUNIT_ASSERT(node->getAttribute("attribute") == "value");
00364         CPPUNIT_ASSERT_NO_THROW(node->setAttribute("attribute", "another value"));
00365         CPPUNIT_ASSERT(node->hasAttribute("attribute"));
00366         CPPUNIT_ASSERT(node->getAttribute("attribute") == "another value");
00367   }
00368 
00369  /*----------------------------------------------------------------------*/
00370 
00371   void TestOutputNode::test_serialize2XML_std__ostringstream()
00372   {
00373 
00374         /*
00375          * You have to verify the following:
00376          * 
00377          * Serialize the node to XML (this is a recursive method, calls the same methods of the children too).
00378          */
00379 
00380         OutputNode::Pointer node, child;
00381         std::ostringstream osstr1, osstr2;
00382         osstr1 << "testing ";
00383 
00384         // Create textual node
00385         CPPUNIT_ASSERT_NO_THROW(node = new OutputNode("This is a text."));
00386         CPPUNIT_ASSERT(node->serialize2XML(osstr1).str() == "testing This is a text.");
00387         CPPUNIT_ASSERT(node->serialize2XML(osstr1).str() == "testing This is a text.This is a text.");
00388 
00389         // Create nontextual node with attributes and children
00390         CPPUNIT_ASSERT_NO_THROW(node = new OutputNode("parent", OutputNode::DEFINITION));
00391         CPPUNIT_ASSERT_NO_THROW(node->setAttribute("attribute1", "value1"));
00392         CPPUNIT_ASSERT_NO_THROW(node->setAttribute("attribute2", "value2"));
00393         CPPUNIT_ASSERT_NO_THROW(child = node->createChildNode("child1", OutputNode::INFORMATION));
00394         CPPUNIT_ASSERT_NO_THROW(child = node->createChildNode("child2", OutputNode::STATISTICS));
00395         CPPUNIT_ASSERT_NO_THROW(child->setAttribute("attribute3", "value3"));
00396         CPPUNIT_ASSERT(node->serialize2XML(osstr2).str() ==
00397                    "<def:parent attribute1=\"value1\" attribute2=\"value2\"><info:child1/><stat:child2 attribute3=\"value3\"/></def:parent>");
00398 
00399   }
00400 
00401  /*----------------------------------------------------------------------*/
00402 
00403   void TestOutputNode::test_serialize2XML()
00404   {
00405 
00406         /*
00407          * You have to verify the following:
00408          * 
00409          * Serialize the node to XML (this is a recursive method, calls the same methods of the children too). Use the other version of this method with parameter std::ostringstream if it is possible for memory saving.
00410          */
00411 
00412         // Tested above
00413   }
00414 
00415  /*----------------------------------------------------------------------*/
00416 
00417   void TestOutputNode::test_refreshData()
00418   {
00419 
00420         /*
00421          * You have to verify the following:
00422          * 
00423          * Refresh datas.
00424          */
00425 
00426         // No need to test
00427   }
00428 
00429  /*----------------------------------------------------------------------*/
00430 
00431   void TestOutputNode::test_clean()
00432   {
00433 
00434         /*
00435          * You have to verify the following:
00436          * 
00437          * Clean outputnode.
00438          */
00439 
00440         CPPUNIT_FAIL("Implement this test!");
00441   }
00442 
00443  /*----------------------------------------------------------------------*/
00444 
00445   // To register the suite we add:
00447   CPPUNIT_TEST_SUITE_REGISTRATION(TestOutputNode);
00448 }