Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "COSMOS QA End2End Tests"

(Test Description:cosmosClient custom broker)
(Test Description:Default Broker)
Line 154: Line 154:
 
<pre>
 
<pre>
 
COSMOS> RegisterAllDataManagers
 
COSMOS> RegisterAllDataManagers
StatDataManager Registered
+
Monitoring Data Repository Registered
LoggingDataManager Registered
+
Logging Data Repository Registered
TestFederatingCMDB Registered
+
Sample Repository with Registration Registered
ExampleMdr Registered
+
Sample Repository with Query Registered
SMLMDR Registered
+
Resource Repository Registered
AperiMdr Registered
+
Storage Repository Registered
COSMOS>
+
 
</pre>
 
</pre>
 
----
 
----

Revision as of 03:09, 6 November 2008

Contents

Overview

The purpose of this page is to articulate all COSMOS End-to-End test scenarios for QA testing. This page will be filled in by the QA team and will be updated with every new iteration.

COSMOS Installation

As a pre-requisite for below test scenarios, install the COSMOS application as per the instructions available at http://wiki.eclipse.org/COSMOS_DEMO_i14#Installation

Note: All below test instructions and expected results are taken from windows environment, same tests will be applicable for Linux environment with little variations.

COSMOS End2End Tests

Build Installation and Configuration

Test Description:Build Installation

  • To test Build installation with default configuration
  1. configDemo.bat C:\cosmos\apache-tomcat-5.5.25 C:\cosmos\cosmos-demo C:\cosmos\birt-runtime-2_3_0.zip

Expected Result:

Installed web application: COSMOSReportViewer
Installed web application: COSMOSUI
Unzipping C:\cosmos\birt-runtime-2_3_0.zip to C:\cosmos\apache-tomcat-5.5.25\web
apps/COSMOSReportViewer...
Unzipped BIRT to COSMOSReportViewer
Copied BIRT web viewer example to COSMOSReportViewer
Installed web service: AperiMdr
Installed web service: Broker
Installed web service: ExampleMdr
Installed web service: LoggingDataManager
Installed web service: ServiceFinder
Installed web service: SMLMDR
Installed web service: StatDataManager
Installed web service: TestFederatingCMDB
Copied axis jar files to COSMOSUI.
Copied axis jar files to COSMOSReportViewer.
Copied axis jar files to cosmos client.
Updated axis2.xml.
Updated services.xml for SML MDR.
Updated services.xml for statistical MDR.
Installed broker database to C:\cosmos\apache-tomcat-5.5.25\webapps\axis2\WEB-INF\database/brokerdb.xml

Using COSMOS Command Line Client : Management Console

Starting COSMOS Command Line Client

Test Description:cosmosClient default broker

  • To start COSMOS command line client with default broker
  1. Start COSMOS Command line client with default broker,
  2. <cosmos-demo>\cosmos-client\cosmosClient.bat

Expected Result:

COSMOS> Help
Usage: CosmosClient [Broker EPR]
Commands:

Help
Settings
Setsoapversion <1.1 or 1.2>
Setcredentials <username> <password>
GraphQuery <DataManager Id> <query filename> [optional query result filename]
FindDataManagers [service finder EPR]
GetDataManagers [service namespace]
GetDataManagerById <DataManager Id>
GetDataManagersByRecordTypeNamespace <RecordTypeNamespace>
RegisterAllDataManagers [service finder EPR]
Register <DataManager id> [service finder EPR]
RegisterServiceGroup <host> <name> <id> <soapNamespace|null> <recordTypeNamespac
e|null> <securityNamespace|null> <wsdl URL #1> [wsdl URL #2] ...
Deregister <DataManager Id>
PrintBrokerEPR
ChangeBrokerEPR <new Broker EPR>
GetDataManagerInfo <DataManager Id>
GetSoapVersion <DataManager Id>
Exit
--------------
For commands that take an optional service finder EPR and it is not specified
It is deduced from the Broker EPR.
COSMOS>

Test Description:cosmosClient custom broker

  • To start COSMOS command line client with custom broker
  1. Start COSMOS Command line client with custom broker,
  2. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:8080/axis2/services/Broker

Expected Result:

COSMOS> COSMOS> Help
Usage: CosmosClient [Broker EPR]
Commands:

Help
Settings
Setsoapversion <1.1 or 1.2>
Setcredentials <username> <password>
GraphQuery <DataManager Id> <query filename> [optional query result filename]
FindDataManagers [service finder EPR]
GetDataManagers [service namespace]
GetDataManagerById <DataManager Id>
GetDataManagersByRecordTypeNamespace <RecordTypeNamespace>
RegisterAllDataManagers [service finder EPR]
Register <DataManager id> [service finder EPR]
RegisterServiceGroup <host> <name> <id> <soapNamespace|null> <recordTypeNamespac
e|null> <securityNamespace|null> <wsdl URL #1> [wsdl URL #2] ...
Deregister <DataManager Id>
PrintBrokerEPR
ChangeBrokerEPR <new Broker EPR>
GetDataManagerInfo <DataManager Id>
GetSoapVersion <DataManager Id>
Exit
--------------
For commands that take an optional service finder EPR and it is not specified
It is deduced from the Broker EPR.
COSMOS>

Test Description:cosmosClient Setting security credentials

  • To test the ability of COSMOS basic security feature
  1. Start COSMOS Command line client with default broker,
  2. Open CosmosCLI interface,<cosmos-demo>\cosmos-client\cosmosClient.bat
  3. COSMOS> Setsoapversion 1.2
  4. COSMOS> Setcredentials "test" "test123"
  5. COSMOS> Settings

Expected Result:

COSMOS> Setsoapversion 1.2
Ok
COSMOS> Setcredentials "test" "test123"
Ok
COSMOS> Settings
Settings:
brokerEPR: http://localhost:8080/axis2/services/Broker
serviceFinderEPR: http://localhost:8080/axis2/services/CosmosServiceFinder
serviceNamespace: null
username: "test"
password: "test123"
soapVersion: 1.2
COSMOS>

Register Data Managers with Broker

Test Description:Default Broker

  • To register all COSMOS data managers that are deployed on an Axis2 web service container with the default broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat
  2. At COSMOS prompt run -> RegisterAllDataManagers

Expected Result:

COSMOS> RegisterAllDataManagers
Monitoring Data Repository Registered
Logging Data Repository Registered
Sample Repository with Registration Registered
Sample Repository with Query Registered
Resource Repository Registered
Storage Repository Registered

Test Description:Custom Broker

  • To register all COSMOS data managers that are deployed on an Axis2 web service container with the custom broker
  1. Start COSMOS Client with custom broker -> cosmosClient.bat http://localhost:8080/axis2/services/MyBroker
  2. At COSMOS prompt run -> RegisterAllDataManagers

Expected Result:

COSMOS> RegisterAllDataManagers
StatDataManager Registered
LoggingDataManager Registered
TestFederatingCMDB Registered
ExampleMdr Registered
SMLMDR Registered
AperiMdr Registered

Test Description:Broker register StatDataManager

  • To register a COSMOS data manager that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> Register http://www.eclipse.org/cosmos/stat/1

Expected Result:

COSMOS> Register http://www.eclipse.org/cosmos/stat/1 
StatDataManager Registered

Test Description:Broker register LoggingDataManager

  • To register a COSMOS data manager that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> Register http://www.eclipse.org/cosmos/logging/2

Expected Result:

COSMOS> Register http://www.eclipse.org/cosmos/logging/2
LoggingDataManager Registered

Test Description:Broker register TestFederatingCMDB

  • To register a COSMOS data manager that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> Register http://www.eclipse.org/cosmos/TestFedCMDB/3

Expected Result:

COSMOS> Register http://www.eclipse.org/cosmos/TestFedCMDB/3
TestFederatingCMDB Registered

Test Description:Broker register ExampleMdr

  • To register a COSMOS data manager that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> Register http://www.eclipse.org/cosmos/examplemdr/4

Expected Result:

COSMOS> Register http://www.eclipse.org/cosmos/examplemdr/4
ExampleMdr Registered

Test Description:Broker register SMLMDR

  • To register a COSMOS data manager that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> Register http://www.eclipse.org/cosmos/smlmdr/5

Expected Result:

COSMOS> Register http://www.eclipse.org/cosmos/smlmdr/5
SMLMDR Registered

Test Description:Broker register AperiMdr

  • To register a COSMOS data manager that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> Register http://www.eclipse.org/cosmos/aperimdr/6

Expected Result:

COSMOS> Register http://www.eclipse.org/cosmos/aperimdr/6 
AperiMdr Registered

Test Description:Broker registerServiceGroup AperiMdr

  • To register ServiceGroup that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. COSMOS> RegisterServiceGroup localhost "Storage Repository" http://www.eclipse.org/cosmos/aperimdr/6

http://www.w3.org/2003/05/soap-envelope http://www.eclipse.org/cosmos/aperimdr http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/AperiMdrQueryService?wsdl

Expected Result:

COSMOS> RegisterServiceGroup localhost "Storage Repository" http://www.eclipse.org/cosmos/aperimdr/6 
http://www.w3.org/2003/05/soap-envelope 
http://www.eclipse.org/cosmos/aperimdr 
http://www.eclipse.org/cosmos/security/basic 
http://localhost:8080/axis2/services/AperiMdrQueryService?wsdl  

Ok

Test Description:Broker registerServiceGroup SMLMDR

  • To register ServiceGroup that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. COSMOS> RegisterServiceGroup localhost SMLMDR http://www.eclipse.org/cosmos/smlmdr/5

http://www.w3.org/2003/05/soap-envelope http://schemas.serviceml.org/sml/2007/02 http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/SmlMdrDataManager?wsdl http://localhost:8080/axis2/services/SmlMdrQueryService?wsdl

Expected Result:

COSMOS> RegisterServiceGroup localhost SMLMDR http://www.eclipse.org/cosmos/smlmdr/5
http://www.w3.org/2003/05/soap-envelope
http://schemas.serviceml.org/sml/2007/02
http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/SmlMdrDataManager?wsdl 
http://localhost:8080/axis2/services/SmlMdrQueryService?wsdl

Ok

Test Description:Broker registerServiceGroup ExampleMdr

  • To register ServiceGroup that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. COSMOS> RegisterServiceGroup localhost ExampleMdr http://www.eclipse.org/cosmos/examplemdr/4

http://www.w3.org/2003/05/soap-envelope http://www.eclipse.org/cosmos/examplemdr http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/ExampleMdrDataManager?wsdl http://localhost:8080/axis2/services/ExampleMdrQueryService?wsdl

Expected Result:

COSMOS> RegisterServiceGroup localhost ExampleMdr http://www.eclipse.org/cosmos/examplemdr/4
http://www.w3.org/2003/05/soap-envelope http://www.eclipse.org/cosmos/examplemdr
http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/ExampleMdrDataManager?wsdl 
http://localhost:8080/axis2/services/ExampleMdrQueryService?wsdl 

Ok

Test Description:Broker registerServiceGroup LoggingDataManager

  • To register ServiceGroup that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. COSMOS> RegisterServiceGroup localhost LoggingDataManager http://www.eclipse.org/cosmos/logging/2

http://www.w3.org/2003/05/soap-envelope http://www.eclipse.org/cosmos/logging http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/LoggingDataManager?wsdl http://localhost:8080/axis2/services/CBEServices?wsdl

Expected Result:

COSMOS> RegisterServiceGroup localhost LoggingDataManager http://www.eclipse.org/cosmos/logging/2
http://www.w3.org/2003/05/soap-envelope http://www.eclipse.org/cosmos/logging
http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/LoggingDataManager?wsdl 
http://localhost:8080/axis2/services/CBEServices?wsdl

Ok

Test Description:Broker registerServiceGroup StatDataManager

  • To register ServiceGroup that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. COSMOS> RegisterServiceGroup localhost StatDataManager http://www.eclipse.org/cosmos/stat/1

http://www.w3.org/2003/05/soap-envelope http://www.eclipse.org/cosmos/stat http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/StatisticalDataManager?wsdl http://localhost:8080/axis2/services/StatDataManager?wsdl

Expected Result:

COSMOS> RegisterServiceGroup localhost StatDataManager http://www.eclipse.org/cosmos/stat/1
http://www.w3.org/2003/05/soap-envelope http://www.eclipse.org/cosmos/stat
http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/StatisticalDataManager?wsdl 
http://localhost:8080/axis2/services/StatDataManager?wsdl 

Ok

Test Description:Broker registerServiceGroup TestFederatingCMDB

  • To register ServiceGroup that are deployed on an Axis2 web service container with the broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. COSMOS> RegisterServiceGroup localhost TestFederatingCMDB http://www.eclipse.org/cosmos/TestFedCMDB/3

http://www.w3.org/2003/05/soap-envelope http://www.eclipse.org/cosmos/testfedcmdb http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/TestFederatingCMDBDataManager?wsdl http://localhost:8080/axis2/services/TestFederatingCMDBRegistrationService?wsdl http://localhost:8080/axis2/services/TestFederatingCMDBQueryService?wsdl

Expected Result:

COSMOS> RegisterServiceGroup localhost TestFederatingCMDB http://www.eclipse.org/cosmos/TestFedCMDB/3
http://www.w3.org/2003/05/soap-envelope http://www.eclipse.org/cosmos/testfedcmdb
http://www.eclipse.org/cosmos/security/basic http://localhost:8080/axis2/services/TestFederatingCMDBDataManager?wsdl 
http://localhost:8080/axis2/services/TestFederatingCMDBRegistrationService?wsdl 
http://localhost:8080/axis2/services/TestFederatingCMDBQueryService?wsdl 

Ok

List All Data Managers Registered with Broker

Test Description:getDataManagers default broker

  • For listing out all data managers registered at the default broker
  1. Start COSMOS Client with default broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> GetDataManagers

Expected Result:

COSMOS> GetDataManagers
Data managers registered at the broker.
Data manager name: Monitoring Data Repository
Hostname of data manager: localhost
Description: Statistical DataManager
Id of data manager: http://www.eclipse.org/cosmos/stat/1
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/stat
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://datamgr.stat.internal.dc.cosmos.eclipse.org
   EPR: http://localhost:8080/axis2/services/StatisticalDataManager
   Description: Statistical DataManager

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/StatDataManager
   Description: COSMOS Data Manager

Data manager name: Logging Data Repository
Hostname of data manager: localhost
Description: Logging DataManager
Id of data manager: http://www.eclipse.org/cosmos/logging/2
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/logging
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://datamgr.logging.internal.dc.cosmos.eclipse.org
   EPR: http://localhost:8080/axis2/services/CBEServices
   Description: Logging DataManager

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/LoggingDataManager
   Description: COSMOS Data Manager

Data manager name: Sample Repository with Registration
Hostname of data manager: localhost
Description: Examplar Mdr that acts as a Federating CMDB
Id of data manager: http://www.eclipse.org/cosmos/TestFedCMDB/3
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/testfedcmdb
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/TestFederatingCMDBDataManager
   Description: COSMOS Data Manager

 Service 2
   namespace: http://cmdbf.org/schema/1-0-0/registration
   EPR: http://localhost:8080/axis2/services/TestFederatingCMDBRegistrationServ
ice
   Description: Test Federating CMDB Registration Service


 Service 3
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/TestFederatingCMDBQueryService
   Description: Test Federating CMDB Query Service


Data manager name: Sample Repository with Query
Hostname of data manager: localhost
Description: Examplar Mdr with a simple schema to do CMDBf queries against
Id of data manager: http://www.eclipse.org/cosmos/examplemdr/4
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/examplemdr
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/ExampleMdrQueryService
   Description: Example MDR Query Service

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/ExampleMdrDataManager
   Description: COSMOS Data Manager

Data manager name: Resource Repository
Hostname of data manager: localhost
Description: Examplar Mdr that uses SML
Id of data manager: http://www.eclipse.org/cosmos/smlmdr/5
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://schemas.serviceml.org/sml/2007/02
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/SmlMdrDataManager
   Description: COSMOS Data Manager

 Service 2
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/SmlMdrQueryService
   Description: SML MDR Query Service

Data manager name: Storage Repository
Hostname of data manager: localhost
Description: Examplar Mdr that uses Aperi derby database as its schema
Id of data manager: http://www.eclipse.org/cosmos/aperimdr/6
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/aperimdr
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/AperiMdrQueryService
   Description: Aperi MDR Query Service

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/AperiMdrDataManager
   Description: COSMOS Data Manager

Test Description:getDataManagers custom broker

  • For listing out all data managers registered at the default broker
  1. Start COSMOS Client with custom broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> GetDataManagers

Expected Result:

COSMOS> GetDataManagers
Data managers registered at the broker.
Data manager name: Monitoring Data Repository
Hostname of data manager: localhost
Description: Statistical DataManager
Id of data manager: http://www.eclipse.org/cosmos/stat/1
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/stat
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://datamgr.stat.internal.dc.cosmos.eclipse.org
   EPR: http://localhost:8080/axis2/services/StatisticalDataManager
   Description: Statistical DataManager

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/StatDataManager
   Description: COSMOS Data Manager

Data manager name: Logging Data Repository
Hostname of data manager: localhost
Description: Logging DataManager
Id of data manager: http://www.eclipse.org/cosmos/logging/2
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/logging
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://datamgr.logging.internal.dc.cosmos.eclipse.org
   EPR: http://localhost:8080/axis2/services/CBEServices
   Description: Logging DataManager

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/LoggingDataManager
   Description: COSMOS Data Manager

Data manager name: Sample Repository with Registration
Hostname of data manager: localhost
Description: Examplar Mdr that acts as a Federating CMDB
Id of data manager: http://www.eclipse.org/cosmos/TestFedCMDB/3
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/testfedcmdb
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/TestFederatingCMDBDataManager
   Description: COSMOS Data Manager

 Service 2
   namespace: http://cmdbf.org/schema/1-0-0/registration
   EPR: http://localhost:8080/axis2/services/TestFederatingCMDBRegistrationServ
ice
   Description: Test Federating CMDB Registration Service


 Service 3
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/TestFederatingCMDBQueryService
   Description: Test Federating CMDB Query Service


Data manager name: Sample Repository with Query
Hostname of data manager: localhost
Description: Examplar Mdr with a simple schema to do CMDBf queries against
Id of data manager: http://www.eclipse.org/cosmos/examplemdr/4
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/examplemdr
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/ExampleMdrQueryService
   Description: Example MDR Query Service

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/ExampleMdrDataManager
   Description: COSMOS Data Manager

Data manager name: Resource Repository
Hostname of data manager: localhost
Description: Examplar Mdr that uses SML
Id of data manager: http://www.eclipse.org/cosmos/smlmdr/5
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://schemas.serviceml.org/sml/2007/02
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/SmlMdrDataManager
   Description: COSMOS Data Manager

 Service 2
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/SmlMdrQueryService
   Description: SML MDR Query Service

Data manager name: Storage Repository
Hostname of data manager: localhost
Description: Examplar Mdr that uses Aperi derby database as its schema
Id of data manager: http://www.eclipse.org/cosmos/aperimdr/6
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/aperimdr
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/AperiMdrQueryService
   Description: Aperi MDR Query Service

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/AperiMdrDataManager
   Description: COSMOS Data Manager

Test Description:getDataManager by Id

  • For listing out data manager by it's id, which are registered at the broker
  1. Start COSMOS Client with custom broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> GetDataManagerById http://www.eclipse.org/cosmos/examplemdr/4

Expected Result:

COSMOS> GetDataManagerById http://www.eclipse.org/cosmos/examplemdr/4
Data manager name: ExampleMdr
Hostname of data manager: localhost
Description: Examplar Mdr with a simple schema to do CMDBf queries against
Id of data manager: http://www.eclipse.org/cosmos/examplemdr/4
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/examplemdr
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/ExampleMdrQueryService
   Description: Example MDR Query Service

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/ExampleMdrDataManager
   Description: COSMOS Data Manager

Test Description:getDataManagers by RecordTypeNameSpace

  • For listing out data managers by it's RecordTypeNameSpace, which are registered at the broker
  1. Start COSMOS Client with custom broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> GetDataManagersByRecordTypeNamespace http://www.eclipse.org/cosmos/examplemdr

Expected Result:

COSMOS> GetDataManagersByRecordTypeNamespace  http://www.eclipse.org/cosmos/examplemdr
Data managers registered at the broker.
Data manager name: ExampleMdr
Hostname of data manager: localhost
Description: Examplar Mdr with a simple schema to do CMDBf queries against
Id of data manager: http://www.eclipse.org/cosmos/examplemdr/4
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/examplemdr
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/ExampleMdrQueryService
   Description: Example MDR Query Service

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/ExampleMdrDataManager
   Description: COSMOS Data Manager

Test Description:getDataManager information

  • For gettting data manager information, which is registered at the broker
  1. Start COSMOS Client with custom broker -> cosmosClient.bat http://localhost:8080/axis2/services/Broker
  2. At COSMOS prompt run -> GetDataManagerInfo http://www.eclipse.org/cosmos/examplemdr/4

Expected Result:

COSMOS> GetDataManagerInfo http://www.eclipse.org/cosmos/examplemdr/4
Id = http://www.eclipse.org/cosmos/examplemdr/4
DisplayName = Sample Repository with Query
Description = Examplar Mdr with a simple schema to do CMDBf queries against
SoapNamespace = http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace = http://www.eclipse.org/cosmos/examplemdr
SecurityNamespace = http://www.eclipse.org/cosmos/security/basic

Find all DataManagers using CosmosServiceFinder

Test Description:finddatamanagers

  • To get list of COSMOS data managers deployed on the axis2 web service container as the service finder web service
  1. FindDataManagers http://localhost:8080/axis2/services/CosmosServiceFinder

Expected Result:

COSMOS> FindDataManagers http://localhost:8080/axis2/services/CosmosServiceFinder
Data manager name: Monitoring Data Repository
Hostname of data manager: localhost
Description: DataManager to display Statistical info in a BIRT report
Id of data manager: http://www.eclipse.org/cosmos/stat/1
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/stat
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://datamgr.stat.internal.dc.cosmos.eclipse.org
   EPR: http://localhost:8080/axis2/services/StatisticalDataManager
   Description:
                Statistical DataManager


 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/StatDataManager
   Description: COSMOS Data Manager

Data manager name: Logging Data Repository
Hostname of data manager: localhost
Description: DataManager to display CBEs in a BIRT report
Id of data manager: http://www.eclipse.org/cosmos/logging/2
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/logging
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/LoggingDataManager
   Description: COSMOS Data Manager

 Service 2
   namespace: http://datamgr.logging.internal.dc.cosmos.eclipse.org
   EPR: http://localhost:8080/axis2/services/CBEServices
   Description:
                Logging DataManager


Data manager name: Sample Repository with Registration
Hostname of data manager: localhost
Description: Examplar Mdr that acts as a Federating CMDB
Id of data manager: http://www.eclipse.org/cosmos/TestFedCMDB/3
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/testfedcmdb
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://cmdbf.org/schema/1-0-0/registration
   EPR: http://localhost:8080/axis2/services/TestFederatingCMDBRegistrationServi
ce
   Description: Test Federating CMDB Registration Service

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/TestFederatingCMDBDataManager
   Description: COSMOS Data Manager

 Service 3
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/TestFederatingCMDBQueryService
   Description: Test Federating CMDB Query Service

Data manager name: Sample Repository with Query
Hostname of data manager: localhost
Description: Examplar Mdr with a simple schema to do CMDBf queries against
Id of data manager: http://www.eclipse.org/cosmos/examplemdr/4
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/examplemdr
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/ExampleMdrQueryService
   Description: Example MDR Query Service

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/ExampleMdrDataManager
   Description: COSMOS Data Manager

Data manager name: Resource Repository
Hostname of data manager: localhost
Description: Examplar Mdr that uses SML
Id of data manager: http://www.eclipse.org/cosmos/smlmdr/5
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://schemas.serviceml.org/sml/2007/02
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/SmlMdrDataManager
   Description: COSMOS Data Manager

 Service 2
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/SmlMdrQueryService
   Description: SML MDR Query Service

Data manager name: Storage Repository
Hostname of data manager: localhost
Description: Examplar Mdr that uses Aperi derby database as its schema
Id of data manager: http://www.eclipse.org/cosmos/aperimdr/6
SoapNamespace of data manager: http://www.w3.org/2003/05/soap-envelope
RecordTypeNamespace of data manager: http://www.eclipse.org/cosmos/aperimdr
SecurityNamespace of data manager: http://www.eclipse.org/cosmos/security/basic

 Service 1
   namespace: http://cmdbf.org/schema/1-0-0/query
   EPR: http://localhost:8080/axis2/services/AperiMdrQueryService
   Description: Aperi MDR Query Service

 Service 2
   namespace: http://www.eclipse.org/cosmos/datamanager
   EPR: http://localhost:8080/axis2/services/AperiMdrDataManager
   Description: COSMOS Data Manager

Deregistering Data Managers from broker

Test Description: deregister StatDataManager

  • To Deregister data manager - "StatDataManager" from the broker
  1. COSMOS> Deregister http://www.eclipse.org/cosmos/stat/1

Expected Result:

  • DataManager deregistered.

Test Description: deregister LoggingDataManager

  • To Deregister data manager - "LoggingDataManager" from the broker
  1. COSMOS> Deregister http://www.eclipse.org/cosmos/logging/2

Expected Result:

  • DataManager deregistered.

Test Description: deregister TestFederatingCMDB

  • To Deregister data manager - "TestFederatingCMDB" from the broker
  1. COSMOS> Deregister http://www.eclipse.org/cosmos/TestFedCMDB/3

Expected Result:

  • DataManager deregistered.

Test Description:deregister ExampleMdr

  • To Deregister data manager - "ExampleMdr" from the broker
  1. COSMOS> Deregister http://www.eclipse.org/cosmos/examplemdr/4

Expected Result:

  • DataManager deregistered.

Test Description:deregister SMLMDR

  • To Deregister data manager - "SMLMDR" from the broker
  1. COSMOS> Deregister http://www.eclipse.org/cosmos/smlmdr/5

Expected Result:

  • DataManager deregistered.

Test Description:deregister AperiMdr

  • To Deregister data manager - "AperiMdr" from the broker
  1. COSMOS> Deregister http://www.eclipse.org/cosmos/aperimdr/6

Expected Result:

  • DataManager deregistered.

Executing CMDBf Queries using graphQuery

Test Description:graphQuery with Security

  • To test the basic security feature of COSMOS with graphQuery
  1. Open cosmosClient interface, <cosmos-demo>/cosmosClient/bin/cosmosClient.bat
  2. COSMOS> Setsoapversion 1.2
  3. COSMOS> Setcredentials "test" "test123"
  4. Execute, GraphQuery localhost ExampleMdr D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\ExampleMDR\all-students.txt
  5. Capture above SOAP request message using SOAPMonitor or with any other tool

Expected Result:

  1. Captured SOAP request message should contain security header along with query data as listed below.
<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
<soapenv:Header>
<sec:securityHeader xmlns:sec="http://schemas.xmlsoap.org/soap/envelope/" sec:mustUnderstand="0"><sec:username>test</sec:username>
<sec:password>test123</sec:password></sec:securityHeader>
</soapenv:Header>
<soapenv:Body><s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
	<s:itemTemplate id="items">
		<s:recordConstraint>
			<s:recordType localName="student" namespace="" />			
		</s:recordConstraint>
	</s:itemTemplate>
</s:query></soapenv:Body></soapenv:Envelope>

Test Description:TestFederatingCMDB

  • To submit CMDBf query to fetch results for registered items
  1. GraphQuery localhost TestFederatingCMDB D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\TestFederatingCMDB\all_items.txt
  • Note:Make sure to register some configuration items, before executing this query.

Expected Result:

  1. Should display appropriate query result with list of registered data item values.

Test Description:SMLMDR 1

  • To invoke graphQuery on SMLMDR
  1. COSMOS> graphQuery localhost SMLMDR D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\SMLMDR\testInstanceIdQuery.txt

Expected Result:

GraphQuery response:
<?xml version="1.0" encoding="UTF-8"?><cmdbf:queryResult xmlns:cmdbf="http://cmdbf.org/schema/1-0-0/datamodel">
	<cmdbf:nodes templateId="cableTemplate">
		<cmdbf:item>
			<cmdbf:record>
				
					<s:cable xmlns:s="cable" xmlns:conn="connection" xmlns:ft="facetModel" xmlns:it="http://www.cosmos.rm/dataCenter/core" xmlns:pm="propertyModel" xmlns:sml="http://schemas.serviceml.org/sml/2007/02" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="0001">
					
					        <it:facets>
					           <it:facet>
					              <it:properties>
					                 <pm:connector format="RJ45"/>
					              </it:properties>
					           </it:facet>
					           <it:facet>
					              <ft:location>
					                 <it:properties>
					                    <ft:position coordinate="in use"/>
					                 </it:properties>
					              </ft:location>
					           </it:facet>
					           <it:facet>
					             <it:properties>
					              <conn:connection>
					                 <conn:source sml:ref="true">
					                    <sml:uri>
					                       /DataCenterSample/hardware/networking/Switch1.xml#xpointer(/switch[@name="switch1"]/facets/facet/ports[@input="true"]/port[@number="0"])
					                    </sml:uri>
					                 </conn:source>
					                 <conn:target sml:ref="true">
					                    <sml:uri>
					                       /DataCenterSample/hardware/networking/Router1.xml#xpointer(/router[@name="router1"]/facets/facet/ports[@input="false"]/port[@number="1"])
					                    </sml:uri>
					                 </conn:target>
					              </conn:connection>
					              </it:properties>
					           </it:facet>
					        </it:facets>
					</s:cable>
				<cmdbf:recordMetadata>
					<cmdbf:recordId>D:/cosmos/apache-tomcat-5.5.26/webapps/axis2/WEB-INF/services/SMLMDR/sml-repository/Cable1.xml</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>http://cosmos.org/rm/sml/repository</cmdbf:mdrId>
				<cmdbf:localId>D:/cosmos/apache-tomcat-5.5.26/webapps/axis2/WEB-INF/services/SMLMDR/sml-repository/Cable1.xml</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
	</cmdbf:nodes>
</cmdbf:queryResult>

Test Description:SMLMDR 2

  • To invoke graphQuery on SMLMDR
  1. COSMOS> graphQuery localhost SMLMDR D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\SMLMDR\testPropertyQuery.txt

Expected Result:

GraphQuery response:
<?xml version="1.0" encoding="UTF-8"?><cmdbf:queryResult xmlns:cmdbf="http://cmdbf.org/schema/1-0-0/datamodel">
	<cmdbf:nodes templateId="cableTemplate">
		<cmdbf:item>
			<cmdbf:record>
				
					<s:cable xmlns:s="cable" xmlns:conn="connection" xmlns:ft="facetModel" xmlns:it="http://www.cosmos.rm/dataCenter/core" xmlns:pm="propertyModel" xmlns:sml="http://schemas.serviceml.org/sml/2007/02" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="0001">
					
					        <it:facets>
					           <it:facet>
					              <it:properties>
					                 <pm:connector format="RJ45"/>
					              </it:properties>
					           </it:facet>
					           <it:facet>
					              <ft:location>
					                 <it:properties>
					                    <ft:position coordinate="in use"/>
					                 </it:properties>
					              </ft:location>
					           </it:facet>
					           <it:facet>
					             <it:properties>
					              <conn:connection>
					                 <conn:source sml:ref="true">
					                    <sml:uri>
					                       /DataCenterSample/hardware/networking/Switch1.xml#xpointer(/switch[@name="switch1"]/facets/facet/ports[@input="true"]/port[@number="0"])
					                    </sml:uri>
					                 </conn:source>
					                 <conn:target sml:ref="true">
					                    <sml:uri>
					                       /DataCenterSample/hardware/networking/Router1.xml#xpointer(/router[@name="router1"]/facets/facet/ports[@input="false"]/port[@number="1"])
					                    </sml:uri>
					                 </conn:target>
					              </conn:connection>
					              </it:properties>
					           </it:facet>
					        </it:facets>
					</s:cable>
				<cmdbf:recordMetadata>
					<cmdbf:recordId>D:/cosmos/apache-tomcat-5.5.26/webapps/axis2/WEB-INF/services/SMLMDR/sml-repository/Cable1.xml</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>http://cosmos.org/rm/sml/repository</cmdbf:mdrId>
				<cmdbf:localId>D:/cosmos/apache-tomcat-5.5.26/webapps/axis2/WEB-INF/services/SMLMDR/sml-repository/Cable1.xml</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
	</cmdbf:nodes>
</cmdbf:queryResult>

Test Description:ExampleMdr 1

  • To invoke graphQuery on ExampleMdr
  1. COSMOS> graphQuery localhost ExampleMdr D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\ExampleMDR\all-students.txt

Expected Result:

GraphQuery response:
<?xml version="1.0" encoding="UTF-8"?><cmdbf:queryResult xmlns:cmdbf="http://cmdbf.org/schema/1-0-0/datamodel">
	<cmdbf:nodes templateId="items">
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<student>
				 <identity firstName="Mike" id="03" lastName="Lee"/>
				</student>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>03</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>03</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<student>
				 <identity firstName="Jane" id="02" lastName="Ryerson"/>
				</student>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>02</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>02</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<student>
				 <identity firstName="Bob" id="01" lastName="Davidson"/>
				</student>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
	</cmdbf:nodes>
</cmdbf:queryResult>

Test Description:ExampleMdr 2

  • To invoke graphQuery on ExampleMdr
  1. COSMOS> graphQuery localhost ExampleMdr D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\ExampleMDR\all-teachers.txt

Expected Result:

GraphQuery response:
<?xml version="1.0" encoding="UTF-8"?><cmdbf:queryResult xmlns:cmdbf="http://cmdbf.org/schema/1-0-0/datamodel">
	<cmdbf:nodes templateId="items">
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<teacher>
				 <identity firstName="Heather" id="staff02" lastName="Reeba"/>
				</teacher>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>staff02</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff02</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<teacher>
				 <identity firstName="Dawn" id="staff01" lastName="Johnson"/>
				</teacher>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>staff01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
	</cmdbf:nodes>
</cmdbf:queryResult>

Test Description:ExampleMdr 3

  • To invoke graphQuery on ExampleMdr
  1. COSMOS> graphQuery localhost ExampleMdr D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\ExampleMDR\relationship-all-classes.txt

Expected Result:

GraphQuery response:
<?xml version="1.0" encoding="UTF-8"?><cmdbf:queryResult xmlns:cmdbf="http://cmdbf.org/schema/1-0-0/datamodel">
	<cmdbf:nodes templateId="everything">
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<student>
				 <identity firstName="Mike" id="03" lastName="Lee"/>
				</student>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>03</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>03</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<student>
				 <identity firstName="Jane" id="02" lastName="Ryerson"/>
				</student>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>02</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>02</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<student>
				 <identity firstName="Bob" id="01" lastName="Davidson"/>
				</student>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<teacher>
				 <identity firstName="Heather" id="staff02" lastName="Reeba"/>
				</teacher>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>staff02</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff02</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<teacher>
				 <identity firstName="Dawn" id="staff01" lastName="Johnson"/>
				</teacher>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>staff01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
	</cmdbf:nodes>
	<cmdbf:edges templateId="allClasses">
		<cmdbf:relationship>
			<cmdbf:source>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff02</cmdbf:localId>
			</cmdbf:source>
			<cmdbf:target>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>03</cmdbf:localId>
			</cmdbf:target>
			<cmdbf:record xmlns="http://school">

				<class courseCode="PHY01" name="Physics">
				 <students>
				  <enrolledStudent idRef="02"/>
				  <enrolledStudent idRef="03"/>
				 </students>
				 <teacher idRef="staff02"/>
				</class>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>PHY01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>PHY01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:relationship>
		<cmdbf:relationship>
			<cmdbf:source>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff02</cmdbf:localId>
			</cmdbf:source>
			<cmdbf:target>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>02</cmdbf:localId>
			</cmdbf:target>
			<cmdbf:record xmlns="http://school">

				<class courseCode="MAT01" name="Mathematics">
				 <students>
				  <enrolledStudent idRef="01"/>
				  <enrolledStudent idRef="02"/>
				 </students>
				 <teacher idRef="staff02"/>
				</class>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>MAT01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>MAT01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:relationship>
		<cmdbf:relationship>
			<cmdbf:source>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff02</cmdbf:localId>
			</cmdbf:source>
			<cmdbf:target>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>02</cmdbf:localId>
			</cmdbf:target>
			<cmdbf:record xmlns="http://school">

				<class courseCode="PHY01" name="Physics">
				 <students>
				  <enrolledStudent idRef="02"/>
				  <enrolledStudent idRef="03"/>
				 </students>
				 <teacher idRef="staff02"/>
				</class>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>PHY01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>PHY01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:relationship>
		<cmdbf:relationship>
			<cmdbf:source>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff02</cmdbf:localId>
			</cmdbf:source>
			<cmdbf:target>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>01</cmdbf:localId>
			</cmdbf:target>
			<cmdbf:record xmlns="http://school">

				<class courseCode="MAT01" name="Mathematics">
				 <students>
				  <enrolledStudent idRef="01"/>
				  <enrolledStudent idRef="02"/>
				 </students>
				 <teacher idRef="staff02"/>
				</class>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>MAT01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>MAT01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:relationship>
		<cmdbf:relationship>
			<cmdbf:source>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff01</cmdbf:localId>
			</cmdbf:source>
			<cmdbf:target>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>03</cmdbf:localId>
			</cmdbf:target>
			<cmdbf:record xmlns="http://school">

				<class courseCode="ECM01" name="Economics">
				 <students>
				  <enrolledStudent idRef="01"/>
				  <enrolledStudent idRef="03"/>
				 </students>
				 <teacher idRef="staff01"/>
				</class>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>ECM01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>ECM01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:relationship>
		<cmdbf:relationship>
			<cmdbf:source>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff01</cmdbf:localId>
			</cmdbf:source>
			<cmdbf:target>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>01</cmdbf:localId>
			</cmdbf:target>
			<cmdbf:record xmlns="http://school">

				<class courseCode="ECM01" name="Economics">
				 <students>
				  <enrolledStudent idRef="01"/>
				  <enrolledStudent idRef="03"/>
				 </students>
				 <teacher idRef="staff01"/>
				</class>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>ECM01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>ECM01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:relationship>
	</cmdbf:edges>
</cmdbf:queryResult>

Test Description:ExampleMdr 4

  • To invoke graphQuery on ExampleMdr
  1. COSMOS> graphQuery localhost ExampleMdr D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\ExampleMDR\teaches-relationship.txt

Expected Result:

GraphQuery response:
<?xml version="1.0" encoding="UTF-8"?><cmdbf:queryResult xmlns:cmdbf="http://cmdbf.org/schema/1-0-0/datamodel">
	<cmdbf:nodes templateId="teacher">
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<teacher>
				 <identity firstName="Dawn" id="staff01" lastName="Johnson"/>
				</teacher>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>staff01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
	</cmdbf:nodes>
	<cmdbf:nodes templateId="students">
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<student>
				 <identity firstName="Mike" id="03" lastName="Lee"/>
				</student>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>03</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>03</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
		<cmdbf:item>
			<cmdbf:record xmlns="http://school">

				<student>
				 <identity firstName="Bob" id="01" lastName="Davidson"/>
				</student>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:item>
	</cmdbf:nodes>
	<cmdbf:edges templateId="reference">
		<cmdbf:relationship>
			<cmdbf:source>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff01</cmdbf:localId>
			</cmdbf:source>
			<cmdbf:target>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>03</cmdbf:localId>
			</cmdbf:target>
			<cmdbf:record xmlns="http://school">

				<class courseCode="ECM01" name="Economics">
				 <students>
				  <enrolledStudent idRef="01"/>
				  <enrolledStudent idRef="03"/>
				 </students>
				 <teacher idRef="staff01"/>
				</class>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>ECM01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>ECM01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:relationship>
		<cmdbf:relationship>
			<cmdbf:source>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>staff01</cmdbf:localId>
			</cmdbf:source>
			<cmdbf:target>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>01</cmdbf:localId>
			</cmdbf:target>
			<cmdbf:record xmlns="http://school">

				<class courseCode="ECM01" name="Economics">
				 <students>
				  <enrolledStudent idRef="01"/>
				  <enrolledStudent idRef="03"/>
				 </students>
				 <teacher idRef="staff01"/>
				</class>

				<cmdbf:recordMetadata>
					<cmdbf:recordId>ECM01</cmdbf:recordId>
				</cmdbf:recordMetadata>
			</cmdbf:record>
			<cmdbf:instanceId>
				<cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId>
				<cmdbf:localId>ECM01</cmdbf:localId>
			</cmdbf:instanceId>
		</cmdbf:relationship>
	</cmdbf:edges>
</cmdbf:queryResult>

Test Description:AperiMdr 1

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_all.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 2

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_all_items.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 3

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_disk.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 4

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_hostport.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 5

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_inst_system.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 6

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_pool.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 7

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_pool_volume_all.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 8

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_pool_volume_constr.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 9

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_system_disk_all.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 10

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_system_disk_constr.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 11

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_system_hostport_all.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 12

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_system_hostport_constr.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 13

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_system_pool_prop.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 14

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_system_pools_all.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 15

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_system_pools_constr.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 16

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_system_volume_all.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 17

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_rel_system_volume_constr.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 18

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_system.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.


Test Description:AperiMdr 19

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_system_constr.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 20

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_system_inst_prop.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 21

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_system_like.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Test Description:AperiMdr 22

  • To invoke graphQuery on AperiMdr
  1. graphQuery localhost AperiMdr C:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\Aperi\query_volume.xml

Expected Result:

  1. Should display appropriate Query result.
  2. As result file is too long,ommitted here.

Broker EPR

Test Description:Broker epr print

  • To display current broker EPR
  1. COSMOS> PrintBrokerEPR

Expected Result:

COSMOS> PrintBrokerEPR
The current Broker EPR being used is http://localhost:8080/axis2/services/Broker

Test Description:Broker epr change

  • To change current broker EPR
  1. COSMOS> ChangeBrokerEPR http://localhost:8090/axis2/services/Broker
  2. COSMOS> PrintBrokerEPR

Expected Result:

COSMOS> PrintBrokerEPR
The current Broker EPR being used is http://localhost:8080/axis2/services/Broke
r
COSMOS> ChangeBrokerEPR http://localhost:8090/axis2/services/Broker
Ok
COSMOS> PrintBrokerEPR
The current Broker EPR being used is http://localhost:8090/axis2/services/Broker

Test Description: display current client settings

  • To display current broker settings
  1. Start COSMOS Command line client with default broker,
  2. COSMOS> Settings

Expected Result:

COSMOS> Settings
Settings:
brokerEPR: http://localhost:8090/axis2/services/Broker
serviceFinderEPR: http://localhost:8080/axis2/services/CosmosServiceFinder
serviceNamespace: null
username: "test"
password: "test123"
soapVersion: 1.2

Test Description: GetSoapVersion for DataManager

  • To display SoapVersion for a given Data Manager
  1. Start COSMOS Command line client with default broker,
  2. COSMOS> GetSoapVersion localhost ExampleMdr

Expected Result:

COSMOS> GetSoapVersion localhost ExampleMdr
SoapVersion: 1.2

Using the COSMOS Web User Interface

UI Component Widget tests

These tests have been extracted from org.eclipse.cosmos.examples.e2e.tests - DataVisualization.UI.Component.Widget.testsuite and DataVisualization.UI.Reports.testsuite

Test Description:Navigate

  1. Complete the "Installation" and "Running the Program" section outlined under http://wiki.eclipse.org/COSMOS_UG_Running_the_Example. At this point tomcat should be running. Then point your browser to http://localhost:8080/COSMOSUI/?page=cosmos
  2. Six nodes should be shown in the tree in the "Data Managers" section on the page. These nodes should be "StatDataManager", "Resource Repository", "Sample Repository with Registration", "Sample Repository with Query" and "Logging Data Repository". Each node should have different icons. You should be able to expand the "Monitoring Data Repository", "Sample Repository with Query" and "Logging Data Repository" nodes.
  3. Expand the ""Monitoring Data Repository" node. 2 child nodes should be added to the "Monitoring Data Repository" node
  4. Expand the "Logging Data Repository" node. 2 child nodes should be added to the "Logging Data Repository" node. It should have a "windows_app_log.cbe.xml" and "access_log.cbe.xml" node.
  5. Expand the "Sample Repository with Query". There should be 5 nodes: "Get All Students", "Get All Teachers", "Get All Classes", "Staff 01" and "Staff 02". The "Staff01" node should have one node named "All Students taught by the teacher with an id set to staff01" The "Staff02" node should have one node named "All Students taught by the teacher with an id set to staff0s".

Expected Result

  1. There should not be any exception that is thrown when expanding the nodes. Icons should be associated with all the nodes in the tree

Test Description:Navigate2

  1. Complete the "Installation" and "Running the Program" section outlined under http://wiki.eclipse.org/COSMOS_UG_Running_the_Example. At this point tomcat should be running. Then point your browser to http://localhost:8080/COSMOSUI/?page=cosmos
  2. Right click the "Resource Repository" node in the Data Managers pane. A pop-up menu should show up with a menu item called "Create query"
  3. Select the "Submit query" menu item.
  4. A dialog box allow you to enter a XML CMDBf query. Type the following xml into the text area:
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
	<s:itemTemplate id="cableTemplate">
		<s:instanceIdConstraint>
			<s:instanceId>
				<s:mdrId>http://cosmos.org/rm/sml/repository</s:mdrId>
				<s:localId>Cable1.xml</s:localId>
			</s:instanceId>
		</s:instanceIdConstraint>
	</s:itemTemplate>
</s:query>
  1. Click Submit.
  2. A "CBMDB Query" node showing the date the query was submited should be added to hte "Resource Repository" node.
  3. Click on the "CMDBf Query" node. The "Details" pane should show the graph response view
  4. The view is made up of 3 sections. The "Nodes and Edges" section should contain a table with 1 row. The Source column should be populated with cableTemplate:D:/development/apache-tomcat-5.5.25/webapps/smlmdr/sml-repository/Cable1.xml
  5. Click on the cell in the first row and first column of the table
  6. The "Records" section of the view should show the templateD, MDRId and localId attributes. The templateId is set to calbeTemplate, the MDRId is set to http://cosmos.org/rm/sml/repository and the localId is set to

D:/development/apache-tomcat-5.5.25/webapps/smlmdr/sml-repository/Cable1.xml

  1. The table in the "Records" section shows 1 row that has a plus icon.
  2. Click on the plus icon to expand the row.
  3. The contents of the expanded row should be:
<s:cable name="0001" xmlns:conn="connection" xmlns:ft="facetModel"\n xmlns:it="http://www.cosmos.rm/dataCenter/core"\n xmlns:pm="propertyModel" xmlns:s="cable"\n xmlns:sml="http://schemas.serviceml.org/sml/2007/02" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <it:facets> <it:facet> <it:properties> <pm:connector format="RJ45"/> </it:properties> </it:facet> <it:facet> <ft:location> <it:properties> <ft:position coordinate="in use"/> </it:properties> </ft:location> </it:facet> <it:facet> <it:properties> <conn:connection> <conn:source sml:ref="true"> <sml:uri> /DataCenterSample/hardware/networking/Switch1.xml#xpointer(/switch[@name="switch1"]/facets/facet/ports[@input="true"]/port[@number="0"])\n </sml:uri> </conn:source> <conn:target sml:ref="true"> <sml:uri> /DataCenterSample/hardware/networking/Router1.xml#xpointer(/router[@name="router1"]/facets/facet/ports[@input="false"]/port[@number="1"])\n </sml:uri> </conn:target> </conn:connection> </it:properties> </it:facet> </it:facets></s:cable> 
  1. The "Additoinal Record Types" is the thrid section of the view. This section should have a table with a "NameSpace" and "LocalName" column. The table should not contain any rows.

Expected Result

  1. There should not be any exception that is thrown when expanding the nodes.

Test Description:Navigate2

  1. complete the steps for the "navigate 2" test case.
  2. In the "Data Managers" pane click on the "Sample Repository with Query" node.
  3. The "Properties" pane should show a properties of that node
  4. the properties pane should reveil the following text:

epr: http://localhost:8080/axis2/services/ExampleMdrDataManager Example resid: Example Expected Result:

  1. You should be able to view all the properies for a particular tree node.

Test Description:Visualize Log Report

  1. complete the steps for the "navigate" test case.
  2. In the "Data Managers" select the ""Logging Data Repository">windows_app_log.cbe.xml" node.
  3. The "Properties" pane should show a table with two properties (epr and logfile). The epr should be the epr address of the CBE MDR and the log file is the name of the log file.
  4. Right click the "winodws_app_log.cbe.xml" node. A "Top 10 Report" menu item should show up
  5. Select this menu item.

Expected Result:

  1. The details pane should render the Top 10 report.

Test Description:Visualize Stat Report

  1. complete the steps for the "navigate" test case.
  2. In the "Data Managers" select the "StatDataManager">server 33 tomcat1181829221515" node.
  3. The "Properties" pane should just show a table with 3 property values(epr, datasource and keyset). The epr is the epr address of the Statistical MDR and the datasource should be server 33 tomcat1181829221515. The keyset may be CBE or TomcatSet
  4. Right click the "server 33 tomcat1181829221515" node. A "Statistical Report" menu item should show up
  5. Select this menu item.

Expected Result:

  1. The detail pane should show the stat report

Test Description:Properties 2

  1. complete the steps for the "navigate" test case.
  2. Select the Example MDR. The properties pane should show the resid of the Data Manager and the epr of the Data Manager.
  3. Repeat step 2 for the "Monitoring Data Repository", "Logging Data Repository" and "Resource Repsiotry" and "Sample Repository with Registration" nodes

Expected Result:

  1. You should be able to view all the properies for a particular Data Manager.

Test Description:Example CMDBf query

  1. Complete the "Installatoin" and "Running the Program" section outlined under http://wiki.eclipse.org/COSMOS_UG_Running_the_Example. At this point tomcat should be running. Then point your browser to http://localhost:8080/COSMOSUI/?page=cosmos
  2. Right click the "Sample Repository with Query" node in the Data Managers pane. A pop-up menu should show up with a menu item called "Submit Query..."
  3. Select the "Submit Query..." menu item.
  4. A Dialog box should be shown with three sections. The Dialog box should have a title and a description. The top level pane should show a tree with one node that has a value of 'query'
  5. Right click the node and select 'Add item'
  6. Another dialog box should appear to enter the item template id. Enter 'items' in the text box and click OK.
  7. The top tree should add an 'items' node under the 'query' node. In addition the bottom left pane should contain a tree with one node that is named 'itemTemplate'
  8. Right click the 'itemTemplate' node in the bottom left pane and select 'add contentSelector'
  9. The bottom right pane should present a table with the attributes of the contentSelector node. That is it should should matchRecords in the attribute columns and true in the Value column.
  10. Right click the itemTemplate node again and make sure that the 'add conentSelector' option is not shown in the menu. This option should only be shown if there are no contentSelector nodes udner the 'itemTemplate.
  11. Delete the contentSelector node by right clicking the 'contentSeletor' node and select the 'delete contentSelector'. The bottom left tree should now only have 1 root node named 'itemTemplate'. Also, the bottom left pane should be cleared and show a blank pane.
  12. Right click the itemTemplate node and select 'add RecordConstraint'. This should add a 'recordConstraint' node under the 'itemTemplate' node in the bottom left pane.
  13. Right click the recordConstraint node and select 'add recordType. This should add a 'recordType' node under the recordConstraintNode' node in the bottom left pane. The bottom right pane should show a table with namespace and localName.
  14. In the table click the table cell next to the namespace cell and under the Value cell. This should allow you to select "http://schemas.examplemdr.org/schema/ExampleMDR" from the drop down box.
  15. In the table click the table cell next to the localName cell and under the Value cell. This should allow you to select "student" from the drop down box. The drop down box should have 3 entries ("students", "teachers" and "class")
  16. Click on the 'Preview XML' button on the bottom of the page. This should show the following xml in the preview tooltip pane.
<?xml version="1.0" encoding="UTF-8"?>
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
   <s:itemTemplate id="items" suppressFromResult="false" >
      <s:recordConstraint >
         <s:recordType namespace="http://schemas.examplemdr.org/schema/ExampleMDR" localName="student" >
         </s:recordType>
      </s:recordConstraint>
   </s:itemTemplate>
</s:query>
  1. Click on the 'Preview XML' button again to remove the tooltip pane.
  2. Click Submit.
  3. A "CBMDB Query" node showing the date the query was submited should be added to the "Sample Repository with Query" node.
  4. Click on the "CMDBf Query" node. The "Details" pane should show the graph view of the query result.
  5. In the Details pane the "Nodes and Edgets" section contains a table with three rows. Only the Source column is populated. The Source column should have "items:03", "items:02" and "items:01" cell values.
  6. Click on the "items:03" cell. The Records section should show the following information:

templateID: items MDRId: org.eclipse.cosmos.samples.cmdbf.XMLRepository localId: 03

  1. In the Details table click on the plus line to expand the row. The contents of the expand row should be:
<xml>
<student>
<identity firstName="Mike" id="03" lastName="Lee"/>
</student>
</xml>
  1. The "Additoinal Record Types" is the thrid section of the view. This section should have a table with a "NameSpace" and "LocalName" column. The table should not contain any rows.

Expected Result

  1. There should not be any exception that is thrown when expanding the nodes.

Test Description:Multiple Graph Response Viewers

  1. Download and install from the COSMOS downloads page the latest Data Reporting Web Application.
  2. Go to the test page at : http://localhost:8080/COSMOSUITests/?page=graphResponseViewer
  3. Three Graph Response Viewer Widgets should be displayed
  4. check there is a Combo Box for all 3 Graph Response Viewers
  5. check there is a Nodes and Edges Grid for all 3 Graph Response Viewers
  6. check there is a Records Grid for all 3 Graph Response Viewers
  7. check there is an Additional Record Types Grid for all 3 Graph Response Viewers
  8. check that all 3 combo boxes have 4 entries in them :
    All
    Node: teacher
    Node: student
    Edge: reference
  1. check that all 3 Nodes and Edges Grids have the following 5 rows :
 Row 1 should just contain a Source cell with Value : teacher:staff01
 Row 2 should just contain a Source cell with Value : students:03
 Row 3 should just contain a Source cell with Value : students:01
 Row 4 should just contain a Source cell with Value : teacher:staff01
                             Edge   cell with Value : reference
                             Target cell with Value : student:03 
 Row 5 should just contain a Source cell with Value : teacher:staff01
                             Edge   cell with Value : reference
                             Target cell with Value : student:01  
  1. On each of the three Nodes and Edges Grids, click on the cell at row 4 cell 2 (the edge) with
   a value "reference"
  1. for each
  2. check the ART pane title is hown without the grid (the pane container has a title that can be toggled so that the contents beneath it are not displayed)
  3. check that the green circle icon with a white + is shown underneath the Detail label
  4. Check that the Record Id is shown:

ECM01:SomeLongWordsAndSomeNumbers/12345678/09876/AndHereIsSomeMore/AndSoonThisWillFinsih/TestingTesting/OneTwoThreegone!

  1. check that when you hover the mouse over the recordid that a hint bubble is displayed and that the hint bubble displays the full recordid that is split on the 30th character.
  2. click on the green circle icon with a white + and make sure the popup dialog is dispalyed with the title the same as the recordid, and the xml is didpslayed
  3. click OK, and check that the xml is shown in the detail area in the grid.
  4. On each of the three Nodes and Edges Grids, click on the cell at row 5 (FIVE) cell 2 (the edge) with a value "reference"
  5. for each
  6. check the ART GRID expands and contains :
     Testing 1 2 3            Testing LocalName
  1. for each
  2. in the Nodes and Edges grid, click on a blank cell (click on a cell that has no text in it)
  3. check that the ART grid gets hidden (it gets hidden as yo know you do not hva ART data for a blank node/edge)
  4. once again... click on the cell at row 5 (FIVE) cell 2 (the edge) with
   a value "reference"
  1. click on row 5 cell 3 (students:01) This is to test that if you have ART data for one and you switch to a new cell that has ART data, that you see the new ART data.
  2. check that the ART Grid shows 1 row :
      Seems to work            Yes it Does

Test Description:Registration Example

  1. Complete the "Installatoin" and "Running the Program" section outlined under http://wiki.eclipse.org/COSMOS_UG_Running_the_Example. At this point tomcat should be running. Then point your browser to http://localhost:8080/COSMOSUI/?page=cosmos
  2. Right click on the "Sample Repository with Registration" Data Manager
  3. Select "Register Configuration Items..." on the popup menu
  4. In the "Register MDR Configuration Items" window, select the "Example MDR"
  5. Press the "Register" button
  6. A list of configuration items will be displayed showing status results. All the configuration items should be accepted.
  7. Expand the "Sample Repository with Registration" node in the navigation tree.
  8. Select the "All items and Relationship" node. The graph viewer should be shown in the details pane with a list of configured items.

Test Description:Deregistration Example

  1. Complete the "Registration example" Test case. This should be the previous test case in this test suite.
  2. Right click on the "Sample Repository with Registration" Data Manager
  3. Select "DeRegister Configuration Items..." on the popup menu
  4. In the "DeRegister MDR Configuration Items" window, select the "Example MDR"
  5. Press the "DeRegister" button
  6. A list of configuration items will be displayed showing status results. All the configuration items should be accepted.
  7. Expand the "Sample Repository with Registration" node in the navigation tree.
  8. Right click the "All items and Relationship" node and select "Refresh" from the pop-up menu.

Expected Result:

  1. The graph viewer should be shown in the details pane that shows no configuration items.

Test Description:Partial Registration

  1. Complete the "Installatoin" and "Running the Program" section outlined under http://wiki.eclipse.org/COSMOS_UG_Running_the_Example. At this point tomcat should be running. Then point your browser to http://localhost:8080/COSMOSUI/?page=cosmos
  2. Right click on the "Resource Repository" and select "Submit query..."
  3. Paste a query from the cosmos-demo\cosmos-client\cmdbfQuery\SMLMDR directory and press "Submit"
  4. Right-click on the new query node in the navigator tree
  5. Select "Register Configuration Items..." on the popup menu
  6. In the "Register Configuration Items" window, select at least one node or edge
  7. Select the "Registration Example" CMDBf
  8. Press the "Register" button

Expected Result:

  1. A list of configuration items will be displayed showing status results

Test Description:Partial Deregistration

  1. Follow the instructions at http://wiki.eclipse.org/COSMOS_DEMO_i14
  2. Right click on the "Resource Repository" and select "Submit query..."
  3. Paste a query from the cosmos-demo\cosmos-client\cmdbfQuery\SMLMDR directory and press "Submit"
  4. Right-click on the new query node in the navigator tree
  5. Select "Deregister Configuration Items..." on the popup menu
  6. In the "Deregister Configuration Items" window, select at least one node or edge
  7. Select the "Registration Example" CMDBf
  8. Press the "Deregister" button

Expected Result:

  1. A list of configuration items will be displayed showing status results

Test Description:Creating Named Query

  1. Rerun the "example cmdbf query" test case. However, this time enter "My Query" in the "Query Name:" text field.

Expected Result:

  1. A node should be created named "My Query" under the "Sample Repository with Query" node in the navigation tree.
  2. There should not be any exception that is thrown when expanding the nodes.

Test Description:Rename Query

  1. Run the "Creating a named query" test case.
  2. Right click the "My Query" node in the navigation tree and select the "Rename Query" option.
  3. Enter "MyNew Query" in the "Query Name:" text box and click "Ok"
  4. The node should change from "My Query" to "My New Query".
  5. Right click the "My New Query" node in the navigation tree and select the "Rename Query" option.
  6. Enter "My Name Changed" in the "Query Name:" text box and click "Cancel"
  7. The node name should not change.

Expected Result:

  1. There should not be any exception that is thrown when expanding the nodes.

Test Description:Creating Query Folder

  1. Right click the "Sample Repository with Query" node in the Data Managers pane. Select the "New Folder..." menu option.
  2. This will bring up a dialog box. Enter "MyFolder" in the text box and click "Ok".
  3. A node containing a folder icon should show up under the "Sample Repository with Query" node.
  4. Repeat steps 1- 2 but this time click "Cancel".
  5. Make sure that no node is added under the "Sample Repository with Query" node.

Expected Result

  1. There should not be any exception that is thrown when expanding the nodes.

Test Description:Rename Folder

  1. Run the "Creating a query folder" test case.
  2. Right click the "MyFolder" node in the navigation tree and select the "Rename Query" option.
  3. Enter "MyNew Folder" in the "Query Name:" text box and click "Ok"
  4. The node should change from "MyFolder" to "MyNew Folder".
  5. Right click the "MyNew Folder" node in the navigation tree and select the "Rename Query" option.
  6. Enter "My Folder Changed" in the "Query Name:" text box and click "Cancel"
  7. The node name should not change.

Expected Result:

  1. There should not be any exception that is thrown when expanding the nodes.

Test Description:Enter Security Info

  1. Right click the "Sample Repository with Query" node in the Data Managers pane. Select the Properties..." menu option.
  2. Enter a username and password value in the dialog box. Select Soap Version 1.2 from the drop down box and click "Ok".
  3. Run "example cmdbf query" test case. Make sure there are no errors.
  4. Expand the "Sample Repository with Query" node and click on the "Get All Students" node. Make sure there are no erros.
  5. Expand the "Sample Repository with Query" node and click on the "Get All Teachers" node. Make sure there are no erros.
  6. Expand the "Sample Repository with Query" node and click on the "Get All Classes" node. Make sure there are no erros.

Expected Result

  1. There should not be any exception that is thrown when expanding the nodes.

Test Description:Save Queries

  1. Edit apache-tomcat-5.5.25\webapps\COSMOSUI\config\configuration.properties
  2. Set RSPONSE_HISTORY_LIMIT=5 and QUERY_SAVE= true as shown as follows:
# @name Response History Limit
# @description The graph response history limit size.  (-1 signifies unlimited) 
RESPONSE_HISTORY_LIMIT=5
# @name Auto Save Queries
# @description A flag that determines if the queries should be automatically saved on the server machine.
QUERY_SAVE=true
  1. Restart tomcat.
  2. Rerun "Create a named query", "Rename a query", "Create a query folder", "Rename a folder"
  3. Open a new browser window and point to http://localhost:8080/COSMOSUI/
  4. The queries that were created and renamed should show up in the view.

Expected Result:

  1. There should not be any exception that is thrown when expanding the nodes.

using 'Submit Query as Text'

  1. Right click on the Sample Repository with Query
  2. Choose 'Submit Query as Text'
  3. In the dialog box that comes up cut and paste the following query
<?xml version="1.0" encoding="UTF-8"?>
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
	<s:itemTemplate id="items">
		<s:recordConstraint>
			<s:recordType namespace="" localName="student"/>
		</s:recordConstraint>
	</s:itemTemplate>
</s:query>
  1. Click 'Submit' button

Expected Result:

  1. You should get an entry in the response tree just below 'Staff02' labeled CMDBf Query <timestamp> ...

clicking on this response should yield the same behaviour in the details pane as clicking on 'Get All Students'


Query Properies

  1. Expand the "Sample Repository with Query" node and click the "Get All Students" node.
  2. The bottom right section of the page should show the following query document:

Expected Result:

<?xml version="1.0" encoding="UTF-8"?>
<!-- This query selects all students taught by the teacher with -->
<!-- the id: "staff01" -->
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
<s:itemTemplate id="teacher">
<s:instanceIdConstraint>
<s:instanceId>
<s:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository
</s:mdrId>
<s:localId>staff02
</s:localId>
</s:instanceId>
</s:instanceIdConstraint>
</s:itemTemplate>
<s:itemTemplate id="students">
<s:recordConstraint>
<s:recordType namespace="" localName="student"/>
</s:recordConstraint>
</s:itemTemplate>
<s:relationshipTemplate id="reference">
<s:sourceTemplate ref="teacher"/>
<s:targetTemplate ref="students"/>
</s:relationshipTemplate>
</s:query>

Hierarchical Items

  1. Expand "Sample Repository with Query"
  2. Select "Get All Classes" query
  3. Ensure there is an item template displayed along with three children:
ECM01
MAT01
PHY01

Expected Result:

  1. Select ECM01 and make sure the properties view gets populated with instance ID
  2. Expand ECM01 and select "Record for ECM01". Make sure the properties view gets populated with the value of the record.

Hierarchical Relationships

  1. Expand "Sample Repository with Query"
  2. Expand "Staff 01"
  3. Select "Students of Staff 01" query

Expected Result:

  1. Make sure the hierarchical view is populated with the following data:
Pupils_of_Staff01
 |_Student03
 |_Student01

Teacher_Staff01
 |_Staff01

Relationships_of_Staff01
 |_Staff01/Student03/ECM01
 |_Staff01/Student01/ECM01

Hierarchical Sample Registration

  1. Register all entries of "Sample Repository with Query" with "Sample Repository with Registration"
  2. Select the query under "Sample Repository with Registration"
  3. Make sure three item templates appear:
all-items
all-items-in-relationships
all-relationships

Expected Result:

  1. Ensure 3 students, 3 classes, and 2 teachers appear under 'all-items'
  2. Ensure 3 students, and 2 teachers appear under 'all-items-in-relationships'
  3. Ensure a total of 6 relationships appear under 'all-relationships'

visualize CMDBf Graph Report

  1. Complete the steps for the "navigate" test case.
  2. In the "Data Managers" select the ""Sample Repository with Query>Get All Classes" node.
  3. Right click the "Get All Classes" node. A "CMDBf Graph Response Report" menu item should show up
  4. Select this menu item.
  5. The details pane should render the "CMDBf Graph Reponse Report".

Expected Result:

  1. The report should contain 3 items that shows entries for Economics, Mathematics and Physics.
  2. Select the "Record for Economics" link.
  3. The "Univeristy Course Details" report should be rendered in the page. The report should display the course description.
  4. Click the "Back" link at the top of the report. This should bring you back to the "CMDBf Graph Reponse Report".

visualize CMDBf Graph Report 2

  1. Repeat the steps for the "visualize CMDBf Graph Report" test case. Instead select the "Sample Repository with Query>Get All Students" node.

Expected Result:

  1. The CMDBf Graph Report should show 3 items. Mike Lee, Jane Ryerson, and Bob Davidson.
  2. Click on the "Record for Mike Lee" link. The Student report should render the student information (Student Id: Student03, Full name: Mike Lee, Email: mlee322@yahoo.com, Phone No: 516-225-62626
  3. Click the "Back" link. This should go back to the "CMDBf Graph Report"

visualize CMDBf Graph Report 3

  1. Repeat the steps for the "visualize CMDBf Graph Report" test case. Instead select the "Sample Repository with Query>Get All Teachers" node.

Expected Result:

  1. The CMDBf Graph Report should show 2 items. Heather Reeba, and Dawn Johnson.
  2. Click on the "Record for Heather Reeba" link. The Teacher report should render the student information (Teacher Id: Staff02, Full name: Heather Reeba , Email: hreeba2@hotmail.com, Phone No:522-335-6821
  3. Click the "Back" link. This should go back to the "CMDBf Graph Report"

Data Managers View

Test Description:DataManagers list

  • Layout of the User Interface
  1. Once you have started the COSMOS components, point your web browser to http://localhost:8080/COSMOSUI/?page=cosmos

Expected Result:

  1. The initial page of the COSMOS Web User Interface displays three main panes. The left pane shows a list of data managers that are registered with the broker. The top right pane shows the details view that is initially blank. The bottom right pane shows a properties view that is initially blank.
  2. The pane on the left is the "Data Managers" view. It lists all data managers registered at the broker. There are initially six data managers that are registered with the broker.
    1. A Statistical Data Manager that displays reports on some runtime statistics ("StatDataManager")
    2. A Logging Data Manager that displays reports on log files based on the Common Based Event format. ("LoggingDataManager")
    3. An Example Federating CMDB ("Sample Repository with Registration")
    4. An Example MDR that contains information related to students and teachers ("Sample Repository with Query")
    5. An Asset Repository that contains asset information that is modelled using the Service Modeling Language (SML) ("Resource Repository")
    6. An MDR for making queries on storage management data from Aperi using JDBC ("AperiMdr")
  3. The end user can select a particular data manager to display properties associated with the data manager. The properties are shown in the bottom right pane in the Properties view.

Full screen mode toolbar button

Test Description:DataManagers list with Full Screen mode

  1. Open COSMOSUI in IE or Firefox browser, http://localhost:8080/COSMOSUI/?page=cosmos
  2. Go to Data Managers Pane and look for toolbar buttons - Minimize and Maximize
  3. On Data Managers pane, Click on Minimize button (V) and make sure Data Managers Pane gets minimized
  4. On Data Managers pane, Click on Maximize button ([]) and make sure Data Managers Pane gets maximized to full screen mode
  5. From full screen mode-Details pane, look for Properties and Details Pane, they should be available under minimized mode (left bottom corner)
  6. From full screen mode-Data Mangers pane, click on restore button to restore Data Managers pane to default view

Expected Result:

  • All toolbar buttons - Minimize,Maximize and Restore buttons should function properly in minimizing,maximixing,restoring Data Managers Pane window

Test Description:Details Pane with Full Screen mode

  1. Open COSMOSUI in IE or Firefox browser, http://localhost:8080/COSMOSUI/?page=cosmos
  2. Go to Details Pane (Right top corner) and look for toolbar buttons - Minimize and Maximize
  3. Select "Logging Data Repository" ->access_log.cbe.xml, right click and select "Top 10 Log Report"
  4. On Details pane, Click on Minimize button (V) and make sure Details Pane gets minimized (Left bottom corner)
  5. On Details pane, Click on Maximize button ([]) and make sure Details Pane gets maximized to full screen mode with the details of "Top 10 Log Report"
  6. From full screen mode-Details pane, look for Data Managers and Properties Pane, they should be available under minimized mode (left bottom corner)
  7. From full screen mode-Details pane, click on restore button to restore Details pane to default view

Expected Result:

  • All toolbar buttons - Minimize,Maximize and Restore buttons should function properly in minimizing,maximixing,restoring Details Pane window

Test Description:Properties Pane with Full Screen mode

  1. Open COSMOSUI in IE or Firefox browser, http://localhost:8080/COSMOSUI/?page=cosmos
  2. Go to Properties Pane (Right bottom corner) and look for toolbar buttons - Minimize and Maximize
  3. From Data Managers pane, select "Monitoring Data Repository"
  4. Go to Properties Pane, Click on Minimize button (V) and make sure Properties Pane gets minimized and is visibile under left bottom corner as minimized icon.
  5. Go to Properties Pane, Click on Maximize button ([]) and make sure Properties Pane gets maximized to full screen mode with the properties of "Monitoring Data Repository"
  6. From full screen mode-Properties pane, look for Data Managers and Details Pane, they should be available under minimized mode (left bottom corner)
  7. From full screen mode - Properties pane, click on restore button to restore Properties pane to default view

Expected Result:

  • All toolbar buttons - Minimize,Maximize and Restore buttons should function properly in minimizing,maximixing,restoring Property Pane window

Statistical Data Manager

Test Description:StatDataManager CBE

  • Displaying statistical data sources & Generating the statistical data reports
  1. Expand the "StatDataManager" node in the Data Managers pane to show a list of recorded statistical data sessions
  2. select the collected data "server 33 tomcat1181829221515 CBE" and select "Statistical Report" by right clicking on it

Expected Result:

  1. Generates the statistical report and will be displayed in the "Details" pane
  2. The properties of the selected data collection should be displayed in the Properties pane.


Logging Data Manager

Test Description:LogDataManager access_log

  • To query the CBE data manager for a list of log files and generate reports on the log data.
  1. Expand the "LoggingDataManager" node in the left pane to show a list of log files managed by the data manager
  2. Select the log file "access_log.cbe.xml", right click and select "Top 10 Log Report" menu option

Expected Result:

  1. The properties view should show the properties of the log file.
  2. Log report will be generated in the "Details" pane in the top right pane

Test Description:LogDataManager windows_app_log

  • To query the CBE data manager for a list of log files and generate reports on the log data.
  1. Expand the "LoggingDataManager" node in the left pane to show a list of log files managed by the data manager
  2. Select the log file "windows_app_log.cbe.xml" , right click and select "Top 10 Log Report" menu option

Expected Result:

  1. The properties view should show the properties of the log file.
  2. Log report will be generated in the "Details" pane in the top right pane

Using the Registration Example CMDBf (Sample Repository with Registration)

Test Description:TestFederatingCMDB register

  • To register configuration items with the test Federating CMDB
  1. start the COSMOS UI
  2. right-click on the "Sample Repository with Registration" Data Manager
  3. select "Register Configuration Items..." on the popup menu
  4. In the "Register MDR Configuration Items" window, select the "Example MDR"
  5. Press the "Register" button

Expected Result:

  1. A list of configuration items will be displayed showing status results

Test Description:TestFederatingCMDB deregister

  • To Deregister configuration items from the test Federating CMDB
  1. start the COSMOS UI
  2. right-click on the "Sample Repository with Registration" Data Manager
  3. select "Deregister Configuration Items..." on the popup menu
  4. In the "Deregister MDR Configuration Items" window, select the "Example MDR"
  5. Press the "Deregister" button

Expected Result:

  1. A list of configuration items will be displayed showing status results

Test Description:TestFederatingCMDB Submit Query

  1. start the COSMOS UI
  2. right-click on the "Sample Repository with Registration" Data Manager
  3. Select "Submit Query" on the popup menu
  4. Provide following CMDBf Query and click on submit
<?xml version="1.0" encoding="UTF-8" ?>
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
   <s:itemTemplate id="all-items">
     <s:instanceIdConstraint>
       <s:instanceId>
         <s:mdrId>*</s:mdrId>
         <s:localId>*</s:localId>
       </s:instanceId>
     </s:instanceIdConstraint>
   </s:itemTemplate>
   <s:relationshipTemplate id="all-relationships">
     <s:sourceTemplate ref="all-items"/>
     <s:targetTemplate ref="all-items"/>
   </s:relationshipTemplate>
</s:query>

Expected Result:

  1. Should display appropriate results under GraphQueryResponse viewer

Test Description:TestFederatingCMDB Metadata

  1. start the COSMOS UI
  2. right-click on the "Sample Repository with Registration" Data Manager
  3. select "View Metadata" on the popup menu

Expected Result:

  1. Should display "There is no ServiceMetaData for this DataManager."

SML MDR (Resource Repository)

Test Description:SMLMDR Submit Query

  • To construct a CMDBf query to acquire asset information on these resources.
  1. To submit a query on the SML Repository, right click on "Resource Repository" from the "Data Managers" view.
  2. A pop-up menu should be shown with a "Submit Query..." option.
  3. Click on the option to bring up a dialog box that will allow the user to enter a CMDBf query.
  4. Submit the following CMDBf query, which will get information on a cable.
<?xml version="1.0" encoding="UTF-8"?>
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
	<s:itemTemplate id="cableTemplate">
		<s:instanceIdConstraint>
			<s:instanceId>
				<s:mdrId>http://cosmos.org/rm/sml/repository</s:mdrId>
				<s:localId>Cable1.xml</s:localId>
			</s:instanceId>
		</s:instanceIdConstraint>
	</s:itemTemplate>
</s:query>

Expected Result:

  1. The graph response viewer should be shown in the details pane.
  2. You should see one row in the table under the "Node and Edges" section. Click on the cell under the "Source" column.
  3. The Records section of the view will show information about the cable.
  4. Note that the asset information is displayed as a SML structure as below
<s:cable name="0001" xmlns:conn="connection" xmlns:ft="facetModel"     xmlns:it="http://www.cosmos.rm/dataCenter/core"     
xmlns:pm="propertyModel" xmlns:s="cable"     xmlns:sml="http://schemas.serviceml.org/sml/2007/02" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">   
 <it:facets>        <it:facet>            <it:properties>                <pm:connector format="RJ45"/>            </it:properties>        </it:facet>        
<it:facet>            <ft:location>                <it:properties>                    <ft:position coordinate="in use"/>                </it:properties>            
</ft:location>        </it:facet>        <it:facet>            <it:properties>                <conn:connection>                    
<conn:source sml:ref="true">                        <sml:uri>
/DataCenterSample/hardware/networking/Switch1.xml#xpointer(/switch[@name="switch1"]/facets/facet/ports[@input="true"]/port[@number="0"])
</sml:uri>                    </conn:source>                    <conn:target sml:ref="true">                        <sml:uri>	
/DataCenterSample/hardware/networking/Router1.xml#xpointer(/router[@name="router1"]/facets/facet/ports[@input="false"]/port[@number="1"]) 					                    
</sml:uri>                 </conn:target>                </conn:connection>            </it:properties>        </it:facet>    
</it:facets></s:cable>

Test Description:SMLMDR MetaData

  • To fetch MetaData of SML Repository
  1. To View MetaData of SML Repository, right click on "Resource Repository" from the "Data Managers" view.
  2. A pop-up menu should be shown with a "View MetaData" option, Click on it.

Expected Result:

  1. Should display appropriate MetaData information

Using the Aperi MDR (Storage Repository)

Test Description:AperiMdr Submit Query

  • To test AperiMdr Submit Query
  1. Select "Resource Repository" from the "Data Manager" view.
  2. Right click and select "Submit Query..."
  3. Copy/Past any of the Query data from <cosmos-demo>\cosmos-client\cmdbfQuery\Aperi folder

Expected Result:

  1. Query should execute properly and should display appropriate Query result under GraphResponseViewer without any errors

Test Description:AperiMdr MetaData

  • To view Metadata information for AperiMdr
  1. Select "Resource Repository" from the "Data Manager" view.
  2. Right click and select "View MetaData"

Expected Result:

  1. Should display MetaData information for AperiMdr

Example MDR (Sample Repository with Query)

Test Description:ExampleMDR All-Students

  • To execute pre-defined Queries
  1. Expand "Sample Repository with Query" from the "Data Manager" view.
  2. Click on "Get All Students" query

Expected Result:

  1. Should display XML Query result with Students data under GraphResponse Viewer

Test Description:ExampleMDR All-Teachers

  • To execute pre-defined Queries
  1. Expand "Sample Repository with Query" from the "Data Manager" view.
  2. Click on "Get All Teachers" query

Expected Result:

  1. Should display XML Query result with Teachers data under GraphResponse Viewer

Test Description:ExampleMDR All-Classes

  • To execute pre-defined Queries
  1. Expand "Sample Repository with Query" from the "Data Manager" view.
  2. Click on "Get All Classes" query

Expected Result:

  1. Should display XML Query result with Classes data under GraphResponse Viewer

Test Description:ExampleMDR Relationship1

  • To execute pre-defined relationship query
  1. Expand "Sample Repository with Query" from the "Data Manager" view.
  2. Expand "Staff01" query node
  3. Click on "All students taught by teacher ..." query

Expected Result:

  1. Should display XML Query result with students data under teacher id - staff01

Test Description:ExampleMDR Relationship2

  • To execute pre-defined relationship query
  1. Expand "Sample Repository with Query" from the "Data Manager" view.
  2. Expand "Staff02" query node
  3. Click on "All students taught by teacher ..." query

Expected Result:

  1. Should display XML Query result with students data under teacher id - staff02

Test Description:ExampleMDR Submit Query

  • To construct a CMDBf query to acquire the student or teacher information
  1. To submit a query on the Example MDR right click the "Sample Repository with Query" from the "Data Manager" view.
  2. A pop-up menu should be shown with a "Submit Query..." option. Click on the menu option.
  3. This will bring up a query builder dialog box that will allow the user to construct a CMDBf query.
  4. Build the following CMDBf query using the query builder. This query will get a list of students
<?xml version="1.0" encoding="UTF-8"?>
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
	<s:itemTemplate id="items">
		<s:recordConstraint>
			<s:recordType namespace="" localName="student"/>			
		</s:recordConstraint>
	</s:itemTemplate>
</s:query>
  1. The query builder is composed of three panes. The top level pane allows the user to create itemTemplate and relationshipTemplate nodes.
  2. Right click the "query" node in the top pane and select 'Add Item'.
  3. This will bring up a second dialog box that allows the user to enter the template id. Enter the word 'items' in the text box.
  4. Select the 'itemTemplate' node in the bottom left pane to view the properties on the element
  5. Add a recordConstraint element under the 'itemTemplate' node by right clicking the 'itemTemplate' node and selecting the 'add recordConstraint' menu option.
  6. Next we need to add a 'recordType' element under the 'recordConstraint' node. This time we right click the 'recordConstraint' node in the bottom left pane and select the 'add recordType' menu option.
  7. set the localName on the recordType element to 'student'. Click on the cell next to the 'localName' cell in the bottom right table. This will allow you to edit the attribute value. Enter the word 'student' in the text box and click enter.
  8. Click the "Preview XML" button to look at the CMDBf query we constructed.
  9. Click the 'Submit' button.

Expected Result:

  1. The graph response viewer should be shown in the details pane in the top right pane as shown below. The view will show a list of three students.
  2. Click on the "Source" cell in the "Nodes and Edges" section of the view. The Record section of the view should show the information on a particular student
  3. Note that the student information is displayed as a XML structure as follows:
<student>
   <identity firstName="Mike" id="03" lastName="Lee"/>
</student>

Test Description:ExampleMDR Submit Query as Text

  • To submit a CMDBf query to capture the student or teacher information
  1. To submit a query on the Example MDR right click the "Sample Repository with Query" from the "Data Manager" view.
  2. A pop-up menu should be shown with a "Submit Query as Text" option. Click on this menu option.
  3. This will bring up a Submit Query dialog box, Copy/Paste below query and Click on Submit
<?xml version="1.0" encoding="UTF-8"?>
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
	<s:itemTemplate id="items">
		<s:recordConstraint>
			<s:recordType namespace="" localName="student"/>			
		</s:recordConstraint>
	</s:itemTemplate>
</s:query>

Expected Result:

  1. Should display Appropriate Query Result data under GraphResponseViewer window

Test Description:ExampleMDR New Folder

Note:Before testing this scenario,make sure to enable "QUERY_SAVE=true" under <COSMOSUI>\config\configuration.properties

  • To create new folder and save CMDBf queries under it
  1. To create a new folder on the Example MDR, right click the "Sample Repository with Query" from the "Data Manager" view.
  2. A pop-up menu should be shown with a "New Folder" option. Click on this menu option.
  3. This will prompt for Folder Name, enter Folder Name as "MyFolder" and press Ok
  4. To submit a query on the Example MDR and to save under "MyFolder", Expand "Sample Repository with Query" from the "Data Manager" view and right click on "MyFolder".
  5. A pop-up menu should be shown with a "Submit Query as Text" option. Click on this menu option.
  6. This will bring up a Submit Query dialog box, Copy/Paste below query and Click on Submit
<?xml version="1.0" encoding="UTF-8"?>
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
	<s:itemTemplate id="items">
		<s:recordConstraint>
			<s:recordType namespace="" localName="student"/>			
		</s:recordConstraint>
	</s:itemTemplate>
</s:query>

Expected Result:

  1. Should create "MyFolder" under "Sample Repository with Query" and should contain CMDBf query result under this folder.
  2. Open another COSMOSUI instance and make sure "MyFolder" and CMDBf query result is shown under "Sample Repository with Query"

Test Description:ExampleMDR Response History

Note:Before testing this scenario,make sure to enable "RESPONSE_HISTORY_LIMIT=10" under <COSMOSUI>\config\configuration.properties

  • To track and view CMDBf query response histories
  1. To view Response History,Select and expand "Sample Repository with Query" from the "Data Manager" view.
  2. Select and expand, newly created folder - "MyFolder"
  3. Select any of the CMDBf query result and right click on it
  4. It then shows a popup menu with "Response History...", Select any of the query result and click on it

Expected Result:

  1. Should display CMDBf query result, response histories with appropriate time stamps under

"MyFolder"


Test Description:ExampleMDR Rename saved query

  • To test the ability of renaming saved queries
  1. To rename saved query,select and expand "Sample Repository with Query" from the "Data Manager" view.
  2. Select and expand newly created folder - "MyFolder"
  3. Select any of the existing CMDBf query and right click on it
  4. A popup menu should be shown with "Rename Query", Click on it
  5. It then prompts for new Query Name, type "MyExampleMdrQuery1" and click on OK

Expected Result:

  1. Should display new Query name - "MyExampleMdrQuery1" under "MyFolder" of ExampleMdr
  2. Also check the same with new COSMOSUI instance, it should show the modified query name

Test Description:ExampleMDR Refresh

  • To test the ability of refreshing saved queries
  1. To refresh/re-execute saved query,select and expand "Sample Repository with Query" from the "Data Manager" view.
  2. Select and expand newly created folder - "MyFolder"
  3. Select any of the existing CMDBf query and right click on it
  4. A popup menu should be shown with "Refresh", Click on it

Expected Result:

  1. Above selected CMDBf Query should execute and should add it's response history into "Response History..." menu item.

Test Description:ExampleMDR MetaData

  1. Expand "Sample Repository with Query" from the "Data Manager" view.
  2. Right Click and select "View MetaData"

Expected Result:

  1. Should display ExampleMdr Meta-Data Information

Test Description:Setting Security Properties

  • To test the basic security feature settings from COSMOS UI
  1. Expand "Sample Repository with Query" from the "Data Manager" view.
  2. Right Click and select "Properties..."
  3. It then popsup Properties dialog box and prompts for Username,Password and Version
  4. Set the values for Username="user1",Password="pass1" and Version="1.2" and click on OK
  5. Now,to submit a query on the Example MDR right click the "Sample Repository with Query" from the "Data Manager" view.
  6. A pop-up menu should be shown with a "Submit Query as Text" option. Click on this menu option.
  7. This will bring up a Submit Query dialog box, Copy/Paste below query and Click on Submit
<?xml version="1.0" encoding="UTF-8"?>
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
	<s:itemTemplate id="items">
		<s:recordConstraint>
			<s:recordType namespace="" localName="student"/>			
		</s:recordConstraint>
	</s:itemTemplate>
</s:query>

Expected Result:

  1. Captured SOAP request message should contain security header along with query data as listed below.
<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
<soapenv:Header>
<sec:securityHeader xmlns:sec="http://www.eclipse.org/cosmos/security" sec:mustUnderstand="0"><sec:username>user1</sec:username>
<sec:password>pass1</sec:password></sec:securityHeader>
</soapenv:Header>
<soapenv:Body><s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
	<s:itemTemplate id="items">
		<s:recordConstraint>
			<s:recordType localName="student" namespace="" />			
		</s:recordConstraint>
	</s:itemTemplate>
</s:query></soapenv:Body></soapenv:Envelope>

CMDB Graph Response Report

Test Description:CMDB Graph Response Report

  • To test CMDB Graph Response Report from COSMOS UI
  1. Select ExampleMDR->pre-canned queries->visualize CMDBf Graph Report
  2. Select SMLMDR->pre-canned queries->visualize CMDBf Graph Report
  3. Select AperiMDR->pre-canned queries->visualize CMDBf Graph Report
  4. Select FederatingCMDB->cmdbf query->visualize CMDBf Graph Report
  5. Select any of the custom CMDBf queries->visualize CMDBf Graph Report

Expected Result:

  1. Able to view CMDB Graph Response reports for all CMDBf queries.

End2End Supplement Tests (Negative)

Build Installation and Configuration

Test Description:Build Configuration long paths

  • To test Build installation with configuration having long paths with white spaces
  1. configDemo.bat C:\Program Files\cosmos\apache-tomcat-5.5.25 C:\Program Files\cosmos\cosmos-demo C:\Program Files\cosmos\birt-runtime-2_3_0.zip C:\Program Files\cosmos\axis2.war

Expected Result:

Invalid Tomcat directory
Invalid COSMOS demo install directory
Invalid path to BIRT zip file.
Invalid path to axis2.war

Test Description:Build Configuration missing axis2 path

  • To test Build installation with missing configuration of axis2.war file
  1. C:\Program Files\cosmos\cosmos-demo\bin>configDemo.bat "C:\Program Files\cosmos\apache-tomcat-5.5.25" "C:\Program Files\cosmos\cosmos-demo" "C:\Program Files\cosmos\birt-runtime-2_3_0.zip"

Expected Result:

Axis2 is not installed and path to axis2.war is not provided.
Install is aborted.

Test Description:Build Configuration long paths with quotes

  • To test Build installation with configuration having long paths with white spaces
  1. configDemo.bat "C:\Program Files\cosmos\apache-tomcat-5.5.25" "C:\Program Files\cosmos\cosmos-demo" "C:\Program Files\cosmos\birt-runtime-2_3_0.zip" "C:\Program Files\cosmos\axis2.war"

Expected Result:

Unzipping C:\Program Files\cosmos\axis2.war to C:\Program Files\cosmos\apache-tomcat-5.5.25\webapps\axis2...
Installed axis2 on Apache Tomcat server.
Installed web application: COSMOSReportViewer
Installed web application: COSMOSUI
Unzipping C:\Program Files\cosmos\birt-runtime-2_3_0.zip to C:\Program Files\cosmos\apache-tomcat-5.5.25\webapps/COSMOSReportViewer...
Unzipped BIRT to COSMOSReportViewer
Copied BIRT web viewer example to COSMOSReportViewer
Installed web service: AperiMdr
Installed web service: Broker
Installed web service: ExampleMdr
Installed web service: LoggingDataManager
Installed web service: ServiceFinder
Installed web service: SMLMDR
Installed web service: StatDataManager
Installed web service: TestFederatingCMDB
Copied axis jar files to COSMOSUI.
Copied axis jar files to COSMOSReportViewer.
Copied axis jar files to cosmos client.
Updated axis2.xml.
Updated services.xml for SML MDR.
Updated services.xml for statistical MDR.

COSMOS Command Line Client : Management Console

Broker registration variations

Test Description:Tomcat Port with 9080

  • Test Broker registration other than defaul port 8080 (say 9080):
  1. Start CosmosClient, <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> RegisterAllDataManagers http://localhost:9080/axis2/services/CosmosServiceFinder

Expected Result:

  1. All DataManagers should successfuly get registered to broker on port 9080

Test Description:Multiple Broker registration

  • Test Broker registration multiple times:
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> RegisterAllDataManagers http://localhost:9080/axis2/services/CosmosServiceFinder
  3. COSMOS> RegisterAllDataManagers http://localhost:9080/axis2/services/CosmosServiceFinder

Expected Result:

  1. Should display "Duplicate Registration" messages under COSMOS Client console window
  2. Also under tomcat console window, it should display "Service has already been registered at this broker. No new brokers are registered."

Test Description:getDataManagers without broker registration

  • Without broker registration, test the following:
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> GetDataManagers

Expected Result:

  1. Should display empty list of DataManagers

Test Description:getDataManagers with registered port 9080

  • After succesful broker registration, test the following:
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> GetDataManagers

Expected Result:

  1. Should display all 6 DataManagers registered with broker

Test Description: Registering ServiceGroup (Registring Multiple Times)

  • Try to register ServiceGroup multiple times
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> RegisterServiceGroup localhost AperiMdr http://localhost:9080/axis2/services/AperiMdrDataManager?wsdl http://localhost:9080/axis2/services/AperiMdrQueryService?wsdl
  3. COSMOS> RegisterServiceGroup localhost AperiMdr

http://localhost:9080/axis2/services/AperiMdrDataManager?wsdl http://localhost:9080/axis2/services/AperiMdrQueryService?wsdl

Expected Result:

  1. Should display appropriate error message

Test Description: Registering ServiceGroup (with incorrect hostname)

  • Try to register ServiceGroup multiple times
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> RegisterServiceGroup unknown AperiMdr http://localhost:9080/axis2/services/AperiMdrDataManager?wsdl http://localhost:9080/axis2/services/AperiMdrQueryService?wsdl

Expected Result:

  1. Should display appropriate error message

Test Description: Registering ServiceGroup (with incorrect DataManager)

  • Try to register ServiceGroup multiple times
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> RegisterServiceGroup localhost MyAperiMdr http://localhost:9080/axis2/services/AperiMdrDataManager?wsdl http://localhost:9080/axis2/services/AperiMdrQueryService?wsdl

Expected Result:

  1. Should display appropriate error message

Test Description: Registering ServiceGroup (with invalid/non-existing WSDL files)

  • Try to register ServiceGroup multiple times
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> RegisterServiceGroup localhost AperiMdr http://localhost:9090/axis2/services/AperiMdrDataManager?wsdl http://localhost:9090/axis2/services/AperiMdrQueryService?wsdl

Expected Result:

  1. Should display appropriate error message

Test Description: Registering ServiceGroup (with invalid Broker EPR)

  • Try to register ServiceGroup multiple times
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/MyBroker
  2. COSMOS> RegisterServiceGroup localhost AperiMdr http://localhost:9080/axis2/services/AperiMdrDataManager?wsdl http://localhost:9080/axis2/services/AperiMdrQueryService?wsdl

Expected Result:

  1. Registration should fail and hould display appropriate error message

Deregistration variations

Test Description:Deregistration Multiple times

  • Test deregistration of DataManager multiple times :
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> Deregister localhost StatDataManager
  3. COSMOS> Deregister localhost StatDataManager

Expected Result:

  1. Deregistration should fail and should display "Failure to deregister DataManager" message

Test Description:Deregistration with incorrect hostname

  • Test deregistration of StatDataManager with invalid hostname and valid datamanager name :
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> Deregister unknown StatDataManager

Expected Result:

  1. Deregistration should fail and should display appropriate error message

Test Description:Deregistration with incorrect datamanager

  • Test deregistration of StatDataManager with valid hostname and invalid datamanager name :
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> Deregister localhost StatDataMgr

Expected Result:

  1. Deregistration should fail and should display appropriate error message

GraphQuery variations

Test Description:graphQuery with invalid hostname

  • Test graphQuery for SMLMDR, with invalid hostname,valid DataManager,valid query path:
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> GraphQuery unknown SMLMDR D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\SMLMDR\testInstanceIdQuery.txt

Expected Result:

  1. Query execution should fail and throw appropriate error message.

Test Description:graphQuery with invalid datamanager

  • Test graphQuery for SMLMDR, with valid hostname,invalid DataManager,valid query path:
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> GraphQuery localhost StatDataManager D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\SMLMDR\testInstanceIdQuery.txt

Expected Result:

  1. Query execution should fail and throw appropriate error message.

Test Description:graphQuery with invalid query path

  • Test graphQuery for SMLMDR, with valid hostname,valid DataManager,invalid query path:
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> GraphQuery localhost SMLMDR D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\SMLMDRTest\testInstanceIdQuery.txt

Expected Result:

  1. Query execution should fail and throw appropriate error message.

Test Description:graphQuery with query path with spaces

  • Test graphQuery for SMLMDR, with valid hostname,valid DataManager,valid query path with spaces:
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> GraphQuery localhost SMLMDR "D:\cosmos i10\cosmos-demo\cosmos-client\cmdbfQuery\SMLMDR\testInstanceIdQuery.txt"

Expected Result:

  1. Query execution should be successful

Test Description:graphQuery with invalid AperiMdr query data

  • Test graphQuery for AperMdr with invalid query data, with valid Aperi database settings:
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> GraphQuery localhost AperiMdr D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\AperiMdr\StorageSystem_all_items.txt

Expected Result:

  1. Query execution should fail and display appropriate error message

Test Description:graphQuery with missing Aperi Database setup

  • Test graphQuery for AperMdr with valid data, with invalid Aperi database settings:
  1. <cosmos-demo>\cosmos-client\cosmosClient.bat http://localhost:9080/axis2/services/Broker
  2. COSMOS> GraphQuery localhost AperiMdr D:\cosmos\cosmos-demo\cosmos-client\cmdbfQuery\AperiMdr\StorageSystem_all_items.txt

Expected Result:

  1. Query execution should fail, with DB Connection error

COSMOS Web User Interface

COSMOS UI with Broker running at 8090

Test Description:List Datamanagers with broker port as 8090

  • Open COSMOSUI with 8090 port (Make sure all COSMOS Components are up and running at this port)
  1. http://localhost:8090/COSMOSUI/?page=cosmos

Expected Result:

  1. Should display all 6 DataManagers properly

Test Description:View Properties with broker port as 8090

  1. StatDataManager
  2. LoggingDataManager
  3. Sample Repository with Registration
  4. Sample Repository with Query
  5. Resource Repository
  6. AperiMdr

Expected Result:

  1. All properties should display the correct EPR with port 8090

Test Description:Statistical Report Generation

  • Test StatDataManager, "Statistical Report" generation:
  1. Open COSMOSUI (http://localhost:8090/COSMOSUI/?page=cosmos)
  2. Select StatDataManager -> server 33 tomcat1181829221515 CBE -> Generate StatReport

Expected Result:

  1. Statistical Report should get generated properly

Test Description:Top 10 Log Report Generation

  • Test "LoggingDataManager", Top 10 Log Report generation:
  1. Open COSMOSUI (http://localhost:8090/COSMOSUI/?page=cosmos)
  2. Select LoggingDataManager -> access_log.cbe.xml -> Top 10 Log Report

Expected Result:

  1. Top 10 Log report should get generated properly

TestFederatingCMDB Variations

Test Description:TestFederatingCMDB invalid self registration

  • Test "Sample Repository with Registration",self registration
  1. Select "Sample Repository with Registration"
  2. Click on "Register Configuration Items..."
  3. Select "Sample Repository with Registration" under registration window

Expected Result

  1. Either it should not be allowed or it should display appropriate error message

Test Description:TestFederatingCMDB invalid datamanager registration

  • Test "Sample Repository with Registration",Resource Repository registration
  1. Select "Sample Repository with Registration"
  2. Click on "Register Configuration Items..."
  3. Select "Resource Repository" under registration window

Expected Result

  1. Either registration should not be allowed or it should display appropriate error message

Test Description:TestFederatingCMDB AperiMdr registration

  • Test "Sample Repository with Registration",AperiMdr registration
  1. Select "Sample Repository with Registration"
  2. Click on "Register Configuration Items..."
  3. Select "AperiMdr" under registration window

Expected Result

  1. Either registration should not be allowed or it should display appropriate error message

Resource Repository Variations

Test Description:SMLMDR Submit Query with invalid data

  • Test Resource Repository, with invalid query
  1. select "Resource Repository" and click on "Submit Query"
  2. Provide invalid query and submit

Expected Result:

  1. Query should fail with appropriate error message

AperiMdr Variations

Test Description:AperiMdr Submit Query with invalid data

  • Test AperiMDR with proper db configuration and with invalid query
  1. select "AperiMdr" and create invalid query using Query Builder

Expected Result:

  1. Query execution should fail and display appropriate error message

Test Description:AperiMdr Submit Query with missing DB setup

  • Test AperiMDR with invalid db configuration and with valid query
  1. select "AperiMdr" and create valid query using Query Builder

Expected Result:

  1. Query execution should fail with db connection error

ExampleMdr Variations

Test Description:ExampleMdr Submit Query with invalid data

  • Test "Sample Repository with Query", with invalid query
  1. select "Sample Repository with Query"
  2. Create an invalid query from query builder and submit it

Expected Result:

  1. Should display Empty Query response under GraphResponseViewer

Test Description:ExampleMdr with invalid data using Submit Query as text

  • Test "Sample Repository with Query", with invalid query using "Submit Query as text"
  1. select "Sample Repository with Query" -> "Submit Query as Text"
  2. Create an invalid query from query builder and submit it

Expected Result:

  1. Should display Empty Query response or appropriate error message

Test Broker Attributes for ExampleMdr with cosmos.properties

  • Testing "Broker Attributes for ExampleMdr" by modifying cosmos.properties file
  1. Open COSMOS Command line client
  2. Deregister examplemdr => Deregister http://www.eclipse.org/cosmos/examplemdr/4
  3. shutdown tomcat instance
  4. Goto ExampleMdr service location and modify it's mdrid under cosmos.properties file
  5. Restart tomcat
  6. Register examplemdr with new mdrid, Register http://www.eclipse.org/cosmos/examplemdr/44
  7. Run GetDataManagerInfo with new mdrid

Expected Result:

  1. Modified Broker attributes should display correctly

Test - Launching COSMOS UI with a ExampleMdr query (invalid query)

  • Testing "Launching COSMOS UI with a ExampleMdr query (invalid query)"
  1. Open Browser and run the following query
http://localhost:8090/COSMOSUI/?page=DataPage&mdrName="Sample Repository with Query"&query=<?xml version="1.0" encoding="UTF-8"?><s:itemTemplate id="All_Students"><s:recordConstraint><s:recordType namespace="" localName="mystudent"/></s:itemTemplate></s:query> 

Expected Result:

  1. Query should execute successfully and display empty GraphResponseViewer

Test - ExampleMdr with Invalid Query Relationship data

  • Testing ExampleMDR with invalid Relationship query
  1. Create relationship Query with non-existing localid and submit query as text
  2. Example, copy staff01 query and modify localid as "mystaff01" and submit the query

Expected Result:

  1. Query should execute successfully and display all students data without having any relationship data to given localid (or) it should display empty response.

Basic Operational efficiency tests (Performance Tests)

Configuration Tests

Test Description:COSMOSUI/Broker/DataManagers with multiple machines

  • Testing the scenario where COSMOSUI,COSMOSReportViewer running on windows PC1,broker running on windows PC2 and all datamanagers running on linux PC1
  1. Install and deploy COSMOSUI,COSMOSReportViewer webapps application under windows PC1
  2. Install and deploy COSMOS Broker service under windows PC2
  3. Install and deploy COSMOS Data Managaers/MDR's services under linux PC1
  4. Open COSMOS Command line interface from any of the PC's with Broker URL, <cosmos-demo>/cosmosClient/bin/cosmosClient.bat http://<WindowsPC2host>:8080/axis2/services/Broker
  5. COMSOS>broker registerAllDataManagers http://<linuxPC1host:8080>/axis2/services/CosmosServiceFinder
  6. Modify BROKER EPR value under <COSMOSUI>/Configuration.properties file, pointing to windows PC2 hostname
  7. From windows PC1 open COSMOSUI,http://localhost:8080/COSMOSUI
  8. Inspect the properties of all datamanagers

Expected Result:

  1. COSMOS UI should display all 6 Data Managers and all it's operations should work normally

Test Description:COSMOSUI/DataManagers on windows/linux

  • Testing the scenario where COSMOSUI running on windows and all COSMOS services running on Linux
  1. Install COSMOS service components under linux box
  2. Install COSMOSUI,COSMOSReportViewer webapps application under windows
  3. Modify BROKER EPR value under <COSMOSUI>/Configuration.properties file, pointing to linux hostname
  4. From windows, open http://localhost:8080/COSMOSUI

Expected Result:

  1. COSMOS UI should display all 6 Data Managers and all it's operations should work normally

Test Description:DataManagers/COSMOSUI on windows/linux

  • Testing the scenario where COSMOSUI running on linux and all COSMOS services running on windows
  1. Install COSMOS service components under windows
  2. Install COSMOSUI,COSMOSReportViewer webapps application under linux
  3. Modify BROKER EPR value under <COSMOSUI>/Configuration.properties file, pointing to windows hostname
  4. From linux, open http://localhost:8080/COSMOSUI

Expected Result:

  1. COSMOS UI should display all 6 Data Managers and all it's operations should work normally

Concurrency Tests

Test Description:Multiple COSMOSUI's

  • Concurrency tests, where multiple COSMOSUI's running on one machine
  1. Install all COSMOS components on windows PC
  2. open 2 COSMOSUI's under IE and 2 COSMOSUI's under Firebox browsers
  3. Perform various test operations - Generating Stat/Log reports on all COSMOSUI's #simultaneously,Executing CMDBf queries on all COSMOSUI's simultaneously

Expected Result:

  1. All COSMOS UI's should work normally and should get appropriate results without any errors

Test Description:Multiple COSMOSUI's and Command Line Clients

  • Concurrency tests, where multiple COSMOSUI's and multiple COSMOS Command Line Clients running on one machine
  1. Install all COSMOS components on windows PC
  2. open 1 COSMOSUI under IE and 1 COSMOSUI under Firebox browser
  3. open 2 COSMOS Command Line Shells
  4. Perform various test operations - Execute CMDBf queries on all COSMOS Clients simultaneously

Expected Result:

  1. All COSMOS clients should work normally and should get appropriate results without any errors

Volume/Performance Tests

Apache JMeter Tool - Setup Instructions

  1. Open Jmeter window (jmeter-install-dir\bin\jmeter.bat)
  2. On the left side, right click on the ‘Test Plan’ node and select ‘Add->Thread Group’. This inserts one child node called ‘Thread Group’ under ‘Test Plan’.
  3. Select the ‘Thread Group’ node. On the right side for ‘Number of Threads’ text box, give the number of samples.
  4. Right click on ‘Thread Group’ node, and select ‘Add->Sampler->SOAP/XML- RPC Request’. This inserts one child node called ‘SOAP/XML-RPC Request’ under ‘Thread Group’
  5. Select the ‘SOAP/XML-RPC Request’ node. On the right-side, in text box URL: give the URL to which the request to be send. In the ‘Soap/XML-RPC Data’ text area type the ‘SOAP request’
  6. Right click on ‘Thread Group’ node, and select ‘Add->Listener->Summary Report’. This inserts one child node called ‘Summary Report’ under the ‘Thread Group’. We can select our own format for displaying results (summary, table, tree…etc)
  7. Save the test
  8. Now, to run the test, from menu bar select Run->Start for running a test.
  9. Run->Stop for stopping test
  10. The results will be populated in the Listeners that we have added to the test.

Test Description:Broker Performance Test

  • Using Apache JMeter Tool,testing Broker with samples of 10,50,100,150,200 users simulation
  1. Follow the procedure to create the test, running the test using JMeter.
  2. Provide below SOAP request of Broker to Jmeter tool and run it with users simulation of 10,50,100,150,200.
*URL = http://localhost:8080/axis2/services/Broker 
*Soap/XML-RPC Data = <?xml version='1.0' encoding='utf-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body><tns:getAllGroups xmlns:tns="http://www.eclipse.org/cosmos/broker" /> 
/soapenv:Body></soapenv:Envelope> 

Expected Result:

  1. Broker requests with all above user samples should work fine with appropriate turn around time

Test Description:StatDataManager Performance Test

  • Using Apache JMeter Tool,testing StatDataManager with samples of 10,50,100,150,200 users simulation
  1. Follow the procedure to create the test, running the test using JMeter.
  2. Provide below SOAP request of StatDataManager to Jmeter tool and run it with users simulation of 10,50,100,150,200.
*URL = http://localhost:8080/axis2/services/StatisticalDataManager
*Soap/XML-RPC Data = <?xml version='1.0' encoding='utf-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body><tns:getDatasourceKeysets xmlns:tns="http://axis.datamgr.stat.dc.cosmos.eclipse.org" />
</soapenv:Body></soapenv:Envelope> 

Expected Result:

  1. StatDataManager requests with all above user samples should work fine with appropriate turn around time

Test Description:LogDataManager Performance Test

  • Using Apache JMeter Tool,testing LoggingDataManager with samples of 10,50,100,150,200 users simulation
  1. Follow the procedure to create the test, running the test using JMeter.
  2. Provide below SOAP request of LoggingDataManager to Jmeter tool and run it with users simulation of 10,50,100,150,200.
*URL = http://localhost:8080/axis2/services/CBEServices 
*Soap/XML-RPC Data = <?xml version='1.0' encoding='utf-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<tns:getLogFileIdentifiersxmlns:tns="http://axis.datamgr.logging.dc.cosmos.eclipse.org" />
</soapenv:Body></soapenv:Envelope>

Expected Result:

  1. LoggingDataManager requests with all above user samples should work fine with appropriate turn around time

Test Description:TestFederatingCMDB Performance Test

  • Using Apache JMeter Tool,testing FederatingCMDB with samples of 10,50,100,150,200 users simulation
  1. Follow the procedure to create the test, running the test using JMeter.
  2. Provide below SOAP requests of FederatingCMDB to Jmeter tool and run it with users simulation of 10,50,100,150,200.
<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><tns:getGroupsByNamespace xmlns:tns="http://www.eclipse.org/cosmos/broker"><tns:namespace>http://cmdbf.org/schema/1-0-0/query</tns:namespace></tns:getGroupsByNamespace></soapenv:Body></soapenv:Envelope> 

*URL=http://localhost:8080/axis2/services/ExampleMdrQueryService 
*Soap/XML-RPC Data=<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"><soapenv:Body><cmdbf:query xmlns:cmdbf="http://cmdbf.org/schema/1-0-0/datamodel"> 
<cmdbf:itemTemplate id="all-items"> </cmdbf:itemTemplate> <cmdbf:relationshipTemplate id="all-relationships"> <cmdbf:sourceTemplate ref="all-items" /> <cmdbf:targetTemplate ref="all-items" /> </cmdbf:relationshipTemplate> </cmdbf:query></soapenv:Body></soapenv:Envelope> 

*URL=http://localhost:8080/axis2/services/TestFederatingCMDBRegistrationService 
*Soap Data=<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><cmdbf:registerRequest xmlns:cmdbf="http://cmdbf.org/schema/1-0-0/datamodel"> 
<cmdbf:mdrId /> <cmdbf:itemList> <cmdbf:item> <cmdbf:record xmlns="http://school"> 
<student> 
<identity firstName="Mike" id="03" lastName="Lee"> </identity> 
</student> <cmdbf:recordMetadata> <cmdbf:recordId>03</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>03</cmdbf:localId> </cmdbf:instanceId> </cmdbf:item> <cmdbf:item> <cmdbf:record xmlns="http://school"> 
<student> 
<identity firstName="Jane" id="02" lastName="Ryerson"> </identity> 
</student> <cmdbf:recordMetadata> <cmdbf:recordId>02</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>02</cmdbf:localId> </cmdbf:instanceId> </cmdbf:item> <cmdbf:item> <cmdbf:record xmlns="http://school"> 
<student> 
<identity firstName="Bob" id="01" lastName="Davidson"> </identity> 
</student> <cmdbf:recordMetadata> <cmdbf:recordId>01</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>01</cmdbf:localId> </cmdbf:instanceId> </cmdbf:item> <cmdbf:item> <cmdbf:record xmlns="http://school"> 
<teacher> 
<identity firstName="Heather" id="staff02" lastName="Reeba"> </identity> 
</teacher> <cmdbf:recordMetadata> <cmdbf:recordId>staff02</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>staff02</cmdbf:localId> </cmdbf:instanceId> </cmdbf:item> <cmdbf:item> <cmdbf:record xmlns="http://school"> 
<teacher> 
<identity firstName="Dawn" id="staff01" lastName="Johnson"> </identity> 
</teacher> <cmdbf:recordMetadata> <cmdbf:recordId>staff01</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>staff01</cmdbf:localId> </cmdbf:instanceId> </cmdbf:item> </cmdbf:itemList> <cmdbf:relationshipList> <cmdbf:relationship> <cmdbf:source> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>staff02</cmdbf:localId> </cmdbf:source> <cmdbf:target> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>03</cmdbf:localId> </cmdbf:target> <cmdbf:record xmlns="http://school"> 
<class courseCode="PHY01" name="Physics"> 
<students> 
<enrolledStudent idRef="02"> </enrolledStudent> 
<enrolledStudent idRef="03"> </enrolledStudent> 
</students> 
<teacher idRef="staff02"> </teacher> 
</class> <cmdbf:recordMetadata> <cmdbf:recordId>PHY01</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>PHY01</cmdbf:localId> </cmdbf:instanceId> </cmdbf:relationship> <cmdbf:relationship> <cmdbf:source> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>staff02</cmdbf:localId> </cmdbf:source> <cmdbf:target> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>02</cmdbf:localId> </cmdbf:target> <cmdbf:record xmlns="http://school"> 
<class courseCode="MAT01" name="Mathematics"> 
<students> 
<enrolledStudent idRef="01"> </enrolledStudent> 
<enrolledStudent idRef="02"> </enrolledStudent> 
</students> 
<teacher idRef="staff02"> </teacher> 
</class> <cmdbf:recordMetadata> <cmdbf:recordId>MAT01</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>MAT01</cmdbf:localId> </cmdbf:instanceId> </cmdbf:relationship> <cmdbf:relationship> <cmdbf:source> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>staff02</cmdbf:localId> </cmdbf:source> <cmdbf:target> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>02</cmdbf:localId> </cmdbf:target> <cmdbf:record xmlns="http://school"> 
<class courseCode="PHY01" name="Physics"> 
<students> 
<enrolledStudent idRef="02"> </enrolledStudent> 
<enrolledStudent idRef="03"> </enrolledStudent> 
</students> 
<teacher idRef="staff02"> </teacher> 
</class> <cmdbf:recordMetadata> <cmdbf:recordId>PHY01</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>PHY01</cmdbf:localId> </cmdbf:instanceId> </cmdbf:relationship> <cmdbf:relationship> <cmdbf:source> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>staff02</cmdbf:localId> </cmdbf:source> <cmdbf:target> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>01</cmdbf:localId> </cmdbf:target> <cmdbf:record xmlns="http://school"> 
<class courseCode="MAT01" name="Mathematics"> 
<students> 
<enrolledStudent idRef="01"> </enrolledStudent> 
<enrolledStudent idRef="02"> </enrolledStudent> 
</students> 
<teacher idRef="staff02"> </teacher> 
</class> <cmdbf:recordMetadata> <cmdbf:recordId>MAT01</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>MAT01</cmdbf:localId> </cmdbf:instanceId> </cmdbf:relationship> <cmdbf:relationship> <cmdbf:source> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>staff01</cmdbf:localId> </cmdbf:source> <cmdbf:target> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>03</cmdbf:localId> </cmdbf:target> <cmdbf:record xmlns="http://school"> 
<class courseCode="ECM01" name="Economics"> 
<students> 
<enrolledStudent idRef="01"> </enrolledStudent> 
<enrolledStudent idRef="03"> </enrolledStudent> 
</students> 
<teacher idRef="staff01"> </teacher> 
</class> <cmdbf:recordMetadata> <cmdbf:recordId>ECM01</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>ECM01</cmdbf:localId> </cmdbf:instanceId> </cmdbf:relationship> <cmdbf:relationship> <cmdbf:source> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>staff01</cmdbf:localId> </cmdbf:source> <cmdbf:target> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>01</cmdbf:localId> </cmdbf:target> <cmdbf:record xmlns="http://school"> 
<class courseCode="ECM01" name="Economics"> 
<students> 
<enrolledStudent idRef="01"> </enrolledStudent> 
<enrolledStudent idRef="03"> </enrolledStudent> 
</students> 
<teacher idRef="staff01"> </teacher> 
</class> <cmdbf:recordMetadata> <cmdbf:recordId>ECM01</cmdbf:recordId> </cmdbf:recordMetadata> </cmdbf:record> <cmdbf:instanceId> <cmdbf:mdrId>org.eclipse.cosmos.samples.cmdbf.XMLRepository</cmdbf:mdrId> <cmdbf:localId>ECM01</cmdbf:localId> </cmdbf:instanceId> </cmdbf:relationship> </cmdbf:relationshipList> </cmdbf:registerRequest></soapenv:Body></soapenv:Envelope> 

Expected Result:

  1. FederatingCMDB requests with all above user samples should work fine with appropriate turn around time

Test Description:ExampleMdr Performance Test

  • Using Apache JMeter Tool,testing ExampleMDR with samples of 10,50,100,150,200 users simulation
  1. Follow the procedure to create the test, running the test using JMeter.
  2. Provide below SOAP request of ExampleMDR to Jmeter tool and run it with users simulation of 10,50,100,150,200.
*URL=http://localhost:8080/axis2/services/ExampleMdrQueryService 
*Soap Data=<?xml version='1.0' encoding='utf-8'?> 
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body> <st:query xmlns:st="http://cmdbf.org/schema/1-0-0/datamodel">
<st:itemTemplate id="items" suppressFromResult="false"> <st:recordConstraint>
<st:recordType localName="student" namespace="http://schemas.examplemdr.org/schema/ExampleMDR" />
</st:recordConstraint></st:itemTemplate></st:query> </soapenv:Body> 
</soapenv:Envelope>

Expected Result:

  1. ExampleMDR requests with all above user samples should work fine with appropriate turn around time

Test Description:SMLMDR Performance Test

  • Using Apache JMeter Tool,testing SMLMDR with samples of 10,50,100,150,200 users simulation
  1. Follow the procedure to create the test, running the test using JMeter.
  2. Provide below SOAP request of SMLMDR to Jmeter tool and run it with user samples of 10,50,100,150,200
 
*URL=http://localhost:8080/axis2/services/SmlMdrQueryService 
*SOAP Data=<?xml version='1.0' encoding='utf-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body> <st:query xmlns:st="http://cmdbf.org/schema/1-0-0/datamodel">
<st:itemTemplate id="cableTemplate"> <st:recordConstraint>
<st:propertyValue localName="format" namespace="propertyModel">
<st:equal>RJ45</st:equal> </st:propertyValue> </st:recordConstraint>
</st:itemTemplate> </st:query> </soapenv:Body> </soapenv:Envelope>

Expected Result:

  1. SMLMDR requests with all above user samples should work fine with appropriate turn around time

Test Description:AperiMdr Performance Test

  • Using Apache JMeter Tool,testing AperiMdr with samples of 10,50,100,150,200 users simulation
  1. Follow the procedure to create the test, running the test using JMeter.
  2. Provide below SOAP request of AperiMdr to Jmeter tool and run it with 10,50,100,150,200 users simulation
*URL=http://localhost:8080/axis2/services/AperiMdrQueryService 
*Soap Data=<?xml version='1.0' encoding='utf-8'?> 
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body> <st:query xmlns:st="http://cmdbf.org/schema/1-0-0/datamodel">
<st:itemTemplate id="items" suppressFromResult="false"> <st:recordConstraint>
<st:recordType localName="StoragePool" namespace="http://schemas.aperimdr.org/schema/AperiMDR" />
</st:recordConstraint> </st:itemTemplate> </st:query> </soapenv:Body> </soapenv:Envelope>

Expected Result:

  1. AperiMdr requests with all above user samples should work fine with appropriate turn around time

Scalability/Stability Tests

Test Description:ExampleMdr Volume Test

  • Using Apache JMeter Tool,testing ExampleMDR with multiple volumes of test data (data.xml) 1MB, 2MB,2.5MB with user samples of 10,50,100,150,200.
  1. Modify data.xml file to insert test data with 5000,10000,15000 student records
  2. Follow the procedure to create the test, running the test using JMeter.
  3. Provide below SOAP request of ExampleMDR to Jmeter tool and run it with 10,50,100,150,200 users simulation
*URL=http://localhost:8080/axis2/services/ExampleMdrQueryService 
*Soap Data=
<?xml version='1.0' encoding='utf-8'?> 
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body><st:query xmlns:st="http://cmdbf.org/schema/1-0-0/datamodel">
<st:itemTemplate id="items" suppressFromResult="false">
<st:recordConstraint> <st:recordType localName="student" namespace="http://schemas.examplemdr.org/schema/ExampleMDR" />
</st:recordConstraint></st:itemTemplate></st:query> </soapenv:Body> </soapenv:Envelope>

Expected Result:

  1. ExampleMDR requests with all above user samples should work fine with appropriate turn around time

Test Description:Scalability Tests with ExampleMdr

  • Scalability tests, with incremental addition of new datamanagers/mdrs
  1. Create duplicate copies of multiple data managers and MDRs (with samples of 6,12,18,24 datamanagers )
  2. Follow the procedure to create the test, running the test using JMeter.
  3. Provide below SOAP requests of various datamanagers to Jmeter tool and run it with 10,50,100,150,200 users simulation
<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body><tns:getAllGroups xmlns:tns="http://www.eclipse.org/cosmos/broker" />
</soapenv:Body></soapenv:Envelope>

Expected Result:

  1. All requests to various datamanagers should work normally with appropriate turn around time.

Eclipse Tooling Components Tests

MDR Toolkit tests

Pre-requisites:

* Eclipse 3.4
* WTP, EMF, GEF installed
* COSMOS SDK installed
* Tomcat installed
* Axis2 installed and runtime location set in Window>Preferences>Web Services>Axis2 Preferences

Creating a Data Manager Project

Test Description: Create Data Manager

  1. Select File > New > Other... from the Eclipse menu bar
  2. Select Web > Dynamic Web Project
  3. Type in a new project name
  4. For Target Runtime, select "Apache Tomcat 5.5". If this is not available in the list, create the entry by clicking the New... button and associating Apache Tomcat 5.5 with the Tomcat location on your computer.
  5. Next to Default Configuration, click Modify...
  6. Choose "Axis2 Web Services"
  7. Choose "CMDBf query service" under "Systems management" and click OK.
  8. Click the "Next >" button twice
  9. On the "MDR configuration" page, enter in values for all fields. Click Finish.

Expected Result:

  1. After step 6, the MDR configuration page is displayed.
  2. No error dialogs are displayed during the process
  3. A new web project is created with the name you indicated.
  4. A new class is created with the name you provided in the configuration, suffixed by QueryService, and it is in the package you indicated
  5. There are no compilation errors in the generated project

Facet interface for creating DM Project

Test Description: DM Project creation using Facet Interface

  1. Select File > New > Other... from the Eclipse menu bar
  2. Select Web > Dynamic Web Project
  3. Type in a new project name
  4. For Target Runtime, select "Apache Tomcat 5.5". If this is not available in the list, create the entry by clicking the New... button and associating Apache Tomcat 5.5 with the Tomcat location on your computer.
  5. Next to Default Configuration, click Modify...
  6. Choose "Systems Management > CMDBf query service"
  7. Choose "Axis2 Web Services"
  8. Deselect "Systems Management > CMDBf query service"
  9. Select "Systems Management > CMDBf registration service"
  10. Select "Systems Management > CMDBf query service"

Expected Result:

  1. Ensure a message is displayed after following step 6 that says Axis2 is required.
  2. Ensure the message indicated in result #1 disappears after step 7.
  3. Ensure a message is displayed after following step 9 that says you must select the query service
  4. Ensure the message indicated in result #3 disappears after step 10.

Run on Server

  1. Run the steps for "Creating Data Manager Project" and create an MDR
  2. Make sure dojo is installed and configured correctly. Dojo should be available under ../eclipse/plugins/org.eclipse.cosmos.dr.web.ui.viewer/COSMOSUI/dojo-release-1.1.0
  3. Go to above project, select MDR-> right click and run as-"Run on Server"
  4. It will ask for Server Runtime location, select already configured Apache Tomcat and finish the wizard
  5. It then starts tomcat server and will launch COSMOS UI in eclipse internal browser and displays UI with above MDR

Expected Result:

  1. After step 5, COSMOS UI should get displayed with the MDR Details.
  2. Go to COSMOS UI, select MDR and inspect for its properties. For example, it should display MDR Data as :
name	MyMDRQueryService
http://cmdbf.org/schema/1-0-0/query
http://localhost:8080/MyMDR/services/MyMDRQueryService

Using Web UI

  1. Run the steps for "Run on Server" and launch COSMOS UI with the MDR
  2. Alternatively after deploying MDR under tomcat, COSMOS UI can be launched using "System Management Web UI" icon which is available under toolbar menu with COMOS logo
  3. For example, Click on "System Management Web UI" icon and provide MDR details as :(MDR Name as "MYMDR" and EPR as "http://localhost:8080/MyMDR/services/MyMDRQueryService")
  4. Now go to COSMOS UI, select MDR->right click->Submit Query as Text and execute below query
<s:query xmlns:s="http://cmdbf.org/schema/1-0-0/datamodel">
        <s:itemTemplate id="items">
                <s:recordConstraint>
                        <s:recordType namespace="" localName="student"/>        
                </s:recordConstraint>
        </s:itemTemplate>
</s:query>

Expected Result:

  1. After step 2, COSMOS UI should comeup with appropriate MDR details
  2. After step 3, CMDBf query should execute successfully and should display result data as
Items > http://www.eclipse.org/cosmos/helloworld 
> http://www.eclipse.org/cosmos/SampleRecord

SML Tooling tests

Test Description: SML editor/import/export UI validation tests

  1. Ensuring that validating from the UI produces expected markers in the errors view, and that the line numbers match the correct location.
  2. Ensuring that creating a SML-IF using New > SML-IF file produces a valid SML-IF file (use the validator after creating)
  3. Ensuring that changes typed on the Overview tab of the editor are updated in the Source tab of the editor.
  4. Ensuring that importing a SML-IF file works for both a file system and workspace file.
  5. Ensuring that importing a valid SML-IF file, and then validating the resulting folder, results in the same validation messages
  6. Ensuring that importing a valid SML-IF file, and then exporting it, results in a valid SML-IF file
  7. Ensuring that entering new rule bindings on the third page of the export wizard will cause these bindings to be generated on export.

References

Back to the top