(file) Return to TestMakefile CVS log (file) (dir) Up to [Pegasus] / pegasus

   1 karl  1.57 #//%2006////////////////////////////////////////////////////////////////////////
   2 martin 1.32 #//
   3             #// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
   4             #// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   5             #// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   6             #// IBM Corp.; EMC Corporation, The Open Group.
   7             #// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   8             #// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   9             #// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
  10             #// EMC Corporation; VERITAS Software Corporation; The Open Group.
  11 karl   1.57 #// Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
  12             #// EMC Corporation; Symantec Corporation; The Open Group.
  13 martin 1.32 #//
  14             #// Permission is hereby granted, free of charge, to any person obtaining a copy
  15             #// of this software and associated documentation files (the "Software"), to
  16             #// deal in the Software without restriction, including without limitation the
  17             #// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  18             #// sell copies of the Software, and to permit persons to whom the Software is
  19             #// furnished to do so, subject to the following conditions:
  20             #// 
  21             #// THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
  22             #// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
  23             #// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
  24             #// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  25             #// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  26             #// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  27             #// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  28             #// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  29             #//
  30             #//==============================================================================
  31 kumpf  1.1  ###############################################################################
  32             ##
  33             ## Test Makefile for Pegasus CIMOM
  34             ##
  35 jim.wunderlich 1.40 ## see the usage rule for documentation of rules etc.
  36 jim.wunderlich 1.34 ##
  37                     ##
  38 kumpf          1.1  ###############################################################################
  39                     
  40 david.dillard  1.15 error:
  41 jim.wunderlich 1.40 	@ $(ECHO) "Specify desired makefile option (i.e., unittests, usage )"
  42 kumpf          1.1  
  43 kumpf          1.23 include $(PEGASUS_ROOT)/mak/config.mak
  44                     include $(PEGASUS_ROOT)/mak/test.mak
  45                     include $(PEGASUS_ROOT)/mak/commands.mak
  46                     
  47                     system = localhost
  48                     
  49 jim.wunderlich 1.34 .PHONY: FORCE
  50                     
  51                     FORCE:
  52                     
  53 jim.wunderlich 1.40 usage: FORCE
  54                     	$(USAGE)
  55                     	$(USAGE)"TestMakefile Primary Targets:"
  56                     	$(USAGE)
  57                     	$(USAGE)"The following are all standalone tests. They stop and start the server,"
  58                     	$(USAGE)"and build repositories as needed."
  59                     	$(USAGE)
  60                     	$(USAGE)"alltests           - Execute unittests and servertests"
  61                     	$(USAGE)"unittests          - Execute the unit functional tests - no repository"
  62                     	$(USAGE)"                     or active server is required"
  63                     	$(USAGE)"servertests        - Execute a basic server test suites (No security, No SSL)"
  64                     	$(USAGE)"standardtests      - Execute an extended server test suites "
  65                     	$(USAGE)"                     using multiple options."
  66 jim.wunderlich 1.45 	$(USAGE)"perftests          - Executes a brief server performance test"
  67 jim.wunderlich 1.40 	$(USAGE)
  68                     	$(USAGE)"usage2             - usage on secondary test targets"
  69 jim.wunderlich 1.43 	$(USAGE)"usagetrace         - usage on trace targets"
  70 j.alex         1.66 	$(USAGE)"stresstests        - Execute the default stress test suite"
  71 jim.wunderlich 1.40 	$(USAGE)
  72                     
  73                     usage2: FORCE
  74                     	$(USAGE)
  75                     	$(USAGE)"TestMakefile Secondary Targets:"
  76                     	$(USAGE)
  77                     	$(USAGE)"The following are run as part of the Primary target test suites and may"
  78                     	$(USAGE)"also be invoked as standalone tests."
  79                     	$(USAGE)
  80                     	$(USAGE)"TestXMLRepository       - Executes poststarttests on XML repository"
  81                     	$(USAGE)"                          built with cimmofl."
  82                     	$(USAGE)"TestXMLRepositoryServer - Executes poststarttests on XML repository" 
  83                     	$(USAGE)"                          built with cimmof."
  84                     	$(USAGE)"TestXMLCmpRepository    - Executes poststarttests on XML compressed"
  85                     	$(USAGE)"                          repository built with cimmofl."
  86                     	$(USAGE)"TestBinRepository       - Executes poststarttests on binary repository "
  87                     	$(USAGE)"                          built with cimmofl."
  88                     	$(USAGE)"TestBinRepositoryServer - Executes poststarttests on binary repository"
  89                     	$(USAGE)"                          built with cimmof."
  90                     	$(USAGE)"TestBinCmpRepository    - Executes poststarttests on binary compressed"
  91                     	$(USAGE)"                          repository built with cimmofl."
  92 jim.wunderlich 1.40 	$(USAGE)
  93                     	$(USAGE)"The following require the repository to be pre-built."
  94                     	$(USAGE)
  95                     	$(USAGE)"run_SSL_TS1             - Executes the SSL tests"
  96                     	$(USAGE)"run_OOP_TS1             - Executes the Out Of Process Provider tests"
  97 kumpf          1.46 	$(USAGE)"run_G11N_TS1            - Executes the Globalization tests"
  98 jim.wunderlich 1.40 	$(USAGE)
  99                     	$(USAGE)"The following require the repository to be pre-built and the server to be started."
 100                     	$(USAGE)
 101                     	$(USAGE)"serversuite             - the collection of test run by the servertests rule"
 102 j.alex         1.66 	$(USAGE)"run_STRESS_TS1          - Executes the stresstests"
 103 dave.sudlik    1.78 	$(USAGE)"slptests                - Executes the slptests"
 104 jim.wunderlich 1.40 	$(USAGE)
 105                     
 106                     
 107                     ##########################################################
 108                     #
 109                     # rules that are defined in Makefile
 110                     #
 111                     ##########################################################
 112 kumpf          1.21 
 113 jim.wunderlich 1.39 build: FORCE
 114                     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile build
 115 kumpf          1.21 
 116 jim.wunderlich 1.40 world: FORCE
 117                     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile world
 118                     
 119                     new: FORCE
 120                     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile new
 121                     
 122 jim.wunderlich 1.39 clean: FORCE
 123 kumpf          1.21 	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile clean
 124                     
 125 jim.wunderlich 1.40 depend: FORCE
 126                     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile depend
 127                     
 128 denise.eckstein 1.69 ###############################################################################
 129                      #   mak/certificate_test.mak implements three key functions for
 130                      #   testing Certificate-Based Authentication (CBA).
 131                      #   
 132                      #   setupCBATestCertificates is used to create a set of test certificates
 133                      #       make -f TestMakefile setupCBATestCertificates
 134                      #
 135                      #   runCBATestSuites is used to run a set of CBA tests
 136                      #       make -f TestMakefile runCBATestSuites
 137                      #
 138                      #   cleanupCBATestCertificates can be used to remove the test certificates
 139                      #       make -f TestMakefile cleanupCBATestCertificates
 140                      ###############################################################################
 141                      include $(PEGASUS_ROOT)/mak/certificate_test.mak
 142 jim.wunderlich  1.40 
 143                      ############################################################
 144                      #
 145                      # rules defined here
 146                      #
 147                      ############################################################
 148                      
 149 jim.wunderlich  1.41 ##
 150                      ## Although the macros CIMSERVER_STOP_SERVICE and CIMSERVER_START_SERVICE
 151                      ## are available and could be invoked directly, their direct usage is
 152                      ## discouraged in favor of invoking the cimstop and the cimstart rules
 153                      ## as this allows one place where additional checks, delays etc may be 
 154                      ## added in the future to control or further test the servers performance
 155                      ## in executing these commands.
 156                      ##
 157                      
 158 jim.wunderlich  1.40 #######################
 159                      #
 160                      # doc
 161                      #
 162 kumpf           1.1  doc:
 163 mday            1.6  	$(MAKE) --directory=$(PEGASUS_ROOT)/doc/ProviderSpec -f Makefile
 164                      	$(MAKE) --directory=$(PEGASUS_ROOT)/doc/DevManual -f Makefile
 165 kumpf           1.1  
 166 jim.wunderlich  1.40 
 167                      #######################
 168                      #
 169                      # repositoryServer
 170                      #
 171                      repositoryServer: FORCE
 172 kumpf           1.22 	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
 173 mike            1.78.2.3 	$(SLEEP) 5
 174 kumpf           1.1      	$(RMDIRHIER) $(REPOSITORY_ROOT)
 175 jim.wunderlich  1.41     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstart
 176 mike            1.78.2.3 	$(SLEEP) 5
 177 kumpf           1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryServer
 178                          	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepositoryServer
 179 mday            1.6      
 180 jim.wunderlich  1.40     ######################
 181                          #
 182                          # prestarttests is being deprecated since poststarttest is being deprecated
 183                          # in favor of name more related to its intended functionality. 
 184                          #
 185                          prestarttests: prestarttests_msg shortsleep unittests
 186                          
 187                          prestarttests_msg: FORCE
 188                          	@$(ECHO) "=============================================================================="
 189                          	@$(ECHO) "TestMakefile: The \"prestarttests\" rule is being deprecated."
 190                          	@$(ECHO) "              Use \"make testusage\" for a description of the usage model."	
 191                          	@$(ECHO) "              The equivalent new rule is \"unittests\"."  
 192                          	@$(ECHO) "              Invoking the \"unittests\" rule now."
 193                          	@$(ECHO) "=============================================================================="
 194                          
 195                          ####################
 196                          #
 197                          # poststarttests is being deprecated since it multiply defines a 
 198                          # recursive make rule leading to ambuguity and confusion.
 199                          #
 200                          poststarttests: poststarttests_msg shortsleep servertests 
 201 jim.wunderlich  1.40     
 202                          poststarttests_msg: FORCE
 203                          	@$(ECHO) "==============================================================================="
 204                          	@$(ECHO) "TestMakefile: The \"posstarttests\" rule is being deprecated.."  
 205                          	@$(ECHO) "              Use \"make testusage\" for a description of the usage model."	
 206                          	@$(ECHO) "              The equivalent new rule is \"servertests\"."  
 207                          	@$(ECHO) "              Invoking the \"servertests\" rule now."
 208                          	@$(ECHO) "==============================================================================="
 209                          
 210                          #####################
 211                          #
 212                          # tests is being deprecated since it multiply defines a 
 213                          # recursive make rule leading to ambuguity and confusion.
 214                          #
 215                          tests: tests_msg shortsleep alltests
 216                          
 217                          tests_msg: FORCE
 218                          	@$(ECHO) "==================================================================="
 219                          	@$(ECHO) "TestMakefile: The \"tests\" rule is being deprecated."
 220                          	@$(ECHO) "              Use \"make testusage\" for a description of the usage model."	
 221                          	@$(ECHO) "              The equivalent new rule is \"alltests\"."  
 222 jim.wunderlich  1.40     	@$(ECHO) "              Invoking the \"alltests\" rule now."
 223                          	@$(ECHO) "==================================================================="
 224                          
 225                          
 226                          shortsleep: FORCE
 227 mike            1.78.2.3 	@$(SLEEP) 5
 228 jim.wunderlich  1.40     
 229                          ####################
 230                          #
 231                          # unittests
 232                          #
 233                          unittests: FORCE
 234 h.sterling      1.38     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile tests
 235 jim.wunderlich  1.40     	@ $(ECHO) "+++++ TestMakefile unittests complete"
 236                          
 237                          #####################
 238                          #
 239                          # servertests
 240                          #
 241 kumpf           1.1      
 242 jim.wunderlich  1.40     servertestsclean: FORCE
 243 jim.wunderlich  1.41     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
 244 lucier          1.17     	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/CQL/tests/Queries -f Makefile clean
 245                          	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Query/QueryExpression/tests/Queries -f Makefile clean
 246 mday            1.6      	$(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest -f Makefile clean
 247 jim.wunderlich  1.31     
 248 jim.wunderlich  1.40     servertestssetup: FORCE
 249 denise.eckstein 1.50     ifdef PEGASUS_HAS_SSL
 250 jim.wunderlich  1.61     #
 251                          # The association between user names and certificates is stored in the 
 252                          # repository.  If the repository is recreated, we also need to re-initialize
 253                          # the trust store directories. Otherwise, the truststore content will be 
 254                          # out-of-sync with the mapping stored in the repository.
 255                          #
 256 w.otsuka        1.76     #  NOTE: Tests that require their own test namespaces to run poststarttests
 257                          #  should add their namespace creation make commands to pegasus/Makefile
 258                          #  under the testrepository tag.
 259                          #
 260 denise.eckstein 1.50     	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile removeSSLTrustDirectories
 261                          	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile createSSLTrustDirectories
 262                          endif
 263 jim.wunderlich  1.40     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository
 264                          	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository
 265 denise.eckstein 1.69     	@$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile \
 266                                      cleanupCBATestCertificates
 267                          	@$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile \
 268                                      setupCBATestCertificates
 269 jim.wunderlich  1.41     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile cimstart
 270 mike            1.78.2.3 	$(SLEEP) 5
 271 jim.wunderlich  1.61     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile ConfigureUsers
 272                          	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile Create_SSL_Certificate
 273 denise.eckstein 1.73     ifeq ($(PEGASUS_TEST_SDK),true)
 274                          	$(MAKE) --directory=$(PEGASUS_ROOT)/src/SDK/samples -f Makefile setupSDK 
 275                          endif
 276                          
 277 dave.sudlik     1.78     # slptests are run under separate target because these testcases require that
 278                          # both the cimserver and SLP are running. There is no need for special options
 279                          # while starting cimserver.
 280                          slptests:
 281                          	$(MAKE) --directory=$(PEGASUS_ROOT)/src/slp/tests/slptests -f Makefile slptests
 282                          	@ $(ECHO) "+++++ TestMakefile slp test suite completed"
 283 jim.wunderlich  1.40     
 284                          servertests: servertestsclean servertestssetup serversuite
 285                          	@ $(ECHO) "+++++ TestMakefile servertests suites complete"
 286                          
 287                          serversuite: FORCE
 288 mike            1.78.2.2 	$(ECHO) "========== poststarttests"
 289 kumpf           1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests
 290 mike            1.78.2.2 	$(ECHO) "========== TestBinRepository"
 291 jim.wunderlich  1.33     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile TestBinRepository
 292 mike            1.78.2.2 	$(ECHO) "========== run_Cimsub_InterOp"
 293 w.otsuka        1.76     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_Cimsub_InterOp
 294 mike            1.78.2.2 	$(ECHO) "========== run_OOP_TS1"
 295 kumpf           1.20     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_OOP_TS1
 296 mike            1.78.2.2 	$(ECHO) "========== run_IndInit_TS1"
 297 carolann.graves 1.28     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_IndInit_TS1
 298 mike            1.78.2.2 	$(ECHO) "========== run_OOPProvFail_TS1"
 299 carolann.graves 1.67     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_OOPProvFail_TS1
 300 mike            1.78.2.2 	$(ECHO) "========== run_OOPProvFail_TS2"
 301 carolann.graves 1.67     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_OOPProvFail_TS2
 302 mike            1.78.2.2 	$(ECHO) "========== run_OOPProvFail_TS3"
 303 carolann.graves 1.74     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_OOPProvFail_TS3
 304 mike            1.78.2.2 	$(ECHO) "========== run_INDSSL_TS1"
 305 denise.eckstein 1.47     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_INDSSL_TS1
 306 mike            1.78.2.2 	$(ECHO) "========== run_SSL_TS1"
 307 h.sterling      1.37     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_SSL_TS1
 308 mike            1.78.2.2 	$(ECHO) "========== run_G11N_TS1"
 309 kumpf           1.46     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_G11N_TS1
 310 mike            1.78.2.2 	$(ECHO) "========== runCBATestSuites"
 311 denise.eckstein 1.69     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile runCBATestSuites
 312 mike            1.78.2.2 	$(ECHO) "========== run_SDK_TS1"
 313 denise.eckstein 1.73     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_SDK_TS1
 314 mike            1.78.2.2 	$(ECHO) "========== run_ExportClientSSL_TS1"
 315 carolann.graves 1.75     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_ExportClientSSL_TS1
 316 kumpf           1.1      
 317 j.alex          1.66     #####################
 318                          #
 319                          # stresstests
 320                          #
 321                          stresstests:
 322                          	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_STRESS_TS1
 323                          
 324 jim.wunderlich  1.40     ####################
 325                          #
 326 jim.wunderlich  1.45     # perftests - simple performance test until we have better
 327                          #
 328                          # - Turns statistics on (uses TestInterop until we have better)
 329 carson.hovey    1.77     # - runs poststarttests suite and benchmarkTest
 330 jim.wunderlich  1.45     # - runs cimperf to displat the statistics
 331                          # - turns statistics off 
 332                          #
 333                          perftests: servertestsclean servertestssetup perfsuite
 334                          
 335                          perfsuite: FORCE
 336                          	$(PEGASUS_HOME)/bin/TestInterop on
 337                          	$(TIME_CMD) $(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest -f Makefile poststarttests
 338                          	@ $(ECHO) " "
 339                          	$(TIME_CMD) $(PEGASUS_HOME)/bin/TestClient
 340                          	@ $(ECHO) " "
 341                          	$(TIME_CMD) $(PEGASUS_HOME)/bin/benchmarkTest
 342                          	@ $(ECHO) " "
 343                          	@ $(ECHO) " "
 344                          	$(TIME_CMD) $(PEGASUS_HOME)/bin/cimperf
 345                          	@ $(ECHO) " "
 346                          	$(PEGASUS_HOME)/bin/TestInterop off
 347                          
 348 jim.wunderlich  1.40     
 349                          ####################
 350                          #
 351                          # alltests
 352                          #
 353                          alltests: unittests servertests
 354 tony            1.5      ifeq ($(PEGASUS_PLATFORM),WIN32_IX86_MSVC)
 355 kumpf           1.22     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
 356 mday            1.6      	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile uninstall
 357 tony            1.5      endif
 358 jim.wunderlich  1.40     	@ $(ECHO) "+++++ TestMakefile alltests Complete"
 359 kumpf           1.1      
 360                          ###############################################################################
 361 denise.eckstein 1.18     ##  Test Suite Definitions
 362                          ###############################################################################
 363                          
 364                          ###############################################################################
 365                          ##  OOP Test Suite 1: "Out-of-Process"(OOP) Provider Tests 
 366                          ##
 367                          ##  Configuration Options: forceProviderProcesses=true
 368                          ##
 369 jim.wunderlich  1.54     ##  If PEGASUS_DEFAULT_ENABLE_OOP is set, then tests are run with OOP disabled
 370 jim.wunderlich  1.51     ##  since tests have already been run with OOP enabled.
 371                          ##
 372                          ##
 373 denise.eckstein 1.18     ###############################################################################
 374 jim.wunderlich  1.54     ifeq ($(PEGASUS_DEFAULT_ENABLE_OOP),true)
 375 jim.wunderlich  1.52     OOP_TS1_CONFIG_OPTIONS = forceProviderProcesses=false
 376                          else
 377 denise.eckstein 1.18     OOP_TS1_CONFIG_OPTIONS = forceProviderProcesses=true
 378 kumpf           1.44     endif
 379 jim.wunderlich  1.51     
 380 denise.eckstein 1.18     OOP_TS1_TEST_CMDS = \
 381 jim.wunderlich  1.51             $(MAKE)@@--directory=$(PEGASUS_ROOT)@@Makefile@@-s@@poststarttests
 382 denise.eckstein 1.18     
 383                          run_OOP_TS1:
 384 denise.eckstein 1.26     	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 385 denise.eckstein 1.18                 CIMSERVER_CONFIG_OPTIONS="$(OOP_TS1_CONFIG_OPTIONS)" \
 386                                      TESTSUITE_CMDS="$(OOP_TS1_TEST_CMDS)"
 387 jim.wunderlich  1.51     
 388 denise.eckstein 1.18     ###############################################################################
 389                          
 390                          ###############################################################################
 391 carolann.graves 1.28     ##  IndInit Test Suite 1: IndicationService Initialization Tests 
 392                          ##
 393                          ##  Configuration Options: (none)
 394                          ##
 395                          ###############################################################################
 396                          IndInit_TS1_CONFIG_OPTIONS = 
 397                          IndInit_TS1a_TEST_CMDS = \
 398                          	$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Pegasus/IndicationService/tests/ProcessIndication@@IndInit_TS1a
 399                          IndInit_TS1b_TEST_CMDS = \
 400                          	$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Pegasus/IndicationService/tests/ProcessIndication@@IndInit_TS1b
 401                          
 402                          run_IndInit_TS1:
 403                          	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 404                                      CIMSERVER_CONFIG_OPTIONS="$(IndInit_TS1_CONFIG_OPTIONS)" \
 405                                      TESTSUITE_CMDS="$(IndInit_TS1a_TEST_CMDS)"
 406                          	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 407                                      CIMSERVER_CONFIG_OPTIONS="$(IndInit_TS1_CONFIG_OPTIONS)" \
 408                                      TESTSUITE_CMDS="$(IndInit_TS1b_TEST_CMDS)"
 409                          
 410                          ###############################################################################
 411 carolann.graves 1.67     ##  OOPProvFail Test Suite 1: OOP Provider Module Failure Tests
 412                          ##
 413                          ##  Configuration Options: forceProviderProcesses=true
 414                          ##  enableAuthentication=true, enableAuthentication=false
 415                          ##
 416                          ##  NOTE: Regardless of the setting of PEGASUS_DEFAULT_ENABLE_OOP, this test
 417                          ##  suite is always run with OOP enabled.  This test suite causes a provider to
 418                          ##  exit.  Running this test suite with OOP disabled would cause the cimserver
 419                          ##  to exit and the test suite to fail.
 420                          ##
 421                          ##  NOTE: The test is run once with authentication enabled, and once without
 422                          ##  authentication enabled.
 423                          ##
 424                          ###############################################################################
 425                          OOPProvFail_TS1a_CONFIG_OPTIONS = forceProviderProcesses=true enableAuthentication=true
 426                          OOPProvFail_TS1b_CONFIG_OPTIONS = forceProviderProcesses=true enableAuthentication=false
 427                          OOPProvFail_TS1_TEST_CMDS = \
 428                          	$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/OOPModuleFailureProvider/testclient@@OOPProvFail_TS1
 429                          
 430 carolann.graves 1.68     ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
 431 carolann.graves 1.67     run_OOPProvFail_TS1:
 432                          	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 433                                      CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS1a_CONFIG_OPTIONS)" \
 434                                      TESTSUITE_CMDS="$(OOPProvFail_TS1_TEST_CMDS)"
 435                          	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 436                                      CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS1b_CONFIG_OPTIONS)" \
 437                                      TESTSUITE_CMDS="$(OOPProvFail_TS1_TEST_CMDS)"
 438 carolann.graves 1.68     else
 439                          run_OOPProvFail_TS1: FORCE
 440                          	@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping run_OOPProvFail_TS1"
 441                          endif
 442 carolann.graves 1.67     
 443                          ###############################################################################
 444                          ##  OOPProvFail Test Suite 2: OOP Provider Module Failure on IndicationService 
 445                          ##                            Initialization Tests
 446                          ##
 447                          ##  Configuration Options: forceProviderProcesses=true
 448                          ##                         enableAuthentication=true
 449                          ##
 450                          ##  NOTE: Regardless of the setting of PEGASUS_DEFAULT_ENABLE_OOP, this test
 451                          ##  suite is always run with OOP enabled.  This test suite causes a provider to
 452                          ##  exit.  Running this test suite with OOP disabled would cause the cimserver
 453                          ##  to exit and the test suite to fail.
 454                          ##
 455                          ###############################################################################
 456                          OOPProvFail_TS2_CONFIG_OPTIONS = forceProviderProcesses=true enableAuthentication=true
 457                          OOPProvFail_TS2a_TEST_CMDS = \
 458                          	$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/OOPModuleFailureProvider/testclient@@OOPProvFail_TS2a
 459                          OOPProvFail_TS2b_TEST_CMDS = \
 460                          	$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/OOPModuleFailureProvider/testclient@@OOPProvFail_TS2b
 461                          
 462 carolann.graves 1.68     ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
 463 carolann.graves 1.67     run_OOPProvFail_TS2:
 464                          	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 465                                      CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS2_CONFIG_OPTIONS)" \
 466                                      TESTSUITE_CMDS="$(OOPProvFail_TS2a_TEST_CMDS)"
 467                          	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 468                                      CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS2_CONFIG_OPTIONS)" \
 469                                      TESTSUITE_CMDS="$(OOPProvFail_TS2b_TEST_CMDS)"
 470 carolann.graves 1.68     else
 471                          run_OOPProvFail_TS2: FORCE
 472                          	@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping run_OOPProvFail_TS2"
 473                          endif
 474 carolann.graves 1.67     
 475                          ###############################################################################
 476 carolann.graves 1.74     ##  OOPProvFail Test Suite 3: OOP Provider Module Failure CIM Server restart
 477                          ##                            Tests
 478                          ##
 479                          ##  Configuration Options: forceProviderProcesses=true
 480                          ##                         enableAuthentication=true
 481                          ##
 482                          ##  NOTE: Regardless of the setting of PEGASUS_DEFAULT_ENABLE_OOP, this test
 483                          ##  suite is always run with OOP enabled.  This test suite causes a provider to
 484                          ##  exit.  Running this test suite with OOP disabled would cause the cimserver
 485                          ##  to exit and the test suite to fail.
 486                          ##
 487                          ###############################################################################
 488                          OOPProvFail_TS3_CONFIG_OPTIONS = forceProviderProcesses=true enableAuthentication=true
 489                          OOPProvFail_TS3a_TEST_CMDS = \
 490                          	$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/OOPModuleFailureProvider/testclient@@OOPProvFail_TS3a
 491                          OOPProvFail_TS3b_TEST_CMDS = \
 492                          	$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/OOPModuleFailureProvider/testclient@@OOPProvFail_TS3b
 493                          
 494                          ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
 495                          run_OOPProvFail_TS3:
 496                          	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 497 carolann.graves 1.74                 CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS3_CONFIG_OPTIONS)" \
 498                                      TESTSUITE_CMDS="$(OOPProvFail_TS3a_TEST_CMDS)"
 499                          	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 500                                      CIMSERVER_CONFIG_OPTIONS="$(OOPProvFail_TS3_CONFIG_OPTIONS)" \
 501                                      TESTSUITE_CMDS="$(OOPProvFail_TS3b_TEST_CMDS)"
 502                          else
 503                          run_OOPProvFail_TS3: FORCE
 504                          	@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping run_OOPProvFail_TS3"
 505                          endif
 506                          
 507                          ###############################################################################
 508 denise.eckstein 1.47     ##  Indication SSL Test Suite 1: Indication Testing over HTTPS
 509                          ##
 510                          ##  Configuration Options: (none)
 511                          ##
 512                          ###############################################################################
 513 denise.eckstein 1.50     INDSSL_TS1a_CONFIG_OPTIONS = enableHttpsConnection=true enableAuthentication=false
 514 denise.eckstein 1.47     INDSSL_TS1a_TEST_CMDS = \
 515 denise.eckstein 1.50     	$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/IndicationStressTestProvider/testclient@@-f@@Makefile@@run_TS1_AuthenticationDisabled
 516                          
 517                          INDSSL_TS1b_CONFIG_OPTIONS = enableHttpsConnection=true enableAuthentication=true sslClientVerificationMode=required
 518 denise.eckstein 1.47     INDSSL_TS1b_TEST_CMDS = \
 519 denise.eckstein 1.50     	$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Providers/TestProviders/IndicationStressTestProvider/testclient@@-f@@Makefile@@run_TS1_AuthenticationEnabled
 520                          
 521 denise.eckstein 1.47     
 522                          ifdef PEGASUS_HAS_SSL
 523 jim.wunderlich  1.53     ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
 524 jim.wunderlich  1.61     run_INDSSL_TS1: EnableUsers Create_SSL_Certificate_ignore
 525 denise.eckstein 1.47     	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 526 denise.eckstein 1.50                 CIMSERVER_CONFIG_OPTIONS="$(INDSSL_TS1a_CONFIG_OPTIONS)" \
 527 denise.eckstein 1.47                 TESTSUITE_CMDS="$(INDSSL_TS1a_TEST_CMDS)"
 528                          	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 529 denise.eckstein 1.50                 CIMSERVER_CONFIG_OPTIONS="$(INDSSL_TS1b_CONFIG_OPTIONS)" \
 530 denise.eckstein 1.47                 TESTSUITE_CMDS="$(INDSSL_TS1b_TEST_CMDS)"
 531                          else
 532                          run_INDSSL_TS1: FORCE
 533 jim.wunderlich  1.53     	@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping run_INDSSL_TS1"	
 534                          endif
 535                          else
 536                          run_INDSSL_TS1: FORCE
 537                          	@ $(ECHO) "+++++ PEGASUS_HAS_SSL not defined: Skipping run_INDSSL_TS1"
 538 denise.eckstein 1.47     endif
 539                          
 540                          
 541                          ###############################################################################
 542                           
 543                          ###############################################################################
 544 nag.boranna     1.27     ##  SSL Test Suite 1: SSL Tests
 545                          ##
 546                          ##  Configuration Options: enableAuthentication=true
 547                          ##                         enableHttpsConnection=true
 548                          ##                         sslClientVerificationMode=optional
 549                          ##                         sslTrustStoreUserName=$(CURRENT_USER)
 550                          ##
 551                          ###############################################################################
 552                          SSL_TS1_CONFIG_OPTIONS = enableHttpsConnection=true enableAuthentication=true \
 553                                 sslClientVerificationMode=optional sslTrustStoreUserName=$(CURRENT_USER)
 554                          SSL_TS1_TEST_CMDS = \
 555 sushma.fernandes 1.71            $(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Clients/cimtrust/tests@@SSLCertificateTest1
 556 sushma.fernandes 1.72     SSL_TS2_TEST_CMDS = \
 557                                  $(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Clients/cimcrl/tests@@SSLCRLTest1
 558 nag.boranna      1.27     
 559 jim.wunderlich   1.39     ifdef PEGASUS_HAS_SSL
 560 jim.wunderlich   1.53     ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
 561 jim.wunderlich   1.39     run_SSL_TS1: FORCE
 562 nag.boranna      1.27     	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 563                                       CIMSERVER_CONFIG_OPTIONS="$(SSL_TS1_CONFIG_OPTIONS)" \
 564                                       TESTSUITE_CMDS="$(SSL_TS1_TEST_CMDS)"
 565 sushma.fernandes 1.72     	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 566                                       CIMSERVER_CONFIG_OPTIONS="$(SSL_TS1_CONFIG_OPTIONS)" \
 567                                       TESTSUITE_CMDS="$(SSL_TS2_TEST_CMDS)"
 568 jim.wunderlich   1.39     else
 569                           run_SSL_TS1: FORCE
 570 jim.wunderlich   1.53     	@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping run_SSL_TS1"	
 571                           endif
 572                           else
 573                           run_SSL_TS1: FORCE
 574                           	@ $(ECHO) "+++++ PEGASUS_HAS_SSL not defined: Skipping run_SSL_TS1 poststarttest"
 575 jim.wunderlich   1.39     
 576                           endif
 577                           
 578 jim.wunderlich   1.61     ############################################################################
 579                           # 
 580                           # Create_SSL_Certificate
 581                           #
 582                           # create a certificate that can be used for certification testing.
 583                           # It is currently used by the following tests:
 584                           #            -run_INDSSL_TS1
 585                           #
 586                           Create_SSL_Certificate_ignore: FORCE
 587                           	-$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile Create_SSL_Certificate
 588                           
 589                           Create_SSL_Certificate: FORCE
 590                           ifdef PEGASUS_HAS_SSL
 591                           ifdef PEGASUS_TEST_USER_DEFINED
 592                           	$(ECHO) "Creating SSL certificate for test"
 593 sushma.fernandes 1.71     	cimtrust -a -U $(PEGASUS_TEST_USER_ID) -f $(PEGASUS_HOME)/server.pem -Ts
 594 jim.wunderlich   1.61     endif
 595                           else
 596                           	$(ECHO) "PEGASUS_HAS_SSL not defined - Not Creating SSL certificate for test"
 597                           endif
 598                           
 599 kumpf            1.46     ###############################################################################
 600                           ##  G11N Test Suite 1: Globalization Tests 
 601                           ##
 602                           ##  Configuration Options: forceProviderProcesses=false
 603                           ##
 604                           ###############################################################################
 605                           G11N_TS1_CONFIG_OPTIONS = forceProviderProcesses=false
 606                           G11N_TS1_TEST_CMDS = \
 607                                   $(MAKE) --directory $(PEGASUS_ROOT)/src/Clients/g11ntest \
 608                                       -f Makefile g11ntest
 609                           
 610                           run_G11N_TS1:
 611                           	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 612                                       CIMSERVER_CONFIG_OPTIONS="$(G11N_TS1_CONFIG_OPTIONS)" \
 613                                       TESTSUITE_CMDS="$(G11N_TS1_TEST_CMDS)"
 614 j.alex           1.66     
 615                           ###############################################################################
 616                           ##  Stress Test Suite 1:  Default Stress Tests
 617                           ##
 618                           ##  Configuration Options: (none)
 619                           ##
 620                           ###############################################################################
 621                           STRESS_TS1_CONFIG_OPTIONS =
 622                           STRESS_TS1_TEST_CMDS = \
 623                                   TestStressTestController
 624                           
 625                           run_STRESS_TS1:
 626                           	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 627                                       CIMSERVER_CONFIG_OPTIONS="$(STRESS_TS1_CONFIG_OPTIONS)" \
 628                                       TESTSUITE_CMDS="$(STRESS_TS1_TEST_CMDS)"
 629 kumpf            1.46     ###############################################################################
 630                           
 631 denise.eckstein  1.73     ###############################################################################
 632                           ##  SDK Test Suite 1:  SDK Tests
 633                           ##
 634                           ##  Configuration Options: (none)
 635                           ##
 636                           ###############################################################################
 637                           SDK_TS1_CONFIG_OPTIONS =
 638                           SDK_TS1_TEST_CMDS = \
 639                                   $(MAKE) --directory $(PEGASUS_ROOT)/src/SDK/samples \
 640                                       -f Makefile testSDK 
 641                           
 642                           ifeq ($(PEGASUS_TEST_SDK),true)
 643                           run_SDK_TS1: FORCE
 644                           	$(MAKE) --directory=$(PEGASUS_ROOT)/mak \
 645                                       -f $(PEGASUS_ROOT)/mak/SDKMakefile stageINCLUDE \
 646                                       PEGASUS_STAGING_DIR=$(PEGASUS_HOME) \
 647                                       PEGASUS_INCLUDE_DIR=/include
 648                           	$(MAKE) --directory=$(PEGASUS_ROOT)/src/SDK/samples \
 649                                       -f Makefile clean
 650                           	$(MAKE) --directory=$(PEGASUS_ROOT)/src/SDK/samples \
 651                                       -f Makefile PEGASUS_INCLUDE_DIR=$(PEGASUS_HOME)/include
 652 denise.eckstein  1.73     	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 653                                       CIMSERVER_CONFIG_OPTIONS="$(SDK_TS1_CONFIG_OPTIONS)" \
 654                                       TESTSUITE_CMDS="$(SDK_TS1_TEST_CMDS)"
 655                           else
 656                           run_SDK_TS1: FORCE
 657                           	@ $(ECHO) "+++++ PEGASUS_TEST_SDK is not true: Skipping run_SDK_TS1"	
 658                           endif
 659                           ###############################################################################
 660 jim.wunderlich   1.39     
 661 nag.boranna      1.27     ###############################################################################
 662 carolann.graves  1.75     ##  Export Client SSL Test Suite 1:
 663                           ##
 664                           ##  Configuration Options: enableHttpsConnection=true
 665                           ##
 666                           ###############################################################################
 667                           ExportClientSSL_TS1_CONFIG_OPTIONS = enableHttpsConnection=true
 668                           ExportClientSSL_TS1_TEST_CMDS = \
 669                           	$(MAKE)@@--directory=$(PEGASUS_ROOT)/src/Pegasus/ExportClient/tests/ExportClient@@-f@@Makefile@@runExportClientSSL_TS1
 670                           
 671                           ifdef PEGASUS_HAS_SSL
 672                           run_ExportClientSSL_TS1:
 673                           	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 674                                       CIMSERVER_CONFIG_OPTIONS="$(ExportClientSSL_TS1_CONFIG_OPTIONS)" \
 675                                       TESTSUITE_CMDS="$(ExportClientSSL_TS1_TEST_CMDS)"
 676                           else
 677                           run_ExportClientSSL_TS1: FORCE
 678                           	@ $(ECHO) "+++++ PEGASUS_HAS_SSL not defined: Skipping run_ExportClientSSL_TS1"
 679                           endif
 680                           
 681                           ###############################################################################
 682 nag.boranna      1.27     
 683 jim.wunderlich   1.34     
 684                           
 685 w.otsuka         1.76     ###############################################################################
 686                           ##  cimsub CLI Test Suite 1:  PG_InterOp Tests
 687                           ##
 688                           ##  Configuration Options: (none)
 689                           ##
 690                           ###############################################################################
 691                           CIMSUB_INTEROP_CONFIG_OPTIONS =
 692                           CIMSUB_INTEROP_TEST_CMDS = \
 693                           	$(MAKE) --directory \
 694                                       $(PEGASUS_ROOT)/src/Clients/cimsub/tests/testscriptInterOp \
 695                                       -f Makefile cimsubTest_InterOp
 696                           run_Cimsub_InterOp: FORCE
 697                           	$(MAKE) -f $(PEGASUS_ROOT)/TestMakefile runTestSuite \
 698                                       CIMSERVER_CONFIG_OPTIONS="$(CIMSUB_INTEROP_CONFIG_OPTIONS)" \
 699                                       TESTSUITE_CMDS="$(CIMSUB_INTEROP_TEST_CMDS)"
 700 mike             1.78.2.2 
 701 w.otsuka         1.76     ###############################################################################
 702                           
 703                           ###############################################################################
 704                           
 705                           
 706                           
 707 jim.wunderlich   1.34     ##############################################################################
 708                           ##
 709                           ## TestXMLRepository rule is used to run the poststarttests suite on
 710                           ## the XML Repository built using cimmofl
 711                           ##
 712                           ## TestXMLRepositoryServer rule is used to run the poststarttests suite on
 713                           ## the XML Repository built using cimmof
 714                           ##
 715                           ## TestXMLCmpRepository rule is used to run the poststarttest suite on 
 716                           ## the XML Compressed Repository built using cimmofl
 717                           ##
 718                           
 719                           ############################
 720                           ##
 721                           ## TestXMLRepository
 722                           ##
 723                           
 724                           TestXMLRepository: TestXMLClean TestXMLBuildRepo  TestXMLRepo
 725                           	@ $(ECHO) TestXMLRepository +++++ passed all test
 726                           
 727                           ############################
 728 jim.wunderlich   1.34     ##
 729                           ## TestXMLRepositoryServer
 730                           ##
 731                           TestXMLRepositoryServer: TestXMLClean  TestXMLBuildRepoServ TestXMLRepo
 732                           	@ $(ECHO) TestXMLRepositoryServer +++++ passed all test
 733                           
 734                           ############################
 735                           ##
 736                           ## TestXMLCmpRepository -  run poststarttest on Compressed BIN Repository
 737                           ##
 738                           ifdef PEGASUS_ENABLE_COMPRESSED_REPOSITORY
 739                           TestXMLCmpRepository: FORCE
 740                           	@ $(ECHO) TestXMLCmpRepository +++++ Repository compressed by default - nothing more to test.
 741                           	@ $(ECHO) TestXMLCmpRepository +++++ passed all test
 742                           else
 743                           
 744                           ifdef PEGASUS_ENABLE_COMPRESSED_REPOSITORY_TEST
 745                           
 746                           TestXMLCmpRepository: TestXMLClean  TestCmpBuild TestXMLBuildRepo TestXMLRepo TestRegBuild
 747                           	@ $(ECHO) TestXMLCmpRepository +++++ passed all test
 748                           else
 749 jim.wunderlich   1.34     TestXMLCmpRepository: FORCE
 750                           	@ $(ECHO) TestXMLCmpRepository +++++ Not tested 
 751                           	@ $(ECHO) TestXMLCmpRepository +++++ refer to readme.compressed_repository
 752                           	@ $(ECHO) TestXMLCmpRepository +++++ to enable: set PEGASUS_ENABLE_COMPRESSED_REPOSITORY_TEST=true 
 753                           endif
 754                           endif
 755                           
 756                           ###########################
 757                           ##
 758                           ## TestXMLClean
 759                           ##
 760                           TestXMLClean: FORCE
 761                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop 
 762                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryclean REPOSITORY_NAME=repository_xml
 763                           
 764                           
 765                           ###########################
 766                           ##
 767                           ## TestXMLStartServer
 768                           ##
 769                           TestXMLStartServer: FORCE
 770 jim.wunderlich   1.34     	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run
 771                           	- $(MKDIRHIER) $(PEGASUS_HOME)/repository_xml
 772                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstart CIMSERVER_CONFIG_OPTIONS="repositoryDir=$(PEGASUS_HOME)/repository_xml"
 773 mike             1.78.2.3 	$(SLEEP) 5
 774 jim.wunderlich   1.34     
 775                           ####
 776                           #### The following caused the cimserver to fail on startup
 777                           ####
 778                           ####	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstart CIMSERVER_CONFIG_OPTIONS="enableBinRepository=false repositoryDir=$(PEGASUS_HOME)/repository_xml"
 779                           
 780                           ###########################
 781                           ##
 782                           ## TestXMLBuildRepo
 783                           ##
 784                           TestXMLBuildRepo: FORCE
 785                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository REPOSITORY_NAME=repository_xml REPOSITORY_MODE=XML
 786                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository REPOSITORY_NAME=repository_xml REPOSITORY_MODE=XML
 787                           
 788                           
 789                           ###########################
 790                           ##
 791                           ## TestXMLBuildRepoServ
 792                           ##
 793                           TestXMLBuildRepoServ: TestXMLStartServer
 794                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryServer REPOSITORY_NAME=repository_xml REPOSITORY_MODE=XML
 795 jim.wunderlich   1.34     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepositoryServer REPOSITORY_NAME=repository_xml REPOSITORY_MODE=XML
 796                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop 
 797                           
 798                           
 799                           ###########################
 800                           ##
 801                           ## TestXMLRepo
 802                           ##
 803 jim.wunderlich   1.40     TestXMLRepo: servertestsclean
 804 jim.wunderlich   1.35     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile TestXMLStartServer
 805 jim.wunderlich   1.34     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests REPOSITORY_NAME=repository_xml REPOSITORY_MODE=XML
 806                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop 
 807                           
 808                           
 809                           
 810                           
 811                           
 812                           
 813 jim.wunderlich   1.29     ##############################################################################
 814                           ##
 815 jim.wunderlich   1.31     ## TestBinRepository rule is used to run the poststarttests suite on
 816 jim.wunderlich   1.33     ## the Binary Repository built using cimmofl
 817 jim.wunderlich   1.29     ##
 818 jim.wunderlich   1.31     ## TestBinRepositoryServer rule is used to run the poststarttests suite on
 819 jim.wunderlich   1.33     ## the Binary Repository built using cimmof
 820                           ##
 821                           ## TestBinCmpRepository rule is used to run the poststarttest suite on 
 822                           ## the Binry Compressed Repository built using cimmofl
 823 jim.wunderlich   1.29     ##
 824 jim.wunderlich   1.31     
 825                           ############################
 826 jim.wunderlich   1.29     ##
 827 jim.wunderlich   1.31     ## TestBinRepository
 828 jim.wunderlich   1.29     ##
 829 jim.wunderlich   1.33     ### bug 3011 disabled Binary Repository testing on LINUX_IA64 to allow
 830                           ### the nightly tests to run
 831                           
 832 jim.wunderlich   1.31     TestBinRepository: TestBinClean TestBinBuildRepo  TestBinRepo
 833 jim.wunderlich   1.33     	@ $(ECHO) TestBinRepository +++++ passed all test
 834 jim.wunderlich   1.36     
 835 jim.wunderlich   1.29     
 836 jim.wunderlich   1.31     ############################
 837                           ##
 838                           ## TestBinRepositoryServer
 839                           ##
 840                           TestBinRepositoryServer: TestBinClean  TestBinBuildRepoServ TestBinRepo
 841 jim.wunderlich   1.33     	@ $(ECHO) TestBinRepositoryServer +++++ passed all test
 842                           
 843                           ############################
 844                           ##
 845                           ## TestBinCmpRepository -  run poststarttest on Compressed BIN Repository
 846                           ##
 847                           ifdef PEGASUS_ENABLE_COMPRESSED_REPOSITORY
 848 jim.wunderlich   1.34     TestBinCmpRepository: FORCE
 849 jim.wunderlich   1.33     	@ $(ECHO) TestBinCmpRepository +++++ Repository compressed by default - nothing more to test.
 850                           	@ $(ECHO) TestBinCmpRepository +++++ passed all test
 851                           else
 852                           
 853                           ifdef PEGASUS_ENABLE_COMPRESSED_REPOSITORY_TEST
 854                           
 855 jim.wunderlich   1.34     TestBinCmpRepository: TestBinClean  TestCmpBuild TestBinBuildRepo TestBinRepo TestRegBuild
 856 jim.wunderlich   1.33     	@ $(ECHO) TestBinCmpRepository +++++ passed all test
 857                           else
 858 jim.wunderlich   1.34     TestBinCmpRepository: FORCE
 859 jim.wunderlich   1.33     	@ $(ECHO) TestBinCmpRepository +++++ Not tested 
 860                           	@ $(ECHO) TestBinCmpRepository +++++ refer to readme.compressed_repository
 861                           	@ $(ECHO) TestBinCmpRepository +++++ to enable: set PEGASUS_ENABLE_COMPRESSED_REPOSITORY_TEST=true 
 862                           endif
 863                           endif
 864                           
 865                           
 866 jim.wunderlich   1.31     ###########################
 867                           ##
 868                           ## TestBinClean
 869                           ##
 870 jim.wunderlich   1.34     TestBinClean: FORCE
 871 jim.wunderlich   1.31     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop 
 872                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryclean REPOSITORY_NAME=repository_bin
 873 jim.wunderlich   1.29     
 874 jim.wunderlich   1.31     
 875                           ###########################
 876 jim.wunderlich   1.29     ##
 877 jim.wunderlich   1.31     ## TestBinStartServer
 878 jim.wunderlich   1.29     ##
 879 jim.wunderlich   1.34     TestBinStartServer: FORCE
 880 jim.wunderlich   1.30     	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run
 881 jim.wunderlich   1.31     	- $(MKDIRHIER) $(PEGASUS_HOME)/repository_bin
 882                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstart CIMSERVER_CONFIG_OPTIONS="enableBinaryRepository=true repositoryDir=$(PEGASUS_HOME)/repository_bin"
 883 mike             1.78.2.3 	$(SLEEP) 5
 884 jim.wunderlich   1.31     
 885                           ###########################
 886 jim.wunderlich   1.29     ##
 887 jim.wunderlich   1.31     ## TestBinBuildRepo
 888 jim.wunderlich   1.29     ##
 889 jim.wunderlich   1.34     TestBinBuildRepo: FORCE
 890 jim.wunderlich   1.29     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN
 891                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN
 892 jim.wunderlich   1.31     
 893                           
 894                           ###########################
 895                           ##
 896                           ## TestBinBuildRepoServ
 897                           ##
 898                           TestBinBuildRepoServ: TestBinStartServer
 899                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryServer REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN
 900                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepositoryServer REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN
 901                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop 
 902                           
 903                           
 904                           ###########################
 905                           ##
 906                           ## TestBinRepo
 907                           ##
 908 jim.wunderlich   1.40     TestBinRepo: servertestsclean 
 909 jim.wunderlich   1.35     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile TestBinStartServer
 910 jim.wunderlich   1.29     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN
 911 jim.wunderlich   1.31     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop 
 912 jim.wunderlich   1.29     
 913                           
 914                           
 915 jim.wunderlich   1.34     
 916                           ############################
 917                           ##
 918                           ## TestCmpBuild - used to compile the repository for compression
 919                           ##
 920                           TestCmpBuild: FORCE
 921                           	@ $(MAKE) "-SC" $(ROOT)/src/Pegasus/Repository clean
 922                           	@ $(MAKE) "-SC" $(ROOT)/src/Pegasus/Repository depend PEGASUS_ENABLE_COMPRESSED_REPOSITORY=1
 923                           	@ $(MAKE) "-SC" $(ROOT)/src/Pegasus/Repository PEGASUS_ENABLE_COMPRESSED_REPOSITORY=1
 924                           
 925                           
 926                           ############################
 927                           ##
 928                           ## TestRegBuild - used to compile the repository for no compression
 929                           ##
 930                           TestRegBuild: FORCE
 931                           	@ $(MAKE) "-SC" $(ROOT)/src/Pegasus/Repository clean
 932                           	@ $(MAKE) "-SC" $(ROOT)/src/Pegasus/Repository depend 
 933                           	@ $(MAKE) "-SC" $(ROOT)/src/Pegasus/Repository 
 934                           
 935                           
 936 nag.boranna      1.27     ###############################################################################
 937 kumpf            1.1      ##
 938                           ## Trace Configuration
 939                           ##
 940 jim.wunderlich   1.43     ## Options: see usagetrace rule
 941                           ##
 942                           ###############################################################################
 943                           
 944                           usagetrace: FORCE
 945                           	$(USAGE)
 946 jim.wunderlich   1.60     	$(USAGE)"TestMakefile Trace Commands: "
 947                           	$(USAGE)"  The cimserver must be running when using W=c which is the default for W"
 948 jim.wunderlich   1.43     	$(USAGE)
 949 jim.wunderlich   1.60     	$(USAGE)" traceon  W=[current/planned(c,p):   Enables all tracing."
 950                           	$(USAGE)" traceoff W=[current/planned(c,p):   Disables all tracing."
 951                           	$(USAGE)" tracesettings:                      Displays all trace settings."
 952                           	$(USAGE)" tracecomp:                          Displays a trace componenets list."
 953                           	$(USAGE)" traceon-CL C=[comp] L=[level(1,2,3,4)] W=[current/planned(c,p): "
 954                           	$(USAGE)"                           Enables tracing on component C at trace level L."
 955                           	$(USAGE)
 956                           	$(USAGE)" W defaults to c in the above commands where W can be specified" 
 957 jim.wunderlich   1.43     	$(USAGE)
 958 jim.wunderlich   1.60     	$(USAGE)"  Usage examples:"
 959                           	$(USAGE)"   traceon       turns on trace in current server config"
 960                           	$(USAGE)"   traceon W=c   turns on trace in current server config"
 961                           	$(USAGE)"   traceon W=p   turns on trace in planned server config"
 962                           	$(USAGE)"   traceoff      turns on trace in current server config"
 963                           	$(USAGE)"   traceoff W=c  turns on trace in current server config"
 964                           	$(USAGE)"   traceoff W=p  turns on trace in planned server config"
 965                           	$(USAGE)
 966                           	$(USAGE)"   traceon-CL C=DiscardedData L=3 W=c"
 967                           	$(USAGE)"     Turns on trace for DiscardedData at level 3 in current server config"
 968                           	$(USAGE)"   traceon-CL C=DiscardedData L=3 W=p"
 969                           	$(USAGE)"     Turns on trace for DiscardedData at level 3 in planned server config"
 970 jim.wunderlich   1.43     	$(USAGE)
 971                           	$(USAGE)
 972                           
 973                           traceon: FORCE
 974 jim.wunderlich   1.60     	@ cimconfig -s traceComponents=ALL -$W 
 975                           	@ cimconfig -s traceLevel=3 -$W
 976                           	$(MAKE) -f $(ROOT)/TestMakefile tracesettings
 977                           
 978 jim.wunderlich   1.43     
 979                           traceoff: FORCE
 980 jim.wunderlich   1.60     	@ cimconfig -s traceComponents=  -$W
 981                           	$(MAKE) -f $(ROOT)/TestMakefile tracesettings
 982 jim.wunderlich   1.43     
 983                           
 984                           tracesettings: FORCE
 985                           	@ $(ECHO) " "
 986 jim.wunderlich   1.60     	cimconfig -g traceComponents -c -p
 987 jim.wunderlich   1.43     	@ $(ECHO) " "
 988 jim.wunderlich   1.60     	cimconfig -g traceLevel -c -p
 989 jim.wunderlich   1.43     	@ $(ECHO) " "
 990 jim.wunderlich   1.60     	cimconfig -g traceFilePath -c -p
 991 jim.wunderlich   1.43     	@ $(ECHO) " "
 992                           
 993                           traceon-CL: FORCE
 994 jim.wunderlich   1.60     	@ cimconfig -s traceComponents=$C -$W
 995                           	@ cimconfig -s traceLevel=$L -$W
 996                           	$(MAKE) -f $(ROOT)/TestMakefile tracesettings
 997 jim.wunderlich   1.43     
 998                           tracecomp: FORCE
 999                           	$(USAGE)
1000                           	$(USAGE)"Trace component list:"
1001                           	$(USAGE)
1002                           	$(USAGE)"Channel"
1003                           	$(USAGE)"XmlParser"
1004                           	$(USAGE)"XmlWriter"
1005                           	$(USAGE)"XmlReader"
1006                           	$(USAGE)"XmlIO"
1007                           	$(USAGE)"Http"
1008                           	$(USAGE)"CimData"
1009                           	$(USAGE)"ProvManager"
1010                           	$(USAGE)"Repository"
1011                           	$(USAGE)"Dispatcher"
1012                           	$(USAGE)"OsAbstraction"
1013                           	$(USAGE)"Config"
1014                           	$(USAGE)"IndDelivery"
1015                           	$(USAGE)"IndHandler"
1016                           	$(USAGE)"Authentication"
1017                           	$(USAGE)"Authorization"
1018 jim.wunderlich   1.43     	$(USAGE)"UserManager"
1019                           	$(USAGE)"SubscriptionService"
1020                           	$(USAGE)"Registration"
1021                           	$(USAGE)"Shutdown"
1022                           	$(USAGE)"Server"
1023                           	$(USAGE)"IndicationService"
1024                           	$(USAGE)"IndicationServiceInternal"
1025                           	$(USAGE)"ConfigurationManager"
1026                           	$(USAGE)"MessageQueueService"
1027                           	$(USAGE)"ProviderManager"
1028                           	$(USAGE)"ObjectResolution"
1029                           	$(USAGE)"WQL"
1030                           	$(USAGE)"CQL"
1031                           	$(USAGE)"Thread"
1032                           	$(USAGE)"MetaDispatcher"
1033                           	$(USAGE)"IPC"
1034                           	$(USAGE)"IndicationHandlerService"
1035                           	$(USAGE)"CIMExportRequestDispatcher"
1036                           	$(USAGE)"Memory"
1037                           	$(USAGE)"SSL"
1038                           	$(USAGE)"ControlProvider"
1039 jim.wunderlich   1.43     	$(USAGE)"AsyncOpNode"
1040                           	$(USAGE)"CIMOMHandle"
1041                           	$(USAGE)"BinaryMessageHandler"
1042                           	$(USAGE)"L10N"
1043                           	$(USAGE)"ExportClient"
1044                           	$(USAGE)"Listener"
1045                           	$(USAGE)"DiscardedData"
1046                           	$(USAGE)"ProviderAgent"
1047                           	$(USAGE)
1048                           
1049                           ###############################################################################
1050                           ##
1051                           ## Trace Configuration - Old rules being deprecated
1052                           ##
1053 kumpf            1.1      ## Options:
1054                           ##      XMLTraceOn: Enables XML request and response tracing.
1055                           ##      ProviderLoadTraceOn: Enables Provider load tracing.
1056                           ##      XML+ProviderLoadTraceOn: Enables both XML request/response and Provider
1057                           ##                                 load tracing.
1058                           ##      AllTraceOn: Enables all tracing.
1059                           ##      AllTraceOff: Disables all tracing.
1060                           ##      list: Lists trace settings.
1061                           ##
1062                           ###############################################################################
1063                           
1064                           XMLTraceOn:
1065                           	cimconfig -s traceComponents=XmlIO -c
1066                           	cimconfig -s traceLevel=3 -c
1067                           	cimconfig -g traceComponents
1068                           	cimconfig -g traceLevel
1069                           
1070                           ProviderLoadTraceOn:
1071                           	cimconfig -s traceComponents=ProvManager,OsAbstraction
1072                           	cimconfig -s traceLevel=3 -c
1073                           	cimconfig -g traceComponents
1074 kumpf            1.1      	cimconfig -g traceLevel
1075                           
1076                           XML+ProviderLoadTraceOn:
1077                           	cimconfig -s traceComponents=XmlIO,ProvManager,OsAbstraction
1078                           	cimconfig -s traceLevel=3 -c
1079                           	cimconfig -g traceComponents
1080                           	cimconfig -g traceLevel
1081                           
1082 jim.wunderlich   1.43     AllTraceOn: traceon
1083                           
1084                           AllTraceOff: traceoff
1085 kumpf            1.1      
1086 jim.wunderlich   1.43     list: tracesettings
1087 kumpf            1.1      
1088 jim.wunderlich   1.55     #########################################################################
1089                           # standardtests
1090                           #
1091                           # More testing options...
1092                           #
1093                           # The standard test seem to contain additional test that may not be able 
1094                           # to run on all platforms so they have been grouped here for now rather than
1095                           # being included in the serversuite rule.
1096                           #
1097                           # The test are:
1098                           #      TestCimmof
1099                           #      TestNoSecurity
1100                           #      TestLocalSecurity
1101                           #      TestRemoteSecurity
1102                           #      TestAuthorization
1103                           #
1104                           # NOTE: The TestsNoSecurity test is comprised of DisableSecurity and
1105                           #       TestNoSecurity.
1106                           #
1107                           # NOTE: The TestNoSecurity step runs the servertests which builds the
1108                           #       the repository that is then left in place for the remaining tests.
1109 jim.wunderlich   1.55     #       The cimof test must be before the TestNosecurity step as it removes
1110                           #       the repository builds a new one with cimmofl and another one with
1111                           #       cimmof and then compares them. 
1112                           #
1113                           # NOTE: The Authentication test is comprised of EnableAuthentication, 
1114                           #       TestLocalSecurity and TestRemoteSecurity. 
1115                           #
1116                           # NOTE: The Authorization test is comprised of EnableAuthorization and
1117                           #       TestAuthorization. 
1118                           #
1119                           # NOTE: The EnableAuthentication and EnableAuthorization steps require 
1120                           #       root access. Pegasus doesn't currently have the infrastructure
1121                           #       in place to run the server as root and run the test as non-root.
1122                           #       Rather than run everything, server, tests, providers, clients etc.
1123                           #       as root many testers prefer to run the tests as non-root. Setting
1124                           #       PEGASUS_DISABLE_PRIVILEGED_TESTS in the environment helps to 
1125                           #       facilitate that.
1126                           #
1127 kumpf            1.1      
1128 jim.wunderlich   1.40     standardtests: FORCE
1129 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i DisableSecurity
1130                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile TestCimmof
1131                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile TestNoSecurity
1132 jim.wunderlich   1.55     ifndef PEGASUS_DISABLE_PRIVILEGED_TESTS
1133 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile EnableAuthentication
1134                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile TestLocalSecurity
1135                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile TestRemoteSecurity
1136                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile EnableAuthorization
1137                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile TestAuthorization
1138 jim.wunderlich   1.53     else
1139 jim.wunderlich   1.55     	@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping EnableAuthentication, TestLocalSecurity, and TestRemoteSecurity "
1140 jim.wunderlich   1.53     	@ $(ECHO) "+++++ PEGASUS_DISABLE_PRIVILEGED_TESTS defined: Skipping EnableAuthorization and TestAuthorization "	
1141                           endif
1142 jim.wunderlich   1.40     	@ $(ECHO) "+++++ TestMakefile standardtests complete"
1143 kumpf            1.1      
1144                           TestNoSecurity:
1145 jim.wunderlich   1.56     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile servertests
1146 kumpf            1.24     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile startcimWithoutSSL
1147 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile RunTestClientLocal
1148 kumpf            1.1      
1149                           TestLocalSecurity:
1150 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile RunTestClientLocal
1151 kumpf            1.1      	$(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest -f Makefile poststarttests HOSTNAME= PORT= USER= PASSWORD= SECURITY_ENABLED=true
1152                           
1153                           TestRemoteSecurity:
1154 jim.wunderlich   1.59     	TestClient -user $(PEGASUS_TEST_USER_ID) -password $(PEGASUS_TEST_USER_PASS) $(system):5988
1155                           	$(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest/static -f Makefile poststarttests HOSTNAME=-h$(system) USER=-u$(PEGASUS_TEST_USER_ID) PASSWORD=-w$(PEGASUS_TEST_USER_PASS) SECURITY_ENABLED=true
1156 kumpf            1.1      
1157                           TestAuthorization:
1158 jim.wunderlich   1.59     	TestPegClientDeleteNamespace -a -user $(PEGASUS_TEST_USER_ID) -password $(PEGASUS_TEST_USER_PASS)
1159 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile RunTestClientLocal
1160 jim.wunderlich   1.59     	TestClient -user $(PEGASUS_TEST_USER_ID) -password $(PEGASUS_TEST_USER_PASS) $(system):5988
1161                           	$(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest/static -f Makefile poststarttests HOSTNAME=-h$(system) USER=-u$(PEGASUS_TEST_USER_ID) PASSWORD=-w$(PEGASUS_TEST_USER_PASS) SECURITY_ENABLED=true
1162 kumpf            1.1      
1163                           TestSubscriptions:
1164 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile DisableSecurity
1165 kumpf            1.1      	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository
1166                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository
1167 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile startcimWithoutSSL
1168 david.dillard    1.15     	$(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest/cimv2/Subscription -f Makefile poststarttests
1169 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile cimstop
1170 kumpf            1.1      
1171                           TestCimmof:
1172 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Testcimmof poststarttests
1173 kumpf            1.1      
1174                           RunTestClientLocal:
1175                           	TestClient -local
1176                           
1177                           DisableSecurity:
1178 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
1179 kumpf            1.1      	cimconfig -s enableAuthentication=false -p
1180                           	cimconfig -s enableNamespaceAuthorization=false -p
1181                           
1182 jim.wunderlich   1.61     EnableUsers:
1183                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
1184                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile startcimWithoutSSL
1185                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile ConfigureUsers
1186                           
1187 kumpf            1.1      EnableAuthentication:
1188 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
1189 kumpf            1.1      	cimconfig -s enableAuthentication=true -p
1190 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile startcimWithoutSSL
1191                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile ConfigureUsers
1192 kumpf            1.1      
1193                           EnableAuthorization:
1194 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
1195 kumpf            1.10     	cimconfig -s enableNamespaceAuthorization=true -p
1196 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile startcimWithoutSSL
1197                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i ConfigureAuthorizations
1198 kumpf            1.1      
1199                           EnableSSL:
1200 kumpf            1.21     	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
1201                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile startcimWithSSL
1202 kumpf            1.1      
1203 jim.wunderlich   1.61     #
1204                           # ConfigureUsers
1205                           #
1206                           # The server must be running prior to invoking this rule
1207                           #
1208 kumpf            1.1      ConfigureUsers:
1209                           ifndef PEGASUS_PAM_AUTHENTICATION
1210 jim.wunderlich   1.62     	-cimuser -l
1211 jim.wunderlich   1.61     	-cimuser -a -u $(PEGASUS_TEST_USER_ID) -w $(PEGASUS_TEST_USER_PASS)
1212 kumpf            1.1      endif
1213                           
1214 jim.wunderlich   1.61     #
1215                           # ConfigureAuthorizations rule
1216                           #
1217                           # The server must be running prior to invoking this rule
1218                           #
1219 kumpf            1.1      ConfigureAuthorizations:
1220 jim.wunderlich   1.59     	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test/cimv2 -R -W
1221                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n root/cimv2 -R -W
1222                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n root/PG_Internal -R -W
1223                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n root/PG_InterOp -R -W
1224                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n root/benchmark -R -W
1225                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n root/sampleprovider -R -W
1226                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test/static -R -W
1227                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n root/SampleProvider -R -W
1228                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n root -R -W
1229 kumpf            1.65     	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n root/test/A -R -W
1230                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n root/test/B -R -W
1231                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test/TestProvider -R -W
1232 jim.wunderlich   1.59     	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test1 -R -W
1233                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test2 -R -W
1234                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test3 -R -W
1235                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test4 -R -W
1236                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test5 -R -W
1237                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test6 -R -W
1238                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test1/test2 -R -W
1239                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test1/test2/test3 -R -W
1240                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test1/test2/test3/test4 -R -W
1241                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test1/test2/test3/test4/test5 -R -W
1242                           	cimauth -a -u $(PEGASUS_TEST_USER_ID) -n test1/test2/test3/test4/test5/test6 -R -W
1243 kumpf            1.1      
1244 jim.wunderlich   1.41     startcimWithoutSSL: FORCE
1245                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstart
1246 mike             1.78.2.3 	$(SLEEP) 5
1247 kumpf            1.1      
1248 jim.wunderlich   1.41     startcimWithSSL: FORCE
1249                           	$(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstart CIMSERVER_CONFIG_OPTIONS="enableHttpConnection=false enableHttpsConnection=true"
1250 mike             1.78.2.3 	$(SLEEP) 5
1251 j.alex           1.66     

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2