os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/testruloggerapi_ext.cpp
Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Example CTestStep derived implementation
19 @file testruloggerapi_ext.cpp
22 #include "testruloggerapi_ext.h"
23 #include "te_uloggerclientsuitedefs.h"
24 #include <uloggerdatatypes.h>
26 CTestRULoggerAPIStep::~CTestRULoggerAPIStep()
33 CTestRULoggerAPIStep::CTestRULoggerAPIStep()
38 // **MUST** call SetTestStepName in the constructor as the controlling
39 // framework uses the test step name immediately following construction to set
40 // up the step's unique logging ID.
42 SetTestStepName(KTestRULoggerAPIStep);
45 TVerdict CTestRULoggerAPIStep::doTestStepPreambleL()
47 * @return - TVerdict code
48 * Override of base class virtual
51 INFO_PRINTF1(_L("CTestRULoggerAPIStep -Extended API tests- started"));
53 TInt errCode = iUlogger.Connect();
54 if(errCode != KErrNone)
57 b.AppendFormat(_L("connect error: %d"), errCode);
58 SetTestStepResult(EFail);
61 SetTestStepResult(EPass);
63 CTestUloggerClientApiStepBase::doTestStepPreambleL();
64 return TestStepResult();
68 TVerdict CTestRULoggerAPIStep::doTestStepL()
70 * @return - TVerdict code
71 * Override of base class pure virtual
72 * Our implementation only gets called if the base class doTestStepPreambleL() did
73 * not leave. That being the case, the current test result value will be EPass.
76 if (TestStepResult()==EPass)
79 errors += SetGetPrimaryFiletr_TestL();
80 errors += SetGetSecondaryFiletr_TestL();
81 errors += SetGetSecondaryFiltering_TestL();
82 errors += SetGetOutputPlugin_TestL();
83 errors += GetInstalledOutputPlugins_TestL();
84 errors += SetGetInputPlugin_TestL();
85 errors += GetInstalledInputPlugins_TestL();
86 errors += SetGetRemovePluginConf_TestL();
87 errors += SetGetTraceBuffer_TestL();
92 SetTestStepResult(EFail);
94 b.AppendFormat(_L("%d errors were found !!!!"), errors);
99 SetTestStepResult(EPass);
100 INFO_PRINTF1(_L("CTestRULoggerAPIStep completed without problems."));
104 return TestStepResult();
107 TVerdict CTestRULoggerAPIStep::doTestStepPostambleL()
109 * @return - TVerdict code
110 * Override of base class virtual
113 INFO_PRINTF1(_L("CTestRULoggerAPIStep completed"));
114 CTestUloggerClientApiStepBase::doTestStepPostambleL();
116 return TestStepResult();
120 TInt CTestRULoggerAPIStep::SetGetPrimaryFiletr_TestL()
124 CArrayFixFlat<TUint8> *filters = new (ELeave) CArrayFixFlat<TUint8>(1);
125 CArrayFixFlat<TUint8> *gFilters = new (ELeave) CArrayFixFlat<TUint8>(1);
130 filters->AppendL((TUint8)i);
131 test = iUlogger.SetPrimaryFiltersEnabled(*filters, ETrue);
134 INFO_PRINTF2(_L("err: %d"), test);
135 INFO_PRINTF1(_L("set 256 filters - failed"));
140 test = iUlogger.GetPrimaryFiltersEnabled(*gFilters);
141 if(test!=KErrNone && gFilters->Count()!=256)
143 INFO_PRINTF2(_L("err: %d"), test);
144 INFO_PRINTF1(_L("get 256 filters - failed!"));
149 filters->AppendL((TUint8)257); //value doesn't matter
150 test = iUlogger.SetPrimaryFiltersEnabled(*filters, ETrue);
151 if(test != KErrArgument)
153 INFO_PRINTF2(_L("err: %d"), test);
154 INFO_PRINTF1(_L("set 257 filters - failed!"));
158 //get 257 filetrs (should be 256 vin array)
160 test = iUlogger.GetPrimaryFiltersEnabled(*gFilters);
161 if(test!=KErrNone && gFilters->Count()!=256)
163 INFO_PRINTF2(_L("err: %d"), test);
164 INFO_PRINTF1(_L("get 257 filters - failed!"));
169 test = iUlogger.SetPrimaryFiltersEnabled(*gFilters, EFalse);
172 INFO_PRINTF2(_L("err: %d"), test);
173 INFO_PRINTF1(_L("remove 256 filetrs - failed!"));
178 test = iUlogger.SetPrimaryFiltersEnabled(*filters, EFalse);
179 if(test != KErrArgument)
181 INFO_PRINTF2(_L("err: %d"), test);
182 INFO_PRINTF1(_L("remove 257 filetrs - failed!"));
189 //set empty array ETrue test
190 test = iUlogger.SetPrimaryFiltersEnabled(*filters, ETrue);
191 if(test != KErrArgument)
193 INFO_PRINTF2(_L("err: %d"), test);
194 INFO_PRINTF1(_L("set empty array ETrue test - failed!"));
198 //set empty array EFalse test
199 test = iUlogger.SetPrimaryFiltersEnabled(*filters, EFalse);
200 if(test != KErrArgument)
202 INFO_PRINTF2(_L("err: %d"), test);
203 INFO_PRINTF1(_L("set empty array EFalse test - failed!"));
207 //getting empty array
209 test = iUlogger.GetPrimaryFiltersEnabled(*gFilters);
210 if(test!=KErrNone && gFilters->Count()!=0)
212 INFO_PRINTF2(_L("err: %d"), test);
213 INFO_PRINTF1(_L("getting empty array - failed!"));
220 b.AppendFormat(_L("SetGetPrimaryFiletr_TestL failed with %d errors!!!"), err);
222 b.Append(_L("SetGetPrimaryFiletr_TestL passed"));
233 TInt CTestRULoggerAPIStep::SetGetSecondaryFiletr_TestL()
237 RArray<TUint32> filters;
238 RArray<TUint32> gFilters;
242 iUlogger.GetSecondaryFiltersEnabled(gFilters);
243 iUlogger.SetSecondaryFiltersEnabled(gFilters, EFalse);
247 for(i=0; i<4096; i++)
248 filters.AppendL((TUint32)i);
249 test = iUlogger.SetSecondaryFiltersEnabled(filters, ETrue);
252 INFO_PRINTF2(_L("err: %d"), test);
253 INFO_PRINTF1(_L("set 4096 filters - failed"));
258 test = iUlogger.GetSecondaryFiltersEnabled(gFilters);
259 if(test!=KErrNone && gFilters.Count()!=4096)
261 INFO_PRINTF2(_L("err: %d"), test);
262 INFO_PRINTF1(_L("get 4096 filters - failed!"));
267 filters.AppendL(4097); //value doesn't matter
268 test = iUlogger.SetSecondaryFiltersEnabled(filters, ETrue);
269 if(test != KErrArgument)
271 INFO_PRINTF2(_L("err: %d"), test);
272 INFO_PRINTF1(_L("set 4096+1 filters - failed!"));
276 //get 4096+1 filetrs (should be 4096 in array)
278 test = iUlogger.GetSecondaryFiltersEnabled(gFilters);
279 if(test!=KErrNone && gFilters.Count()!=4096)
281 INFO_PRINTF2(_L("err: %d"), test);
282 INFO_PRINTF1(_L("get 4096+1 filters - failed!"));
286 //remove 4096 filetrs
287 test = iUlogger.SetSecondaryFiltersEnabled(gFilters, EFalse);
290 INFO_PRINTF2(_L("err: %d"), test);
291 INFO_PRINTF1(_L("remove 4096 filetrs - failed!"));
295 //remove 4096+1 filetrs
296 test = iUlogger.SetSecondaryFiltersEnabled(filters, EFalse);
297 if(test != KErrArgument)
299 INFO_PRINTF2(_L("err: %d"), test);
300 INFO_PRINTF1(_L("remove 4096+1 filetrs - failed!"));
307 //set empty array ETrue test
308 test = iUlogger.SetSecondaryFiltersEnabled(filters, ETrue);
309 if(test != KErrArgument)
311 INFO_PRINTF2(_L("err: %d"), test);
312 INFO_PRINTF1(_L("set empty array ETrue test - failed!"));
316 //set empty array EFalse test
317 test = iUlogger.SetSecondaryFiltersEnabled(filters, EFalse);
318 if(test != KErrArgument)
320 INFO_PRINTF2(_L("err: %d"), test);
321 INFO_PRINTF1(_L("set empty array EFalse test - failed!"));
325 //getting empty array
327 test = iUlogger.GetSecondaryFiltersEnabled(gFilters);
328 if(test!=KErrNone && gFilters.Count()!=0)
330 INFO_PRINTF2(_L("err: %d"), test);
331 INFO_PRINTF1(_L("getting empty array - failed!"));
338 b.AppendFormat(_L("SetGetSecondaryFiletr_TestL failed with %d errors!!!"), err);
340 b.Append(_L("SetGetSecondaryFiletr_TestL passed"));
349 TInt CTestRULoggerAPIStep::SetGetSecondaryFiltering_TestL()
355 //set secondary filtering as ETrue
356 iUlogger.SetSecondaryFilteringEnabled(EFalse);
357 test = iUlogger.SetSecondaryFilteringEnabled(ETrue);
360 INFO_PRINTF2(_L("err: %d"), test);
361 INFO_PRINTF1(_L("set secondary filtering as ETrue - failed!"));
365 //set secondary filtering as ETrue again
366 test = iUlogger.SetSecondaryFilteringEnabled(ETrue);
369 INFO_PRINTF2(_L("err: %d"), test);
370 INFO_PRINTF1(_L("set secondary filtering as ETrue again - failed!"));
374 //get secondary filtering ETrue
375 test = iUlogger.GetSecondaryFilteringEnabled(val);
376 if(test != KErrNone || !val)
378 INFO_PRINTF2(_L("err: %d"), test);
379 INFO_PRINTF1(_L("get secondary filtering ETrue - failed!"));
383 //set secondary filtering as EFalse
384 test = iUlogger.SetSecondaryFilteringEnabled(EFalse);
387 INFO_PRINTF2(_L("err: %d"), test);
388 INFO_PRINTF1(_L("set secondary filtering as EFalse - failed!"));
392 //set secondary filtering as EFalse again
393 test = iUlogger.SetSecondaryFilteringEnabled(EFalse);
396 INFO_PRINTF2(_L("err: %d"), test);
397 INFO_PRINTF1(_L("set secondary filtering as EFalse again - failed!"));
401 //get secondary filtering EFalse
402 test = iUlogger.GetSecondaryFilteringEnabled(val);
403 if(test != KErrNone || val)
405 INFO_PRINTF2(_L("err: %d"), test);
406 INFO_PRINTF1(_L("get secondary filtering EFalse - failed!"));
413 b.AppendFormat(_L("SetGetSecondaryFiltering_TestL failed with %d errors!!!"), err);
415 b.Append(_L("SetGetSecondaryFiltering_TestL passed"));
420 TInt CTestRULoggerAPIStep::SetGetOutputPlugin_TestL()
423 TInt test = KErrNone;
425 _LIT8(KFilePlugin, "uloggerfileplugin");
426 _LIT8(KSerialPlugin, "uloggerserialplugin");
427 iUlogger.ActivateOutputPlugin(KSerialPlugin); //initial settings
429 //set uloggerfileplugin as output
430 test = iUlogger.ActivateOutputPlugin(KFilePlugin);
433 INFO_PRINTF2(_L("err: %d"), test);
434 INFO_PRINTF1(_L("set uloggerfileplugin as output - failed!"));
438 //get uloggerfileplugin
439 test = iUlogger.GetActiveOutputPlugin(plugin);
440 if(plugin.Compare(KFilePlugin) != 0 || test!=KErrNone)
442 INFO_PRINTF2(_L("err: %d"), test);
443 INFO_PRINTF1(_L("get uloggerfileplugin - failed!"));
447 //set uloggerfileplugin as output again
448 test = iUlogger.ActivateOutputPlugin(KFilePlugin);
449 if(test != KErrNone) //dont return an error although already exists isnt a "failure"
451 INFO_PRINTF2(_L("err: %d"), test);
452 INFO_PRINTF1(_L("set uloggerfileplugin as output again - failed!"));
457 //get uloggerfileplugin to small buf
458 test = iUlogger.GetActiveOutputPlugin(smallBuf);
459 if(test!=KErrOverflow)
461 INFO_PRINTF2(_L("err: %d"), test);
462 INFO_PRINTF1(_L("get uloggerfileplugin to small buf - failed!"));
470 b.AppendFormat(_L("SetGetOutputPlugin_TestL failed with %d errors!!!"), err);
472 b.Append(_L("SetGetOutputPlugin_TestL passed"));
477 TInt CTestRULoggerAPIStep::GetInstalledOutputPlugins_TestL()
480 TInt test = KErrNone;
482 CArrayPtrFlat<HBufC8>* plugins = new (ELeave) CArrayPtrFlat<HBufC8>(1);
483 test = iUlogger.GetInstalledOutputPlugins(*plugins);
486 INFO_PRINTF2(_L("err: %d"), test);
487 INFO_PRINTF1(_L("GetInstalledOutputPlugins_TestL - failed!"));
491 plugins->ResetAndDestroy();
498 b.AppendFormat(_L("GetInstalledOutputPlugins_TestL failed with %d errors!!!"), err);
500 b.Append(_L("GetInstalledOutputPlugins_TestL passed"));
505 TInt CTestRULoggerAPIStep::SetGetInputPlugin_TestL()
508 TInt test = KErrNone;
511 _LIT8(KFilePlugin, "uloggerfileplugin");
512 _LIT8(KUsbPlugin, "uloggerusbplugin");
513 iUlogger.DeActivateInputPlugin(); //set initial state
515 //set uloggerusbplugin as input
516 test = iUlogger.ActivateInputPlugin(KUsbPlugin);
517 if(test!=KErrNone && test!=KErrNotFound)
519 INFO_PRINTF2(_L("err: %d"), test);
520 INFO_PRINTF1(_L("set uloggerusbplugin as input - failed!"));
524 //set uloggerusbplugin as input again
525 test = iUlogger.ActivateInputPlugin(KUsbPlugin);
526 if(test!=KErrAlreadyExists && test!=KErrNotFound)
528 INFO_PRINTF2(_L("err: %d"), test);
529 INFO_PRINTF1(_L("set uloggerusbplugin as input again - failed!"));
533 //set uloggerfileplugin as input
534 test = iUlogger.ActivateInputPlugin(KFilePlugin);
535 if(test!=KErrNotFound)
537 INFO_PRINTF2(_L("err: %d"), test);
538 INFO_PRINTF1(_L("set uloggerfileplugin as input - failed!"));
543 test = iUlogger.ActivateInputPlugin(_L8(""));
544 if(test!=KErrArgument)
546 INFO_PRINTF2(_L("err: %d"), test);
547 INFO_PRINTF1(_L("set empty as inputt - failed!"));
551 //get active input plugin
552 test = iUlogger.GetActiveInputPlugin(plugin);
553 if(test!=KErrNone && test != KErrNotFound)
555 INFO_PRINTF2(_L("err: %d"), test);
556 INFO_PRINTF1(_L("get active input plugin - failed!"));
561 test = iUlogger.DeActivateInputPlugin();
562 if(test!=KErrNone && test != KErrNotFound)
564 INFO_PRINTF2(_L("err: %d"), test);
565 INFO_PRINTF1(_L("deactivate input - failed!"));
569 //deactivate input again
570 test = iUlogger.DeActivateInputPlugin();
571 if(test != KErrNotFound)
573 INFO_PRINTF2(_L("err: %d"), test);
574 INFO_PRINTF1(_L("deactivate input again - failed!"));
578 //get active input plugin again
579 test = iUlogger.GetActiveInputPlugin(plugin);
580 if(test != KErrNotFound)
582 INFO_PRINTF2(_L("err: %d"), test);
583 INFO_PRINTF1(_L("get active input plugin again - failed!"));
591 b.AppendFormat(_L("SetGetInputPlugin_TestL failed with %d errors!!!"), err);
593 b.Append(_L("SetGetInputPlugin_TestL passed"));
598 TInt CTestRULoggerAPIStep::GetInstalledInputPlugins_TestL()
601 TInt test = KErrNone;
603 CArrayPtrFlat<HBufC8> *plugins = new (ELeave) CArrayPtrFlat<HBufC8>(1);
604 test = iUlogger.GetInstalledInputPlugins(*plugins);
607 INFO_PRINTF2(_L("err: %d"), test);
608 INFO_PRINTF1(_L("GetInstalledInputPlugins - failed!"));
612 plugins->ResetAndDestroy();
619 b.AppendFormat(_L("GetInstalledInputPlugins_TestL failed with %d errors!!!"), err);
621 b.Append(_L("GetInstalledInputPlugins_TestL passed"));
626 TInt CTestRULoggerAPIStep::SetGetRemovePluginConf_TestL()
629 TInt test = KErrNone;
630 _LIT8(KFilePlugin, "uloggerfileplugin");
631 _LIT8(KDummyPlugin, "uloggerdummyplugin");
632 _LIT(KTestKey, "testKey");
633 _LIT(KTestVal, "testVal");
635 //set uloggerfileplugin settings
636 TPluginConfiguration conf;
637 conf.SetKey(KTestKey);
638 conf.SetValue(KTestVal);
639 test = iUlogger.SetPluginConfigurations(KFilePlugin, conf);
642 INFO_PRINTF2(_L("err: %d"), test);
643 INFO_PRINTF1(_L("set uloggerfileplugin settings - failed!"));
647 //check uloggerfileplugin settings
648 RPointerArray<TPluginConfiguration> confCheck;
649 test = iUlogger.GetPluginConfigurations(KFilePlugin, confCheck);
652 INFO_PRINTF2(_L("err: %d"), test);
653 INFO_PRINTF1(_L("check uloggerfileplugin settings - failed!"));
659 for(TInt i=0; i<confCheck.Count(); ++i)
661 TPluginConfiguration* check = confCheck[i];
662 INFO_PRINTF1(check->Key());
663 INFO_PRINTF1(check->Value());
664 if(!check->Key().Compare(KTestKey) && !check->Value().Compare(KTestVal))
672 INFO_PRINTF2(_L("err: %d"), test);
673 INFO_PRINTF1(_L("check uloggerfileplugin settings (wrong values) - failed!"));
677 confCheck.ResetAndDestroy();
681 //set uloggerdummyplugin settings
682 test = iUlogger.SetPluginConfigurations(KDummyPlugin, conf);
683 if(test != KErrNotFound)
685 INFO_PRINTF2(_L("err: %d"), test);
686 INFO_PRINTF1(_L("set uloggerdummyplugin settings - failed!"));
690 //pass empty descriptor
691 test = iUlogger.SetPluginConfigurations(_L8(""), conf);
692 if(test != KErrArgument)
694 INFO_PRINTF2(_L("err: %d"), test);
695 INFO_PRINTF1(_L("pass empty descriptor - failed!"));
700 //Get uloggerdummyplugin settings
701 RPointerArray<TPluginConfiguration> confCheck2;
702 test = iUlogger.GetPluginConfigurations(KDummyPlugin, confCheck2);
703 if(test != KErrNotFound)
705 INFO_PRINTF2(_L("err: %d"), test);
706 INFO_PRINTF1(_L("Get uloggerdummyplugin settings - failed!"));
709 confCheck2.ResetAndDestroy();
713 //Get emptyName settings
714 RPointerArray<TPluginConfiguration> confCheck3;
715 test = iUlogger.GetPluginConfigurations(_L8(""), confCheck3);
716 if(test != KErrArgument)
718 INFO_PRINTF2(_L("err: %d"), test);
719 INFO_PRINTF1(_L("Get emptyName settings - failed!"));
722 confCheck3.ResetAndDestroy();
726 //remove uloggerfileplugin settings
727 test = iUlogger.RemovePluginConfigurations(KFilePlugin);
728 if(test != KErrNone) //expected error
730 INFO_PRINTF2(_L("err: %d"), test);
731 INFO_PRINTF1(_L("remove uloggerfileplugin settings - failed!"));
735 //remove uloggerfileplugin settings again
736 test = iUlogger.RemovePluginConfigurations(KFilePlugin);
737 if(test != KErrNotFound) //expected error
739 INFO_PRINTF2(_L("err: %d"), test);
740 INFO_PRINTF1(_L("remove uloggerfileplugin settings again - failed!"));
744 //remove uloggerdummyplugin settings
745 test = iUlogger.RemovePluginConfigurations(KFilePlugin);
746 if(test != KErrNotFound) //expected error
748 INFO_PRINTF2(_L("err: %d"), test);
749 INFO_PRINTF1(_L("remove uloggerdummyplugin settings - failed!"));
753 //remove empty desc plugin settings
754 test = iUlogger.RemovePluginConfigurations(_L8(""));
755 if(test != KErrArgument) //expected error
757 INFO_PRINTF2(_L("err: %d"), test);
758 INFO_PRINTF1(_L("remove empty desc plugin settings - failed!"));
766 b.AppendFormat(_L("SetGetRemovePluginConf_TestL failed with %d errors!!!"), err);
768 b.Append(_L("SetGetRemovePluginConf_TestL passed"));
773 TInt CTestRULoggerAPIStep::SetGetTraceBuffer_TestL()
776 TInt test = KErrNone;
779 //test SetBufferSize(-1)
780 test = iUlogger.SetBufferSize(-1);
781 if(test != KErrArgument)
783 INFO_PRINTF2(_L("err: %d"), test);
784 INFO_PRINTF1(_L("test SetBufferSize(-1) - failed!"));
788 //test SetBufferSize(1025)
789 test = iUlogger.SetBufferSize(1025);
790 if(test != KErrArgument)
792 INFO_PRINTF2(_L("err: %d"), test);
793 INFO_PRINTF1(_L("test SetBufferSize(1025) - failed!"));
797 //test SetBufferSize(1000)
798 test = iUlogger.SetBufferSize(1000);
801 INFO_PRINTF2(_L("err: %d"), test);
802 INFO_PRINTF1(_L("test SetBufferSize(1000) - failed!"));
806 test = iUlogger.GetBufferSize(val);
807 if(test!=KErrNone || val != 1000)
809 INFO_PRINTF2(_L("err: %d"), test);
810 INFO_PRINTF1(_L("test GetBufferSize(val) - failed!"));
814 iUlogger.GetNotificationSize(val);
815 test = iUlogger.SetBufferSize(val-1);
816 if(test != KErrGeneral)
818 INFO_PRINTF2(_L("err: %d"), test);
819 INFO_PRINTF1(_L("test SetBufferSize(val-1) (less than dns) - failed!"));
826 b.AppendFormat(_L("SetGetTraceBuffer_TestL failed with %d errors!!!"), err);
828 b.Append(_L("SetGetTraceBuffer_TestL passed"));
833 TInt CTestRULoggerAPIStep::SetGetDnsBuffer_TestL()
836 TInt test = KErrNone;
839 test = iUlogger.SetNotificationSize(-1);
840 if(test != KErrArgument)
842 INFO_PRINTF2(_L("err: %d"), test);
843 INFO_PRINTF1(_L("test SetNotificationSize(-1) - failed!"));
847 test = iUlogger.SetNotificationSize(1025);
848 if(test != KErrArgument)
850 INFO_PRINTF2(_L("err: %d"), test);
851 INFO_PRINTF1(_L("test SetNotificationSize(1025) - failed!"));
855 test = iUlogger.SetNotificationSize(32);
858 INFO_PRINTF2(_L("err: %d"), test);
859 INFO_PRINTF1(_L("test SetNotificationSize(32) - failed!"));
863 iUlogger.GetBufferSize(val);
864 test = iUlogger.SetNotificationSize(val+1);
867 INFO_PRINTF2(_L("err: %d"), test);
868 INFO_PRINTF1(_L("test SetNotificationSize(val+1) (greater than buffer) - failed!"));
876 b.AppendFormat(_L("SetGetDnsBuffer_TestL failed with %d errors!!!"), err);
878 b.Append(_L("SetGetDnsBuffer_TestL passed"));
883 TInt CTestRULoggerAPIStep::SetGetBufferMode_TestL()
886 TInt test = KErrNone;
889 iUlogger.SetBufferMode(0);
890 test = iUlogger.SetBufferMode(1);
893 INFO_PRINTF2(_L("err: %d"), test);
894 INFO_PRINTF1(_L("test iUlogger.SetBufferMode(1) - failed!"));
898 test = iUlogger.SetBufferMode(1);
901 INFO_PRINTF2(_L("err: %d"), test);
902 INFO_PRINTF1(_L("test iUlogger.SetBufferMode(1) again - failed!"));
906 test = iUlogger.SetBufferMode(3);
907 if(test != KErrArgument)
909 INFO_PRINTF2(_L("err: %d"), test);
910 INFO_PRINTF1(_L("test iUlogger.iUlogger.SetBufferMode(3) (wrong) - failed!"));
914 test = iUlogger.GetBufferMode(val);
915 if(test != KErrNone || val != 1)
917 INFO_PRINTF2(_L("err: %d"), test);
918 INFO_PRINTF1(_L("test iUlogger.iUlogger.GetBufferMode(val) - failed!"));
925 b.AppendFormat(_L("SetGetBufferMode_TestL failed with %d errors!!!"), err);
927 b.Append(_L("SetGetBufferMode_TestL passed"));