File: NetworkTest.cxx

package info (click to toggle)
clam 1.4.0-5.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 17,780 kB
  • sloc: cpp: 92,499; python: 9,721; ansic: 1,602; xml: 444; sh: 239; makefile: 153; perl: 54; asm: 15
file content (957 lines) | stat: -rw-r--r-- 29,145 bytes parent folder | download | duplicates (2)
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
/*
* 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 <cppunit/extensions/HelperMacros.h>
#include "Processing.hxx" // CLAM
#include "Network.hxx" // CLAM
#include "BasicFlowControl.hxx" // CLAM
#include <string>
#include "BaseLoggable.hxx"
#include "InPort.hxx" // CLAM
#include "OutPort.hxx" // CLAM
#include "InControl.hxx" // CLAM
#include "OutControl.hxx" // CLAM
#include "DummyProcessingData.hxx"

#include "Oscillator.hxx" // CLAM
#include "AudioMultiplier.hxx" // CLAM
#include "MonoAudioFileReader.hxx" // CLAM
#include "AudioSink.hxx" // CLAM
#include "AudioSource.hxx" // CLAM
#include "AudioOut.hxx" // CLAM
#include "AudioIn.hxx" // CLAM

namespace CLAMTest {

class NetworkTest;
CPPUNIT_TEST_SUITE_REGISTRATION( NetworkTest );


class NetworkTest : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE( NetworkTest );
		
	CPPUNIT_TEST( testGetProcessing_WhenNoProcessings );
	CPPUNIT_TEST( testGetProcessing_WhenProcessingAdded );
	CPPUNIT_TEST( testGetProcessing_WithTwoProcessings );
	CPPUNIT_TEST( testAddProcessing_UsingFactory );
	CPPUNIT_TEST( testHasProcessing_WhenHasIt );
	CPPUNIT_TEST( testHasProcessing_WhenHasntIt );
	CPPUNIT_TEST( testDestructor_DeletesChildrenProcessings );

	// InPort 
	CPPUNIT_TEST( testGetInPortByCompleteName_WhenPortExist );
	CPPUNIT_TEST( testGetInPortByCompleteName_WhenPortDoesntExist );
	CPPUNIT_TEST( testGetInPortByCompleteName_WhenProcessingDoesntExist );
	CPPUNIT_TEST( testGetInPortByCompleteName_WhithMalformedName_WithNoDot );
	CPPUNIT_TEST( testGetInPortByCompleteName_WithThreeIdentifiers );

	// OutPort
	CPPUNIT_TEST( testGetOutPortByCompleteName_WhenPortExist );
	CPPUNIT_TEST( testGetOutPortByCompleteName_WhenPortDoesntExist );
	CPPUNIT_TEST( testGetOutPortByCompleteName_WhenProcessingDoesntExist );
	CPPUNIT_TEST( testGetOutPortByCompleteName_WhithMalformedName_WithNoDot );
	CPPUNIT_TEST( testGetOutPortByCompleteName_WithThreeIdentifiers );

	// InControl
	CPPUNIT_TEST( testGetInControlByCompleteName_WhenControlExist );
	CPPUNIT_TEST( testGetInControlByCompleteName_WhenControlDoesntExist );
	CPPUNIT_TEST( testGetInControlByCompleteName_WhenProcessingDoesntExist );
	CPPUNIT_TEST( testGetInControlByCompleteName_WhithMalformedName_WithNoDot );
	CPPUNIT_TEST( testGetInControlByCompleteName_WithThreeIdentifiers );

	// OutControl
	CPPUNIT_TEST( testGetOutControlByCompleteName_WhenControlExist );
	CPPUNIT_TEST( testGetOutControlByCompleteName_WhenControlDoesntExist );
	CPPUNIT_TEST( testGetOutControlByCompleteName_WhenProcessingDoesntExist );
	CPPUNIT_TEST( testGetOutControlByCompleteName_WhithMalformedName_WithNoDot );
	CPPUNIT_TEST( testGetOutControlByCompleteName_WithThreeIdentifiers );

	CPPUNIT_TEST( testConnectPorts_WhenConnectionIsValid );
	CPPUNIT_TEST( testConnectPorts_WhenConnectionIsNotValid );
	CPPUNIT_TEST( testRemovePortsConnection_WhenPortsAreNotConnected );
	CPPUNIT_TEST( testRemovePortsConnection_WhenPortsAreConnected );

	CPPUNIT_TEST( testRemoveProcessing_WhenHasIt );
	CPPUNIT_TEST( testRemoveProcessing_WhenHasntIt );

	CPPUNIT_TEST( testConnectControls_WhenConnectionIsValid );
	CPPUNIT_TEST( testConnectControls_WhenConnectionIsNotValid );
	CPPUNIT_TEST( testRemoveControlsConnection_WhenControlsAreNotConnected );
	CPPUNIT_TEST( testRemoveControlsConnection_WhenControlsAreConnected );

	// network state tests
	CPPUNIT_TEST( testStartNetworkStartsProcessings_WhenAreReady );
	CPPUNIT_TEST( testStartNetworkDoesntStartProcessings_WhenAreNotReady );	
	CPPUNIT_TEST( testStopNetworkStopsProcessings_WhenAreRunning );
	CPPUNIT_TEST( testStopNetworkDoesntStopProcessings_WhenAreNotRunning );

	CPPUNIT_TEST( testIsEmpty_whenEmpty );
	CPPUNIT_TEST( testIsEmpty_whenNotEmpty );
	CPPUNIT_TEST( testHasMisconfiguredProcessings_whenAllConfigured );
	CPPUNIT_TEST( testHasMisconfiguredProcessings_whenMisconfigured );

	CPPUNIT_TEST( testHasSyncSource_whenEmpty );
	CPPUNIT_TEST( testHasSyncSource_withExternalizer );
	CPPUNIT_TEST( testSyncSourceProcessings );
	
	CPPUNIT_TEST( testUseOfString_substr );


	CPPUNIT_TEST_SUITE_END();

	void testGetProcessing_WhenNoProcessings()
	{
		CLAM::Network net;

		try{
			net.GetProcessing(std::string("not existing processing"));
			CPPUNIT_FAIL("Assert expected, but no exception was thrown");
		}
		catch( CLAM::ErrAssertionFailed& )
		{}
	}

	class DummyProcessing : public CLAM::Processing
	{
		CLAM::InPort<int> mIn;
		const char* GetClassName() const
		{
			return "DummyProcessing";
		}
		bool ConcreteConfigure( const CLAM::ProcessingConfig & cfg)
		{
			return true;
		}
		bool Do()
		{
			return false;
		}
	public:
		DummyProcessing() : mIn("Dummy In", this)
		{
		}
		

	};

	void testGetProcessing_WhenProcessingAdded()
	{
		CLAM::Network net;
			
		CLAM::Processing* proc = new DummyProcessing;
		std::string name( "dummy-processing" );
		net.AddProcessing( name, proc );

		CPPUNIT_ASSERT_EQUAL ( proc, &net.GetProcessing( name ) );
	}

	void testAddProcessing_UsingFactory()
	{
		CLAM::Network net;
			
		std::string name( "oscillator" );
		std::string key( "Oscillator" );
		net.AddProcessing( name, key );

		CPPUNIT_ASSERT_EQUAL ( true , net.HasProcessing( name ) );
	}


	void testGetProcessing_WithTwoProcessings()
	{
		CLAM::Network net;
	
		CLAM::Processing* proc = new DummyProcessing;
		std::string name1( "the first" );
		net.AddProcessing( name1, proc );

		CLAM::Processing* proc2 = new DummyProcessing;
		net.AddProcessing( std::string("the second"),proc2 );

		CPPUNIT_ASSERT_EQUAL( proc, &net.GetProcessing( name1 ) );
	}

	void testHasProcessing_WhenHasIt()
	{
		CLAM::Network net;
		
		std::string name("the name");
		net.AddProcessing( name,  new DummyProcessing );

		CPPUNIT_ASSERT_EQUAL( true, net.HasProcessing( name ) );
	}

	void testHasProcessing_WhenHasntIt()
	{
		CLAM::Network net;
		CPPUNIT_ASSERT_EQUAL( false, net.HasProcessing(std::string("non-existing") ) );
	}

	class LoggableDummyProcessing : public DummyProcessing
	{
		BaseLoggable& mLog;
	public:
		LoggableDummyProcessing( BaseLoggable& log ) :
			mLog(log)
		{}
		~LoggableDummyProcessing() {
			mLog.ToLog() << this << " deleted\n";
		}
	};

	void testDestructor_DeletesChildrenProcessings()
	{
		BaseLoggable log;
		LoggableDummyProcessing* proc1 = new LoggableDummyProcessing(log);
		LoggableDummyProcessing* proc2 = new LoggableDummyProcessing(log);
		
		CLAM::Network* net = new CLAM::Network;
	
		net->AddProcessing( std::string("first"), proc1 );
		net->AddProcessing( std::string("second"), proc2 );
		delete net;

		std::ostringstream expected;
		expected << proc1 << " deleted\n" << proc2 << " deleted\n";

		CPPUNIT_ASSERT_EQUAL(expected.str(), log.GetLog() );
	}

	// helper model-class-adapter
	class NetworkProtectedInterfacePublisher : public CLAM::Network
	{
	public:
		CLAM::InPortBase & GetInPortByCompleteName( const std::string& name )
		{	
			return Network::GetInPortByCompleteName( name );
		}
		CLAM::OutPortBase & GetOutPortByCompleteName( const std::string& name )
		{	
			return Network::GetOutPortByCompleteName( name );
		}	
		CLAM::InControlBase & GetInControlByCompleteName( const std::string& name )
		{	
			return Network::GetInControlByCompleteName( name );
		}	
		CLAM::OutControlBase & GetOutControlByCompleteName( const std::string& name )
		{	
			return Network::GetOutControlByCompleteName( name );
		}


	};



	///////////////////////////////////////////
	//////////   GetInPort testing  ///////////
	///////////////////////////////////////////

	void testGetInPortByCompleteName_WhenPortExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		DummyProcessing* theProc = new DummyProcessing;
		net.AddProcessing( "theOnlyProcessing", theProc );
		CLAM::InPortBase * expectedInPort = new CLAM::InPort<DummyProcessingData>( std::string("theOnlyInPort"), theProc );
		
		// exercice and test
		CPPUNIT_ASSERT_EQUAL( 
			expectedInPort, 
			&net.GetInPortByCompleteName( std::string("theOnlyProcessing.theOnlyInPort") ) 
		);
	}

	void testGetInPortByCompleteName_WhenPortDoesntExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		net.AddProcessing( "theOnlyProcessing", new DummyProcessing );

		// exercice and test
		try {
			net.GetInPortByCompleteName( std::string("theOnlyProcessing.NonExistingPort") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "No in port named 'NonExistingPort'.\nTry with: 'Dummy In'"),
				std::string( expected.what() ) );

		}
	}

	void testGetInPortByCompleteName_WhenProcessingDoesntExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;
		
		// exercice and test
		try {
			net.GetInPortByCompleteName( std::string("NonExistingProcessing.NonExistingPort") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "No processing in the network has the name 'NonExistingProcessing'." ), 
				std::string( expected.what() ) );
		}
	}

	void testGetInPortByCompleteName_WhithMalformedName_WithNoDot()
	{
		//set up
		NetworkProtectedInterfacePublisher net;
		
		// exercice and test
		try {
			net.GetInPortByCompleteName( std::string("TheNameShould_ContainADot") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "Malformed port/control name. It should be ProcessingName.[Port/Control]Name" ), 
				std::string( expected.what() ) );

		}
	}
	
	void testGetInPortByCompleteName_WithThreeIdentifiers()
	{
		//set up
		NetworkProtectedInterfacePublisher net;
		
		DummyProcessing* theProc = new DummyProcessing;
		net.AddProcessing( "theOnlyProcessing", theProc );
		CLAM::InPortBase * expectedInPort = new CLAM::InPort<DummyProcessingData>( std::string("theOnlyInPort"), theProc );
		
		// exercice and test
		CPPUNIT_ASSERT_EQUAL( 
			expectedInPort, 
			&net.GetInPortByCompleteName( std::string("nonExistingNetwork.theOnlyProcessing.theOnlyInPort") ) 
		);
	}

	///////////////////////////////////////////
	//////////   GetOutPort testing  //////////
	///////////////////////////////////////////


	void testGetOutPortByCompleteName_WhenPortExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		DummyProcessing* theProc = new DummyProcessing;
		net.AddProcessing( "theOnlyProcessing", theProc );
		CLAM::OutPortBase * expectedOutPort = new CLAM::OutPort<DummyProcessingData>( std::string("theOnlyOutPort"), theProc );
		// exercice and test
		CPPUNIT_ASSERT_EQUAL( 
			expectedOutPort, 
			&net.GetOutPortByCompleteName( std::string("theOnlyProcessing.theOnlyOutPort") ) 
		);
	}

	void testGetOutPortByCompleteName_WhenPortDoesntExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		net.AddProcessing( "theOnlyProcessing", new DummyProcessing );

		// exercice and test
		try {
			net.GetOutPortByCompleteName( std::string("theOnlyProcessing.NonExistingPort") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "No out port named 'NonExistingPort'.\nTry with: "), 
				std::string( expected.what() ) );

		}
	}

	void testGetOutPortByCompleteName_WhenProcessingDoesntExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;
		
		// exercice and test
		try {
			net.GetOutPortByCompleteName( std::string("NonExistingProcessing.NonExistingPort") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "No processing in the network has the name 'NonExistingProcessing'." ), 
				std::string( expected.what() ) );

		}
	}

	void testGetOutPortByCompleteName_WhithMalformedName_WithNoDot()
	{
		//set up
		NetworkProtectedInterfacePublisher net;
		
		// exercice and test
		try {
			net.GetOutPortByCompleteName( std::string("TheNameShould_ContainADot") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "Malformed port/control name. It should be ProcessingName.[Port/Control]Name" ), 
				std::string( expected.what() ) );

		}
	}
	
	void testGetOutPortByCompleteName_WithThreeIdentifiers()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		DummyProcessing* theProc = new DummyProcessing;
		net.AddProcessing( "theOnlyProcessing", theProc );
		CLAM::OutPortBase * expectedOutPort = new CLAM::OutPort<DummyProcessingData>( std::string("theOnlyOutPort"), theProc );
		// exercice and test
		CPPUNIT_ASSERT_EQUAL( 
			expectedOutPort, 
			&net.GetOutPortByCompleteName( std::string("nonExistingNetwork.theOnlyProcessing.theOnlyOutPort") ) 
		);
	}


	///////////////////////////////////////////
	//////////   GetInControl testing  ///////////
	///////////////////////////////////////////

	void testGetInControlByCompleteName_WhenControlExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		DummyProcessing* theProc = new DummyProcessing;
		net.AddProcessing( "theOnlyProcessing", theProc );
		CLAM::InControlBase * expectedInControl = 
			new CLAM::FloatInControl( std::string("theOnlyInControl"), theProc );
	
		// exercice and test
		CPPUNIT_ASSERT_EQUAL( 
			expectedInControl, 
			&net.GetInControlByCompleteName( std::string("theOnlyProcessing.theOnlyInControl") ) 
		);

		// tear down
		delete expectedInControl;
	}

	void testGetInControlByCompleteName_WhenControlDoesntExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		net.AddProcessing( "theOnlyProcessing", new DummyProcessing );

		// exercice and test
		try {
			net.GetInControlByCompleteName( std::string("theOnlyProcessing.NonExistingControl") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "No in control named 'NonExistingControl'.\nTry with: " ), 
				std::string( expected.what() ) );

		}
	}

	void testGetInControlByCompleteName_WhenProcessingDoesntExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;
		
		// exercice and test
		try {
			net.GetInControlByCompleteName( std::string("NonExistingProcessing.NonExistingControl") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "No processing in the network has the name 'NonExistingProcessing'." ), 
				std::string( expected.what() ) );

		}
	}

	void testGetInControlByCompleteName_WhithMalformedName_WithNoDot()
	{
		//set up
		NetworkProtectedInterfacePublisher net;
		
		// exercice and test
		try {
			net.GetInControlByCompleteName( std::string("TheNameShould_ContainADot") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "Malformed port/control name. It should be ProcessingName.[Port/Control]Name" ), 
				std::string( expected.what() ) );

		}
	}
	
	void testGetInControlByCompleteName_WithThreeIdentifiers()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		DummyProcessing* theProc = new DummyProcessing;
		net.AddProcessing( "theOnlyProcessing", theProc );
		CLAM::InControlBase* expectedInControl = 
			new CLAM::FloatInControl( std::string("theOnlyInControl"), theProc );
	
		// exercice and test
		CPPUNIT_ASSERT_EQUAL( 
			expectedInControl, 
			&net.GetInControlByCompleteName( std::string("nonExistingNetwork.theOnlyProcessing.theOnlyInControl") ) 
		);

		// tear down
		delete expectedInControl;
	}



	///////////////////////////////////////////
	//////////   GetOutControl testing  ///////////
	///////////////////////////////////////////

	void testGetOutControlByCompleteName_WhenControlExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		DummyProcessing* theProc = new DummyProcessing;
		net.AddProcessing( "theOnlyProcessing", theProc );
		CLAM::OutControlBase* expectedOutControl = 
			new CLAM::FloatOutControl( std::string("theOnlyOutControl"), theProc );
	
		// exercice and test
		CPPUNIT_ASSERT_EQUAL( 
			expectedOutControl, 
			&net.GetOutControlByCompleteName( std::string("theOnlyProcessing.theOnlyOutControl") ) 
		);

		// tear down
		delete expectedOutControl;
	}

	void testGetOutControlByCompleteName_WhenControlDoesntExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		net.AddProcessing( "theOnlyProcessing", new DummyProcessing );

		// exercice and test
		try {
			net.GetOutControlByCompleteName( std::string("theOnlyProcessing.NonExistingControl") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "No out control named 'NonExistingControl'.\nTry with: " ), 
				std::string( expected.what() ) );

		}
	}

	void testGetOutControlByCompleteName_WhenProcessingDoesntExist()
	{
		//set up
		NetworkProtectedInterfacePublisher net;
		
		// exercice and test
		try {
			net.GetOutControlByCompleteName( std::string("NonExistingProcessing.NonExistingControl") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "No processing in the network has the name 'NonExistingProcessing'." ), 
				std::string( expected.what() ) );

		}
	}

	void testGetOutControlByCompleteName_WhithMalformedName_WithNoDot()
	{
		//set up
		NetworkProtectedInterfacePublisher net;
		
		// exercice and test
		try {
			net.GetOutControlByCompleteName( std::string("TheNameShould_ContainADot") );
			CPPUNIT_FAIL("Expected assert, but didn't happened");
		}
		catch( CLAM::ErrAssertionFailed& expected) {
			CPPUNIT_ASSERT_EQUAL( 
				std::string( "Malformed port/control name. It should be ProcessingName.[Port/Control]Name" ), 
				std::string( expected.what() ) );

		}
	}
	
	void testGetOutControlByCompleteName_WithThreeIdentifiers()
	{
		//set up
		NetworkProtectedInterfacePublisher net;

		DummyProcessing* theProc = new DummyProcessing;
		net.AddProcessing( "theOnlyProcessing", theProc );
		CLAM::OutControlBase* expectedOutControl = 
			new CLAM::FloatOutControl( std::string("theOnlyOutControl"), theProc );
	
		// exercice and test
		CPPUNIT_ASSERT_EQUAL( 
			expectedOutControl, 
			&net.GetOutControlByCompleteName( std::string("nonExistingNetwork.theOnlyProcessing.theOnlyOutControl") ) 
		);

		// tear down
		delete expectedOutControl;
	}

	void testUseOfString_substr()
	{
		std::string today("today it rains");
		CPPUNIT_ASSERT_EQUAL( std::string("it"), today.substr(6,2) );
	}

	void testConnectPorts_WhenConnectionIsValid()
	{
		CLAM::Network net;
	
		DummyProcessing* firstProc = new DummyProcessing;
		DummyProcessing* secondProc = new DummyProcessing;

		net.AddProcessing( "first", firstProc );
		net.AddProcessing( "second", secondProc );

		CLAM::OutPortBase * outPortOfFirstProc = 
			new CLAM::OutPort<DummyProcessingData>( std::string("outPortOfFirstProc"), firstProc );
		CLAM::InPortBase * inPortOfSecondProc = 
			new CLAM::InPort<DummyProcessingData>( std::string("inPortOfSecondProc"), secondProc );
		
		net.ConnectPorts("first.outPortOfFirstProc","second.inPortOfSecondProc");
		CPPUNIT_ASSERT_EQUAL( true, outPortOfFirstProc->IsVisuallyConnectedTo(*inPortOfSecondProc) );
	}

	void testConnectPorts_WhenConnectionIsNotValid()
	{
		CLAM::Network net;
	
		DummyProcessing* firstProc = new DummyProcessing;
		DummyProcessing* secondProc = new DummyProcessing;

		net.AddProcessing( "first", firstProc );
		net.AddProcessing( "second", secondProc );
	
		CLAM::OutPortBase * outPortOfFirstProc = 
			new CLAM::OutPort<DummyProcessingData>( std::string("outPortOfFirstProc"), firstProc );
		CLAM::InPortBase * inPortOfSecondProc = 
			new CLAM::InPort<int>( std::string("inPortOfSecondProc"), secondProc );
		
		CPPUNIT_ASSERT_EQUAL( false, net.ConnectPorts(
					      "first.outPortOfFirstProc","second.inPortOfSecondProc") );
	}

	void testRemovePortsConnection_WhenPortsAreNotConnected()
	{
		CLAM::Network net;
	
		DummyProcessing* firstProc = new DummyProcessing;
		DummyProcessing* secondProc = new DummyProcessing;

		net.AddProcessing( "first", firstProc );
		net.AddProcessing( "second", secondProc );
	
		CLAM::OutPortBase * outPortOfFirstProc = 
			new CLAM::OutPort<DummyProcessingData>( std::string("outPortOfFirstProc"), firstProc );
		CLAM::InPortBase * inPortOfSecondProc = 
			new CLAM::InPort<DummyProcessingData>( std::string("inPortOfSecondProc"), secondProc );
		
		CPPUNIT_ASSERT_EQUAL( false, net.DisconnectPorts(
					      "first.outPortOfFirstProc","second.inPortOfSecondProc") );
	}

	void testRemovePortsConnection_WhenPortsAreConnected()
	{
		CLAM::Network net;
	
		DummyProcessing* firstProc = new DummyProcessing;
		DummyProcessing* secondProc = new DummyProcessing;

		net.AddProcessing( "first", firstProc );
		net.AddProcessing( "second", secondProc );

		CLAM::OutPortBase * outPortOfFirstProc = 
			new CLAM::OutPort<DummyProcessingData>( std::string("outPortOfFirstProc"), firstProc );
		CLAM::InPortBase * inPortOfSecondProc = 
			new CLAM::InPort<DummyProcessingData>( std::string("inPortOfSecondProc"), secondProc );
			
		net.ConnectPorts("first.outPortOfFirstProc","second.inPortOfSecondProc");
		net.DisconnectPorts( "first.outPortOfFirstProc","second.inPortOfSecondProc");
		CPPUNIT_ASSERT_EQUAL( false, outPortOfFirstProc->IsVisuallyConnectedTo(*inPortOfSecondProc) );

	}

	void testRemoveProcessing_WhenHasIt()
	{
		CLAM::Network net;
	
		DummyProcessing* proc = new DummyProcessing;

		net.AddProcessing( "the processing", proc );
		net.RemoveProcessing( "the processing" );
		CPPUNIT_ASSERT_EQUAL( false, net.HasProcessing( "the processing" ));
	}

	void testRemoveProcessing_WhenHasntIt()
	{
		CLAM::Network net;
	
		DummyProcessing* proc = new DummyProcessing;

		net.AddProcessing( "the processing", proc );

		try{ 
			net.RemoveProcessing( "false processing" );
			CPPUNIT_FAIL("Assert expected, but no exception was thrown");
		}
		catch( CLAM::ErrAssertionFailed& )
		{}
	}

	void testConnectControls_WhenConnectionIsValid()
	{

		CLAM::Network net;
	
		DummyProcessing* firstProc = new DummyProcessing;
		DummyProcessing* secondProc = new DummyProcessing;

		net.AddProcessing( "first", firstProc );
		net.AddProcessing( "second", secondProc );

		const int dummyLength = 1;
		CLAM::OutControlBase* outControlOfFirstProc =  
			new CLAM::FloatOutControl( std::string("outControlOfFirstProc"), firstProc );

		CLAM::InControlBase* inControlOfSecondProc = 
			new CLAM::FloatInControl( std::string("inControlOfSecondProc"), secondProc );
		
		net.ConnectControls("first.outControlOfFirstProc","second.inControlOfSecondProc");
		CPPUNIT_ASSERT_EQUAL( true, outControlOfFirstProc->IsConnectedTo(*inControlOfSecondProc) );
	}

	void testConnectControls_WhenConnectionIsNotValid()
	{
		CLAM::Network net;
	
		DummyProcessing* firstProc = new DummyProcessing;
		DummyProcessing* secondProc = new DummyProcessing;

		net.AddProcessing( "first", firstProc );
		net.AddProcessing( "second", secondProc );

		const int dummyLength = 1;
		CLAM::OutControlBase* outControlOfFirstProc =  
			new CLAM::FloatOutControl( std::string("outControlOfFirstProc"), firstProc );

		CLAM::InControlBase* inControlOfSecondProc = 
			new CLAM::FloatInControl( std::string("inControlOfSecondProc"), secondProc );
		
		CPPUNIT_ASSERT_EQUAL( false, outControlOfFirstProc->IsConnectedTo(*inControlOfSecondProc) );
	}

	void testRemoveControlsConnection_WhenControlsAreNotConnected()
	{
		CLAM::Network net;
	
		DummyProcessing* firstProc = new DummyProcessing;
		DummyProcessing* secondProc = new DummyProcessing;

		net.AddProcessing( "first", firstProc );
		net.AddProcessing( "second", secondProc );

		const int dummyLength = 1;
		CLAM::OutControlBase* outControlOfFirstProc =  
			new CLAM::FloatOutControl( std::string("outControlOfFirstProc"), firstProc );

		CLAM::InControlBase* inControlOfSecondProc = 
			new CLAM::FloatInControl( std::string("inControlOfSecondProc"), secondProc );
		
		CPPUNIT_ASSERT_EQUAL( false, net.DisconnectControls( "first.outControlOfFirstProc","second.inControlOfSecondProc"  ));

	}

	void testRemoveControlsConnection_WhenControlsAreConnected()
	{		
		CLAM::Network net;
	
		DummyProcessing* firstProc = new DummyProcessing;
		DummyProcessing* secondProc = new DummyProcessing;

		net.AddProcessing( "first", firstProc );
		net.AddProcessing( "second", secondProc );

		const int dummyLength = 1;
		CLAM::OutControlBase* outControlOfFirstProc =  
			new CLAM::FloatOutControl( std::string("outControlOfFirstProc"), firstProc );

		CLAM::InControlBase* inControlOfSecondProc = 
			new CLAM::FloatInControl( std::string("inControlOfSecondProc"), secondProc );
		
		net.ConnectControls("first.outControlOfFirstProc","second.inControlOfSecondProc");
		CPPUNIT_ASSERT_EQUAL( true, net.DisconnectControls( "first.outControlOfFirstProc","second.inControlOfSecondProc" ));

	}

	void testStartNetworkStartsProcessings_WhenAreReady()
	{
		CLAM::Network net;

		CLAM::SimpleOscillator * oscillator = new CLAM::SimpleOscillator;
		CLAM::AudioMultiplier * multiplier = new CLAM::AudioMultiplier;
		net.AddProcessing( "oscillator", oscillator) ;
		net.AddProcessing( "multiplier", multiplier );
		net.Start();

		CPPUNIT_ASSERT( oscillator->IsRunning() );
		CPPUNIT_ASSERT( multiplier->IsRunning() );
		

	}

	void testStartNetworkDoesntStartProcessings_WhenAreNotReady()
	{
		CLAM::Network net;

		CLAM::SimpleOscillator * oscillator = new CLAM::SimpleOscillator;
		CLAM::MonoAudioFileReader * filein = new CLAM::MonoAudioFileReader;
		net.AddProcessing( "oscillator", oscillator) ;
		net.AddProcessing( "filein", filein );
		net.Start();

		CPPUNIT_ASSERT( oscillator->IsRunning() );
		CPPUNIT_ASSERT( !filein->IsConfigured() );
	}

	void testStopNetworkStopsProcessings_WhenAreRunning()
	{
		CLAM::Network net;

		CLAM::SimpleOscillator * oscillator = new CLAM::SimpleOscillator;
		CLAM::AudioMultiplier * multiplier = new CLAM::AudioMultiplier;
		net.AddProcessing( "oscillator", oscillator) ;
		net.AddProcessing( "multiplier", multiplier );
		net.Start();
		net.Stop();
		
		CPPUNIT_ASSERT( !oscillator->IsRunning() );
		CPPUNIT_ASSERT( oscillator->IsConfigured() );
		CPPUNIT_ASSERT( !multiplier->IsRunning() );
		CPPUNIT_ASSERT( multiplier->IsConfigured() );

	}

	void testStopNetworkDoesntStopProcessings_WhenAreNotRunning()
	{	
		CLAM::Network net;

		CLAM::SimpleOscillator * oscillator = new CLAM::SimpleOscillator;
		CLAM::MonoAudioFileReader * filein = new CLAM::MonoAudioFileReader;
		net.AddProcessing( "oscillator", oscillator) ;
		net.AddProcessing( "filein", filein );
		net.Start();
		net.Stop();

		CPPUNIT_ASSERT( !oscillator->IsRunning() );
		CPPUNIT_ASSERT( oscillator->IsConfigured() );
		CPPUNIT_ASSERT( !filein->IsConfigured() );
	}

	void testIsEmpty_whenEmpty()
	{
		CLAM::Network net;
		CPPUNIT_ASSERT_EQUAL( true, net.IsEmpty() );
	}

	void testIsEmpty_whenNotEmpty()
	{
		CLAM::Network net;
		net.AddProcessing( "Oscillator", new CLAM::Oscillator ) ;
		CPPUNIT_ASSERT_EQUAL( false, net.IsEmpty() );
	}

	void testHasMisconfiguredProcessings_whenAllConfigured()
	{
		CLAM::Network net;
		net.AddProcessing( "Oscillator", new CLAM::Oscillator ) ;
		CPPUNIT_ASSERT_EQUAL( false, net.HasMisconfiguredProcessings() );
	}
	void testHasMisconfiguredProcessings_whenMisconfigured()
	{
		CLAM::Network net;
		net.AddProcessing( "Oscillator", new CLAM::Oscillator ) ;
		net.AddProcessing( "FileIn", new CLAM::MonoAudioFileReader ) ;
		CPPUNIT_ASSERT_EQUAL( true, net.HasMisconfiguredProcessings() );
	}
	void testHasSyncSource_whenEmpty()
	{	
		CLAM::Network net;
		CPPUNIT_ASSERT_EQUAL( false, net.HasSyncSource() );
	}
	void testHasSyncSource_withExternalizer()
	{	
		CLAM::Network net;
		net.AddProcessing( "AudioSink", new CLAM::AudioSink  );
		CPPUNIT_ASSERT_EQUAL( false, net.HasSyncSource() );
	}
	void testSyncSourceProcessings()
	{
		CPPUNIT_ASSERT_EQUAL_MESSAGE( "AudioSink", false, CLAM::AudioSink().IsSyncSource() );
		CPPUNIT_ASSERT_EQUAL_MESSAGE( "AudioSource", false, CLAM::AudioSource().IsSyncSource() );
		CPPUNIT_ASSERT_EQUAL_MESSAGE( "AudioIn", true, CLAM::AudioIn().IsSyncSource() );
		CPPUNIT_ASSERT_EQUAL_MESSAGE( "AudioOut", true, CLAM::AudioOut().IsSyncSource() );
	}
};
   
} // namespace