Ignore:
Timestamp:
May 27, 2010, 10:46:54 AM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
1024cb
Parents:
8f215d (diff), 05a97c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'MoleculeStartEndSwitch' into StructureRefactoring

Conflicts:

molecuilder/src/Helpers/Assert.cpp
molecuilder/src/Helpers/Assert.hpp
molecuilder/src/Legacy/oldmenu.cpp
molecuilder/src/Makefile.am
molecuilder/src/Patterns/Cacheable.hpp
molecuilder/src/Patterns/Observer.cpp
molecuilder/src/Patterns/Observer.hpp
molecuilder/src/analysis_correlation.cpp
molecuilder/src/boundary.cpp
molecuilder/src/builder.cpp
molecuilder/src/config.cpp
molecuilder/src/helpers.hpp
molecuilder/src/molecule.cpp
molecuilder/src/molecule.hpp
molecuilder/src/molecule_dynamics.cpp
molecuilder/src/molecule_fragmentation.cpp
molecuilder/src/molecule_geometry.cpp
molecuilder/src/molecule_graph.cpp
molecuilder/src/moleculelist.cpp
molecuilder/src/tesselation.cpp
molecuilder/src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp
molecuilder/src/unittests/ObserverTest.cpp
molecuilder/src/unittests/ObserverTest.hpp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/unittests/ObserverTest.cpp

    r8f215d ra7b761b  
    1111#include <cppunit/extensions/TestFactoryRegistry.h>
    1212#include <cppunit/ui/text/TestRunner.h>
     13#include <set>
    1314
    1415#include "Patterns/Observer.hpp"
     16#include "Patterns/ObservedIterator.hpp"
    1517#include "Helpers/Assert.hpp"
    1618
     
    162164  bool wasNotified;
    163165};
     166
     167class ObservableCollection : public Observable {
     168public:
     169  typedef std::set<SimpleObservable*> set;
     170  typedef ObservedIterator<set> iterator;
     171  typedef set::const_iterator const_iterator;
     172
     173  ObservableCollection(int _num) :
     174  num(_num)
     175  {
     176    for(int i=0; i<num; ++i){
     177      SimpleObservable *content = new SimpleObservable();
     178      content->signOn(this);
     179      theSet.insert(content);
     180    }
     181  }
     182
     183  ~ObservableCollection(){
     184    set::iterator iter;
     185    for(iter=theSet.begin(); iter!=theSet.end(); ++iter ){
     186      delete (*iter);
     187    }
     188  }
     189
     190  iterator begin(){
     191    return iterator(theSet.begin(),this);
     192  }
     193
     194  iterator end(){
     195    return iterator(theSet.end(),this);
     196  }
     197
     198  const int num;
     199
     200private:
     201  set theSet;
     202};
     203
    164204
    165205/******************* actuall tests ***************/
     
    173213  blockObservable = new BlockObservable();
    174214  notificationObservable = new NotificationObservable();
     215  collection = new ObservableCollection(5);
    175216
    176217  observer1 = new UpdateCountObserver();
     
    181222  notificationObserver1 = new NotificationObserver(notificationObservable->notification1);
    182223  notificationObserver2 = new NotificationObserver(notificationObservable->notification2);
    183 
    184224}
    185225
     
    191231  delete blockObservable;
    192232  delete notificationObservable;
     233  delete collection;
    193234
    194235  delete observer1;
     
    277318  blockObservable->changeMethod2();
    278319  blockObservable->noChangeMethod();
     320}
     321
     322void ObserverTest::iteratorTest(){
     323  int i = 0;
     324  // test the general iterator methods
     325  for(ObservableCollection::iterator iter=collection->begin(); iter!=collection->end();++iter){
     326    CPPUNIT_ASSERT(i< collection->num);
     327    i++;
     328  }
     329
     330  i=0;
     331  for(ObservableCollection::const_iterator iter=collection->begin(); iter!=collection->end();++iter){
     332    CPPUNIT_ASSERT(i<collection->num);
     333    i++;
     334  }
     335
     336  collection->signOn(observer1);
     337  {
     338    // we construct this out of the loop, so the iterator dies at the end of
     339    // the scope and not the end of the loop (allows more testing)
     340    ObservableCollection::iterator iter;
     341    for(iter=collection->begin(); iter!=collection->end(); ++iter){
     342      (*iter)->changeMethod();
     343    }
     344    // At this point no change should have been propagated
     345    CPPUNIT_ASSERT_EQUAL( 0, observer1->updates);
     346  }
     347  // After the Iterator has died the propagation should take place
     348  CPPUNIT_ASSERT_EQUAL( 1, observer1->updates);
     349
     350  // when using a const_iterator no changes should be propagated
     351  for(ObservableCollection::const_iterator iter = collection->begin(); iter!=collection->end();++iter);
     352  CPPUNIT_ASSERT_EQUAL( 1, observer1->updates);
     353  collection->signOff(observer1);
    279354}
    280355
Note: See TracChangeset for help on using the changeset viewer.