-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestMakefile
1778 lines (1572 loc) · 71.2 KB
/
TestMakefile
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
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#//%LICENSE////////////////////////////////////////////////////////////////
#//
#// Licensed to The Open Group (TOG) under one or more contributor license
#// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
#// this work for additional information regarding copyright ownership.
#// Each contributor licenses this file to you under the OpenPegasus Open
#// Source License; you may not use this file except in compliance with the
#// License.
#//
#// Permission is hereby granted, free of charge, to any person obtaining a
#// copy of this software and associated documentation files (the "Software"),
#// to deal in the Software without restriction, including without limitation
#// the rights to use, copy, modify, merge, publish, distribute, sublicense,
#// and/or sell copies of the Software, and to permit persons to whom the
#// Software is furnished to do so, subject to the following conditions:
#//
#// The above copyright notice and this permission notice shall be included
#// in all copies or substantial portions of the Software.
#//
#// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
#// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
#// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
#// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
#// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
#// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
#// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#//
#//////////////////////////////////////////////////////////////////////////
###############################################################################
##
## Test Makefile for Pegasus CIMOM
##
## see the usage rule for documentation of rules etc.
##
##
###############################################################################
error:
@ $(ECHO) "Specify desired makefile option (i.e., unittests, usage )"
include $(PEGASUS_ROOT)/mak/config.mak
include $(PEGASUS_ROOT)/mak/test.mak
include $(PEGASUS_ROOT)/mak/commands.mak
system = localhost
.PHONY: FORCE
FORCE:
usage: FORCE
$(USAGE)
$(USAGE)"TestMakefile Primary Targets:"
$(USAGE)
$(USAGE)"The following are all standalone tests. They stop and start the server,"
$(USAGE)"and build repositories as needed."
$(USAGE)
$(USAGE)"alltests - Execute unittests and servertests"
$(USAGE)"unittests - Execute the unit functional tests - no repository"
$(USAGE)" or active server is required"
$(USAGE)"servertests - Execute a basic server test suites (No security, No SSL)"
$(USAGE)"standardtests - Execute an extended server test suites "
$(USAGE)" using multiple options."
$(USAGE)"perftests - Executes a brief server performance test"
$(USAGE)
$(USAGE)"usage2 - usage on secondary test targets"
$(USAGE)"usagetrace - usage on trace targets"
$(USAGE)"stresstests - Execute the default stress test suite"
$(USAGE)
usage2: FORCE
$(USAGE)
$(USAGE)"TestMakefile Secondary Targets:"
$(USAGE)
$(USAGE)"The following are run as part of the Primary target test suites and may"
$(USAGE)"also be invoked as standalone tests."
$(USAGE)
$(USAGE)"TestXMLRepository - Executes poststarttests on XML repository"
$(USAGE)" built with cimmofl."
$(USAGE)"TestXMLRepositoryServer - Executes poststarttests on XML repository"
$(USAGE)" built with cimmof."
$(USAGE)"TestXMLCmpRepository - Executes poststarttests on XML compressed"
$(USAGE)" repository built with cimmofl."
$(USAGE)"TestBinRepository - Executes poststarttests on binary repository "
$(USAGE)" built with cimmofl."
$(USAGE)"TestBinRepositoryServer - Executes poststarttests on binary repository"
$(USAGE)" built with cimmof."
$(USAGE)"TestBinCmpRepository - Executes poststarttests on binary compressed"
$(USAGE)" repository built with cimmofl."
$(USAGE)
$(USAGE)"The following require the repository to be pre-built."
$(USAGE)
$(USAGE)"run_SSL_CBA_TS1 - Executes the Certificate based authentication test suite."
$(USAGE)"run_SSL_IPV4_TS1 - Executes the IPv4 SSL connection test suite."
$(USAGE)"run_SSL_IPV6_TS1 - Executes the IPv6 SSL connection test suite."
$(USAGE)"run_OOP_TS1 - Executes the Out Of Process Provider tests"
$(USAGE)"run_G11N_TS1 - Executes the Globalization tests"
$(USAGE)
$(USAGE)"The following require the repository to be pre-built and the server to be started."
$(USAGE)
$(USAGE)"serversuite - the collection of test run by the servertests rule"
$(USAGE)"run_STRESS_TS1 - Executes the stresstests"
$(USAGE)"slptests - Executes the slptests"
$(USAGE)"run_Cmpi_Sub - Executes the CMPI subscription tests"
$(USAGE)
$(USAGE)"The following requires wseventsink to be installed on the server and is not run"
$(USAGE)"as part of Primary target tests suites."
$(USAGE)"run_WSMAN_TS - Executes the WSMAN indication deliver test"
##########################################################
#
# rules that are defined in Makefile
#
##########################################################
build: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile build
world: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile world
new: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile new
clean: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile clean
depend: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile depend
###############################################################################
# mak/certificate_test.mak implements three key functions for
# testing Certificate-Based Authentication (CBA).
#
# setupCBATestCertificates is used to create a set of test certificates
# make -f TestMakefile setupCBATestCertificates
#
# runCBATestSuites is used to run a set of CBA tests
# make -f TestMakefile runCBATestSuites
#
# cleanupCBATestCertificates can be used to remove the test certificates
# make -f TestMakefile cleanupCBATestCertificates
###############################################################################
include $(PEGASUS_ROOT)/mak/certificate_test.mak
############################################################
#
# rules defined here
#
############################################################
##
## Although the macros CIMSERVER_STOP_SERVICE and CIMSERVER_START_SERVICE
## are available and could be invoked directly, their direct usage is
## discouraged in favor of invoking the cimstop and the cimstart rules
## as this allows one place where additional checks, delays etc may be
## added in the future to control or further test the servers performance
## in executing these commands.
##
#######################
#
# doc
#
doc:
$(MAKE) --directory=$(PEGASUS_ROOT)/doc/ProviderSpec -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/doc/DevManual -f Makefile
#######################
#
# repositoryServer
#
repositoryServer: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
$(SLEEP) 5
$(RMREPOSITORY) $(REPOSITORY_ROOT)
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstart
$(SLEEP) 5
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryServer
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepositoryServer
######################
#
# prestarttests is being deprecated since poststarttest is being deprecated
# in favor of name more related to its intended functionality.
#
prestarttests: prestarttests_msg shortsleep unittests
prestarttests_msg: FORCE
@$(ECHO) "=============================================================================="
@$(ECHO) "TestMakefile: The \"prestarttests\" rule is being deprecated."
@$(ECHO) " Use \"make testusage\" for a description of the usage model."
@$(ECHO) " The equivalent new rule is \"unittests\"."
@$(ECHO) " Invoking the \"unittests\" rule now."
@$(ECHO) "=============================================================================="
####################
#
# poststarttests is being deprecated since it multiply defines a
# recursive make rule leading to ambuguity and confusion.
#
poststarttests: poststarttests_msg shortsleep servertests
poststarttests_msg: FORCE
@$(ECHO) "==============================================================================="
@$(ECHO) "TestMakefile: The \"posstarttests\" rule is being deprecated.."
@$(ECHO) " Use \"make testusage\" for a description of the usage model."
@$(ECHO) " The equivalent new rule is \"servertests\"."
@$(ECHO) " Invoking the \"servertests\" rule now."
@$(ECHO) "==============================================================================="
#####################
#
# tests is being deprecated since it multiply defines a
# recursive make rule leading to ambuguity and confusion.
#
tests: tests_msg shortsleep alltests
tests_msg: FORCE
@$(ECHO) "==================================================================="
@$(ECHO) "TestMakefile: The \"tests\" rule is being deprecated."
@$(ECHO) " Use \"make testusage\" for a description of the usage model."
@$(ECHO) " The equivalent new rule is \"alltests\"."
@$(ECHO) " Invoking the \"alltests\" rule now."
@$(ECHO) "==================================================================="
shortsleep: FORCE
@$(SLEEP) 5
####################
#
# unittests
#
unittests: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile tests
@ $(ECHO) "+++++ TestMakefile unittests complete"
#####################
#
# servertests
#
servertestsclean: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/CQL/tests/Queries -f Makefile clean
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Query/QueryExpression/tests/Queries -f Makefile clean
$(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest -f Makefile clean
servertestssetup: FORCE
ifdef PEGASUS_HAS_SSL
#
# The association between user names and certificates is stored in the
# repository. If the repository is recreated, we also need to re-initialize
# the trust store directories. Otherwise, the truststore content will be
# out-of-sync with the mapping stored in the repository.
#
# NOTE: Tests that require their own test namespaces to run poststarttests
# should add their namespace creation make commands to pegasus/Makefile
# under the testrepository tag.
#
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile removeSSLTrustDirectories
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile createSSLTrustDirectories
endif
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository
@$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile \
cleanupCBATestCertificates
@$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile \
setupCBATestCertificates
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile cimstart
$(SLEEP) 5
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile ConfigureUsers
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile Create_SSL_Certificate
ifeq ($(PEGASUS_TEST_SDK),true)
$(MAKE) --directory=$(PEGASUS_ROOT)/src/SDK/samples -f Makefile setupSDK
endif
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile cimstop
# slptests are run under separate target because these testcases require that
# both the cimserver and SLP are running. There is no need for special options
# while starting cimserver.
slptests:
$(MAKE) --directory=$(PEGASUS_ROOT)/src/slp/tests/slptests -f Makefile slptests
@ $(ECHO) "+++++ TestMakefile slp test suite completed"
servertests: servertestsclean servertestssetup serversuite
@ $(ECHO) "+++++ TestMakefile servertests suites complete"
serversuite: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Server/tests -f Makefile commandtests
ifeq ($(PEGASUS_ENABLE_SLP),true)
$(MAKE) --directory=$(PEGASUS_ROOT)/src/slp/tests/srv_reg/ -f Makefile tests
endif
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile cimstart
$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile TestBinRepository
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_Cimsub_InterOp
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_OOP_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_IndInit_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_OOPProvFail_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_OOPProvFail_TS2
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_OOPProvFail_TS3
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_INDSSL_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_SSL_IPV4_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_SSL_IPV6_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_SSL_CBA_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_G11N_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile runCBATestSuites
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_SDK_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_ExportClientSSL_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_Cimserver_Availability
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_sslCipherSuiteTests
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_TLSv1_2_tests
ifeq ($(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER),true)
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_Cmpi_Sub
endif
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile cimprovagt32tests
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile chgdhoststests
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_idleConnectionTimeout1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_idleConnectionTimeout2
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_providerLifecycleIndicationTests
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile startcimListenAddress
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_interfaceRestrictionTest
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_providerReregisterTests
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_ENUMCTXT_TS1
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_ENUMCTXT_TS2
#####################
#
# stresstests
#
stresstests:
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_STRESS_TS1
####################
#
# perftests - simple performance test until we have better
#
# - Turns statistics on (uses TestInterop until we have better)
# - runs poststarttests suite and TestBenchmark
# - runs cimperf to displat the statistics
# - turns statistics off
#
perftests: servertestsclean servertestssetup perfsuite
perfsuite: FORCE
$(PEGASUS_HOME)/bin/TestInterop on
$(TIME_CMD) $(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest -f Makefile poststarttests
@ $(ECHO) " "
$(TIME_CMD) $(PEGASUS_HOME)/bin/TestClient
@ $(ECHO) " "
$(TIME_CMD) $(PEGASUS_HOME)/bin/TestBenchmark
@ $(ECHO) " "
@ $(ECHO) " "
$(TIME_CMD) $(PEGASUS_HOME)/bin/cimperf
@ $(ECHO) " "
$(PEGASUS_HOME)/bin/TestInterop off
####################
#
# alltests
#
alltests: unittests servertests
ifeq ($(OS_TYPE),windows)
$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile uninstall
endif
@ $(ECHO) "+++++ TestMakefile alltests Complete"
###############################################################################
## Test Suite Definitions
###############################################################################
###############################################################################
## OOP Test Suite 1: "Out-of-Process"(OOP) Provider Tests
##
## Configuration Options: forceProviderProcesses=true
##
## If PEGASUS_DEFAULT_ENABLE_OOP is set, then tests are run with OOP disabled
## since tests have already been run with OOP enabled.
##
##
###############################################################################
ifeq ($(PEGASUS_DEFAULT_ENABLE_OOP),true)
OOP_TS1_CONFIG_OPTIONS = forceProviderProcesses=false
else
OOP_TS1_CONFIG_OPTIONS = forceProviderProcesses=true
endif
ifeq ($(PEGASUS_ENABLE_PRIVILEGE_SEPARATION),true)
# When privilege separation is enabled, most providers run out of process
# regardless of the forceProviderProcesses setting. The exception is
# providers that register with UserContext = 5 (CIM Server). The only
# case of this in the automated tests is the UserContextTestProvider.
OOP_TS1_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/UserContextTestProvider/testclient@@poststarttests
else
OOP_TS1_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)@@-f@@Makefile@@poststarttests
endif
run_OOP_TS1:
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(OOP_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(OOP_TS1_TEST_CMDS)"
###############################################################################
###############################################################################
## IndInit Test Suite 1: IndicationService Initialization Tests
##
## Configuration Options: (none)
##
###############################################################################
IndInit_TS1_CONFIG_OPTIONS =
IndInit_TS1a_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Pegasus/IndicationService/tests/ProcessIndication@@IndInit_TS1a
IndInit_TS1b_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Pegasus/IndicationService/tests/ProcessIndication@@IndInit_TS1b
run_IndInit_TS1:
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(IndInit_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(IndInit_TS1a_TEST_CMDS)"
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(IndInit_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(IndInit_TS1b_TEST_CMDS)"
###############################################################################
## OOPProvFail Test Suite 1: OOP Provider Module Failure Tests
##
## Configuration Options: forceProviderProcesses=true
## enableAuthentication=true, enableAuthentication=false
##
## NOTE: Regardless of the setting of PEGASUS_DEFAULT_ENABLE_OOP, this test
## suite is always run with OOP enabled. This test suite causes a provider to
## exit. Running this test suite with OOP disabled would cause the cimserver
## to exit and the test suite to fail.
##
## NOTE: The test is run once with authentication enabled, and once without
## authentication enabled.
##
###############################################################################
OOPProvFail_TS1a_CONFIG_OPTIONS = forceProviderProcesses=true enableAuthentication=true maxFailedProviderModuleRestarts=0
OOPProvFail_TS1b_CONFIG_OPTIONS = forceProviderProcesses=true enableAuthentication=false maxFailedProviderModuleRestarts=0
OOPProvFail_TS1_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/OOPModuleFailureProvider/testclient@@OOPProvFail_TS1
ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
run_OOPProvFail_TS1:
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS1a_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(OOPProvFail_TS1_TEST_CMDS)"
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS1b_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(OOPProvFail_TS1_TEST_CMDS)"
else
run_OOPProvFail_TS1: FORCE
@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping run_OOPProvFail_TS1"
endif
###############################################################################
## OOPProvFail Test Suite 2: OOP Provider Module Failure on IndicationService
## Initialization Tests
##
## Configuration Options: forceProviderProcesses=true
## enableAuthentication=true
##
## NOTE: Regardless of the setting of PEGASUS_DEFAULT_ENABLE_OOP, this test
## suite is always run with OOP enabled. This test suite causes a provider to
## exit. Running this test suite with OOP disabled would cause the cimserver
## to exit and the test suite to fail.
##
###############################################################################
OOPProvFail_TS2_CONFIG_OPTIONS = forceProviderProcesses=true enableAuthentication=true
OOPProvFail_TS2a_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/OOPModuleFailureProvider/testclient@@OOPProvFail_TS2a
OOPProvFail_TS2b_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/OOPModuleFailureProvider/testclient@@OOPProvFail_TS2b
ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
run_OOPProvFail_TS2:
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS2_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(OOPProvFail_TS2a_TEST_CMDS)"
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS2_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(OOPProvFail_TS2b_TEST_CMDS)"
else
run_OOPProvFail_TS2: FORCE
@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping run_OOPProvFail_TS2"
endif
###############################################################################
## OOPProvFail Test Suite 3: OOP Provider Module Failure CIM Server restart
## Tests
##
## Configuration Options: forceProviderProcesses=true
## enableAuthentication=true
##
## NOTE: Regardless of the setting of PEGASUS_DEFAULT_ENABLE_OOP, this test
## suite is always run with OOP enabled. This test suite causes a provider to
## exit. Running this test suite with OOP disabled would cause the cimserver
## to exit and the test suite to fail.
##
###############################################################################
OOPProvFail_TS3_CONFIG_OPTIONS = forceProviderProcesses=true enableAuthentication=true maxFailedProviderModuleRestarts=0
OOPProvFail_TS3a_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/OOPModuleFailureProvider/testclient@@OOPProvFail_TS3a
OOPProvFail_TS3b_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/OOPModuleFailureProvider/testclient@@OOPProvFail_TS3b
ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
run_OOPProvFail_TS3:
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS3_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(OOPProvFail_TS3a_TEST_CMDS)"
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS3_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(OOPProvFail_TS3b_TEST_CMDS)"
else
run_OOPProvFail_TS3: FORCE
@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping run_OOPProvFail_TS3"
endif
###############################################################################
## Indication SSL Test Suite 1: Indication Testing over HTTPS
##
## Configuration Options: (none)
##
###############################################################################
INDSSL_TS1a_CONFIG_OPTIONS = enableHttpsConnection=true enableAuthentication=false
INDSSL_TS1a_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/IndicationStressTestProvider/testclient@@-f@@Makefile@@run_TS1_AuthenticationDisabled
INDSSL_TS1b_CONFIG_OPTIONS = enableHttpsConnection=true enableAuthentication=true sslClientVerificationMode=required
INDSSL_TS1b_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/IndicationStressTestProvider/testclient@@-f@@Makefile@@run_TS1_AuthenticationEnabled
ifdef PEGASUS_HAS_SSL
ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
run_INDSSL_TS1: EnableUsers Create_SSL_Certificate_ignore
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(INDSSL_TS1a_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(INDSSL_TS1a_TEST_CMDS)"
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(INDSSL_TS1b_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(INDSSL_TS1b_TEST_CMDS)"
else
run_INDSSL_TS1: FORCE
@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping run_INDSSL_TS1"
endif
else
run_INDSSL_TS1: FORCE
@ $(ECHO) "+++++ PEGASUS_HAS_SSL not defined: Skipping run_INDSSL_TS1"
endif
###############################################################################
## WSMAN Indication test suite : WSMAN Indication Testing over HTTPS
##
## Configuration Options: (none for cimserver)
## wsevensink should be installed as the wsman listner.
##
## There is no WSMAN listner in OP as of now. Therefore, wseventsink of
## openwsman is used. This is available only on Linux. On other OSes, the
## destination of the subcription/indication should be changed to a Linux
## system where wseventsink is running.
## Once we have a wsman listner in OP we include this test in Nigthly tests.
## As of now, this has to be run explicitly.
##
###############################################################################
ifeq ($(OS),linux)
ifeq ($(PEGASUS_ENABLE_PROTOCOL_WSMAN),true)
INDWSMAN_CONFIG_OPTIONS = enableHttpsConnection=true enableAuthentication=false
INDWSMAN_TS1a_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/IndicationTestProvider/wsmanTestClient@@-f@@Makefile@@runWSMANtests
run_WSMAN_TS: FORCE
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(INDWSMAN_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(INDWSMAN_TS1a_TEST_CMDS)"
endif
endif
###############################################################################
###############################################################################
## SSL IPv4 Test Suite : Tests SSL connections for IPv4
##
## Configuration Options: enableHttpsConnection=true
## NOTE : Authentication is not enabled as we are only verifying
## if SSL based IPv6 connections are working correctly. The osinfo
## client requires a password to be passed for a remote connection
## otherwise it will prompt for one. As a work around,
## we are providing a dummy password.
##
###############################################################################
SSL_IPV4_TS1_CONFIG_OPTIONS = enableHttpsConnection=true \
enableAuthentication=false
SSL_IPV4_TS1_CMD_1 = \
osinfo -s -w notapassword -h 127.0.0.1 -p 5989
SSL_IPV4_TS1_CMD_2 = \
osinfo -s -w notapassword -h localhost -p 5989
ifdef PEGASUS_HAS_SSL
run_SSL_IPV4_TS1: FORCE
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(SSL_IPV4_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(SSL_IPV4_TS1_CMD_1)"
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(SSL_IPV4_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(SSL_IPV4_TS1_CMD_2)"
else
run_SSL_IPV4_TS1: FORCE
@ $(ECHO) "+++++ PEGASUS_HAS_SSL not defined: Skipping run_SSL_IPV4_TS1"
endif
###############################################################################
## SSL IPv6 Test Suite : Tests SSL connections for IPv6
##
## Configuration Options: enableHttpsConnection=true
## NOTE : Authentication is not enabled as we are only verifying
## if SSL based IPv6 connections are working correctly. The osinfo
## client requires a password to be passed for a remote connection
## otherwise it will prompt for one. As a work around,
## we are providing a dummy password.
##
## The IPv4-mapped IPv6 address test is only enabled for unix
## platforms as Windows does not support IPv4-mapped IPv6 addresses
## on certain versions.
##
###############################################################################
SSL_IPV6_TS1_CONFIG_OPTIONS = enableHttpsConnection=true \
enableAuthentication=false
SSL_IPV6_TS1_CMD_1 = \
osinfo -s -w notapassword -h ::1 -p 5989
SSL_IPV6_TS1_CMD_2 = \
osinfo -s -w notapassword -h ::ffff:127.0.0.1 -p 5989
ifdef PEGASUS_HAS_SSL
run_SSL_IPV6_TS1: FORCE
ifeq ($(PEGASUS_TEST_IPV6), true)
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(SSL_IPV6_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(SSL_IPV6_TS1_CMD_1)"
ifeq ($(OS_TYPE), unix)
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(SSL_IPV6_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(SSL_IPV6_TS1_CMD_2)"
endif
else
@ $(ECHO) "+++++ PEGASUS_TEST_IPV6 not defined: Skipping run_SSL_IPV6_TS1"
endif
else
run_SSL_IPV6_TS1: FORCE
@ $(ECHO) "+++++ PEGASUS_HAS_SSL not defined: Skipping run_SSL_IPV6_TS1"
endif
###############################################################################
## CBA SSL Test Suite 1: Certificate based authentication Tests
##
## Configuration Options: enableAuthentication=true
## enableHttpsConnection=true
## sslClientVerificationMode=optional
## sslTrustStoreUserName=$(CURRENT_USER)
##
###############################################################################
SSL_CBA_TS1_CONFIG_OPTIONS = enableHttpsConnection=true enableAuthentication=true \
sslClientVerificationMode=optional sslTrustStoreUserName=$(CURRENT_USER)
SSL_CBA_TS1_TEST_CMD_1 = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Clients/cimtrust/tests@@SSLCertificateTest1
SSL_CBA_TS1_TEST_CMD_2 = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Clients/cimcrl/tests@@SSLCRLTest1
ifdef PEGASUS_HAS_SSL
ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
run_SSL_CBA_TS1: FORCE
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(SSL_CBA_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(SSL_CBA_TS1_TEST_CMD_1)"
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(SSL_CBA_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(SSL_CBA_TS1_TEST_CMD_2)"
else
run_SSL_CBA_TS1: FORCE
@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping run_SSL_CBA_TS1"
endif
else
run_SSL_CBA_TS1: FORCE
@ $(ECHO) "+++++ PEGASUS_HAS_SSL not defined: Skipping run_SSL_CBA_TS1"
endif
############################################################################
#
# Create_SSL_Certificate
#
# create a certificate that can be used for certification testing.
# It is currently used by the following tests:
# -run_INDSSL_TS1
#
Create_SSL_Certificate_ignore: FORCE
-$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile Create_SSL_Certificate
Create_SSL_Certificate: FORCE
ifdef PEGASUS_HAS_SSL
ifdef PEGASUS_TEST_USER_DEFINED
$(ECHO) "Creating SSL certificate for test"
cimtrust -a -U $(PEGASUS_TEST_USER_ID) -f $(PEGASUS_HOME)/server.pem -Ts
endif
else
$(ECHO) "PEGASUS_HAS_SSL not defined - Not Creating SSL certificate for test"
endif
############################################################################
##
## run_sslCipherSuiteTests
##
## Configuration Options: enableHttpsConnection=true
## sslCipherSuite=HIGH
##
############################################################################
SSL_CIPHER_SUITE_TEST_CONFIG_OPTIONS= enableHttpsConnection=true sslCipherSuite=HIGH
SSL_CIPHER_SUITE_TEST_CMDS= \
$(MAKE)@@--directory \
$(PEGASUS_ROOT)/src/Pegasus/Client/tests/SSLCipherVerification/ \
-f@@Makefile@@sslCipherSuiteTests
ifdef PEGASUS_HAS_SSL
run_sslCipherSuiteTests:
@$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(SSL_CIPHER_SUITE_TEST_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(SSL_CIPHER_SUITE_TEST_CMDS)"
else
run_sslCipherSuiteTests: FORCE
@ $(ECHO) "+++++ PEGASUS_HAS_SSL not defined: Skipping run_sslCipherSuiteTests"
endif
###############################################################################
## G11N Test Suite 1: Globalization Tests
##
## Configuration Options: forceProviderProcesses=false
##
###############################################################################
G11N_TS1_CONFIG_OPTIONS = forceProviderProcesses=false
G11N_TS1_TEST_CMDS = \
$(MAKE) --directory $(PEGASUS_ROOT)/src/Clients/g11ntest \
-f Makefile g11ntest
run_G11N_TS1:
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(G11N_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(G11N_TS1_TEST_CMDS)"
###############################################################################
## Stress Test Suite 1: Default Stress Tests
##
## Configuration Options: (none)
##
###############################################################################
STRESS_TS1_CONFIG_OPTIONS =
STRESS_TS1_TEST_CMDS = \
TestStressTestController
run_STRESS_TS1:
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(STRESS_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(STRESS_TS1_TEST_CMDS)"
###############################################################################
###############################################################################
## SDK Test Suite 1: SDK Tests
##
## Configuration Options: (none)
##
###############################################################################
SDK_TS1_CONFIG_OPTIONS =
SDK_TS1_TEST_CMDS = \
$(MAKE) --directory $(PEGASUS_ROOT)/src/SDK/samples \
-f Makefile testSDK
ifeq ($(PEGASUS_TEST_SDK),true)
run_SDK_TS1: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT)/mak \
-f $(PEGASUS_ROOT)/mak/SDKMakefile stageINCLUDE \
PEGASUS_STAGING_DIR=$(PEGASUS_HOME) \
PEGASUS_INCLUDE_DIR=/include
$(MAKE) --directory=$(PEGASUS_ROOT)/src/SDK/samples \
-f Makefile clean
$(MAKE) --directory=$(PEGASUS_ROOT)/src/SDK/samples \
-f Makefile PEGASUS_INCLUDE_DIR=$(PEGASUS_HOME)/include
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(SDK_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(SDK_TS1_TEST_CMDS)"
else
run_SDK_TS1: FORCE
@ $(ECHO) "+++++ PEGASUS_TEST_SDK is not true: Skipping run_SDK_TS1"
endif
###############################################################################
###############################################################################
## Export Client SSL Test Suite 1:
##
## Configuration Options: enableHttpsConnection=true
##
###############################################################################
ExportClientSSL_TS1_CONFIG_OPTIONS = enableHttpsConnection=true
ExportClientSSL_TS1_TEST_CMDS = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Pegasus/ExportClient/tests/ExportClient@@-f@@Makefile@@runExportClientSSL_TS1
ifdef PEGASUS_HAS_SSL
run_ExportClientSSL_TS1:
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(ExportClientSSL_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(ExportClientSSL_TS1_TEST_CMDS)"
else
run_ExportClientSSL_TS1: FORCE
@ $(ECHO) "+++++ PEGASUS_HAS_SSL not defined: Skipping run_ExportClientSSL_TS1"
endif
###############################################################################
###############################################################################
## TLS v 1.2 support test as per NIST 800-131a
##
## Configuration Options: enableHttpsConnection=true sslCipherSuite = TLSv1.2
##
###############################################################################
TLS_1_2_SUPPORT_CONFIG = enableHttpsConnection=true sslCipherSuite=TLSv1.2
TLSv1_2_support_tests = \
$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Pegasus/Server/tests/TLSv_1_2_Support@@-f@@Makefile@@test_TLSv1_2
ifdef PEGASUS_HAS_SSL
run_TLSv1_2_tests:
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(TLS_1_2_SUPPORT_CONFIG)" \
TESTSUITE_CMDS="$(TLSv1_2_support_tests)"
else
run_TLSv1_2_tests: FORCE
@ $(ECHO) "+++++ PEGASUS_HAS_SSL not defined: Skipping TLSv 1.2 support tests"
endif
###############################################################################
###############################################################################
## idleConnectionTimeout Test Suite 1: uses ChunkingStressProvider Tests
##
## Configuration Options: idleConnectionTime=55
##
###############################################################################
IDLE_CONNECTION_TIMEOUT_1_CONFIG_OPTIONS = idleConnectionTimeout=55
IDLE_CONNECTION_TIMEOUT_1_TEST_CMDS = \
$(MAKE)@@--directory \
$(PEGASUS_ROOT)/src/Providers/TestProviders/ChunkingStressProvider/testclient \
-f@@Makefile@@poststarttests
run_idleConnectionTimeout1: FORCE
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(IDLE_CONNECTION_TIMEOUT_1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(IDLE_CONNECTION_TIMEOUT_1_TEST_CMDS)"
###############################################################################
###############################################################################
## idleConnectionTimeout Test Suite 2: uses IdleConnectionTimeout client test
##
## Configuration Options: idleConnectionTime=6
##
###############################################################################
IDLE_CONNECTION_TIMEOUT_2_CONFIG_OPTIONS = idleConnectionTimeout=6
IDLE_CONNECTION_TIMEOUT_2_TEST_CMDS = \
$(MAKE)@@--directory \
$(PEGASUS_ROOT)/src/Pegasus/Client/tests/IdleConnectionTimeout/ \
-f@@Makefile@@timeoutTest@@IDLETIME=10
run_idleConnectionTimeout2: FORCE
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(IDLE_CONNECTION_TIMEOUT_2_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(IDLE_CONNECTION_TIMEOUT_2_TEST_CMDS)"
###############################################################################
###############################################################################
## cimserver thread limit test:
##
## Configuration Options: none
##
###############################################################################
CIMSERVER_THREAD_LIMIT_TEST_CONFIG_OPTIONS = forceProviderProcesses=true
CIMSERVER_THREAD_LIMIT_TEST_CMDS = \
$(MAKE)@@--directory \
$(PEGASUS_ROOT)/src/Providers/TestProviders/FaultyInstanceProvider/testclient \
-f@@Makefile@@runAvailabilityTest
run_Cimserver_Availability: FORCE
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(CIMSERVER_THREAD_LIMIT_TEST_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(CIMSERVER_THREAD_LIMIT_TEST_CMDS)"
###############################################################################
###############################################################################
## cimsub CLI Test Suite 1: PG_InterOp Tests
##
## Configuration Options: (none)
##
###############################################################################
CIMSUB_INTEROP_CONFIG_OPTIONS =
CIMSUB_INTEROP_TEST_CMDS = \
$(MAKE) --directory \
$(PEGASUS_ROOT)/src/Clients/cimsub/tests/testscriptInterOp \
-f Makefile cimsubTest_InterOp
run_Cimsub_InterOp: FORCE
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(CIMSUB_INTEROP_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(CIMSUB_INTEROP_TEST_CMDS)"
###############################################################################
###############################################################################
## CMPI subscription activation Test Suite 1:
##
## Configuration Options: (none)
##
###############################################################################
CMPI_SUB_TEST_CONFIG_OPTIONS=
CMPI_SUBa_TEST_CMDS = \
TestIndicationStressTest TestCMPI_IndicationStressTestClass test/TestProvider setup WQL
CMPI_SUBb_TEST_CMDS = \
TestIndicationStressTest TestCMPI_IndicationStressTestClass test/TestProvider getSubscriptionCount
CMPI_SUBc_TEST_CMDS = \
TestIndicationStressTest TestCMPI_IndicationStressTestClass test/TestProvider cleanup
run_Cmpi_Sub: FORCE
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(CMPI_SUB_TEST_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(CMPI_SUBa_TEST_CMDS)"
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(CMPI_SUB_TEST_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(CMPI_SUBb_TEST_CMDS)"
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(CMPI_SUB_TEST_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(CMPI_SUBc_TEST_CMDS)"
##############################################################################
###############################################################################
## EnumerationContext Black Box test 1
##
## Configuration Options: Run with trace on and at least EnumContext compent
## set. Trace output used to diagnose results
## Run with forceProviderProcesses=true
## Runs a test of pull operations and tests the trace output to determine if
## it includes an equal number of create and remove trace entries indicating
## that all enumerations contexts completed. Note that today the code that
## tests the trace results is a sh script and grep so this runs only on
## systems that have these tools
## This test was added in OpenPegasus 2.14 when the pull operations were
## added
##
###############################################################################
ENUMCTXT_TS1_CONFIG_OPTIONS = traceComponents=EnumContext traceLevel=4 forceProviderProcesses=true
ENUMCTXT_TS1A_TEST_CMDS = \
$(MAKE)@@--directory \
$(PEGASUS_ROOT)/src/Pegasus/Client/tests/pullop -f@@Makefile poststarttests
ENUMCTXT_TS1B_TEST_CMDS = \
$(MAKE)@@--directory \
$(PEGASUS_ROOT)/src/Pegasus/Client/tests/PullErrors -f@@Makefile poststarttests
ENUMCTXT_POSTTEST_CMD = $(PEGASUS_ROOT)/src/Pegasus/Client/tests/pullop/testContextTraceOutput
run_ENUMCTXT_TS1:
ifeq ($(findstring LINUX_, $(PEGASUS_PLATFORM)), LINUX_)
$(RM) $(PEGASUS_HOME)/trace/*
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(ENUMCTXT_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(ENUMCTXT_TS1A_TEST_CMDS)"
$(ENUMCTXT_POSTTEST_CMDS)
$(RM) $(PEGASUS_HOME)/trace/*
$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
CIMSERVER_CONFIG_OPTIONS="$(ENUMCTXT_TS1_CONFIG_OPTIONS)" \
TESTSUITE_CMDS="$(ENUMCTXT_TS1B_TEST_CMDS)"
$(ENUMCTXT_POSTTEST_CMD)
else
@ $(ECHO) "+++++ run_ENUMCTXT_TS1 runs only in certain environments"
endif
###############################################################################
###############################################################################
## EnumerationContext Black Box test 2
## Parallel to ENUMCTXT_TS1 except with forceProviderProcesses=false
##
###############################################################################
ENUMCTXT_TS2_CONFIG_OPTIONS = traceComponents=EnumContext traceLevel=4 forceProviderProcesses=false