diff options
author | eh552t <eh552t@intl.att.com> | 2017-09-01 10:45:00 +0200 |
---|---|---|
committer | eh552t <eh552t@intl.att.com> | 2017-09-01 11:33:53 +0200 |
commit | 1d86c362d38b2aa94da463cda01119209bfe9053 (patch) | |
tree | e380fce061466379b7f61bc4b8c24aa4a575049f /test/csit/tests/clamp/UIs/data | |
parent | a3949e28940263815eb2793e7cae602d70a29290 (diff) |
Add more UIs functional tests with Selenium
Change-Id: I52c298833a3ddaff62ba3a79174391ec74f3e7c3
Signed-off-by: eh552t <eh552t@intl.att.com>
Issue-Id: CLAMP-35
Diffstat (limited to 'test/csit/tests/clamp/UIs/data')
-rw-r--r-- | test/csit/tests/clamp/UIs/data/TCA_template_properties.yml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/test/csit/tests/clamp/UIs/data/TCA_template_properties.yml b/test/csit/tests/clamp/UIs/data/TCA_template_properties.yml new file mode 100644 index 000000000..3e09fdad5 --- /dev/null +++ b/test/csit/tests/clamp/UIs/data/TCA_template_properties.yml @@ -0,0 +1,51 @@ +tosca_definitions_version: cloudify_dsl_1_2 + +imports: +- http://www.getcloudify.org/spec/cloudify/3.3.1/types.yaml +- http://127.0.0.1/1607_prod/type_files/cdap_app.yaml + +node_templates: + MTCA: + type: dcae.nodes.cdap_app + properties: + service_name: "cdap-mtca-central" + deployment_JSON: |- + { + "clusterService": {"$ref": "/services/vm-cdap-cluster-central/instances/rdm2c"}, + "namespace": "MTCA", + "appNames": [ "cdap-mtca" ], + "flowNames": [ "cdap-mtca.TCAVESCollectorFlow" ], + "workerNames": ["cdap-mtca.TCADMaaPMRSubscriberWorker", "cdap-mtca.TCADMaaPMRPublisherWorker"], + "serviceNames" : [], + "apps": { + "cdap-mtca": { + "jarFile": "/opt/app/cdap-apps/dcae-analytics-mtca-1.0.0.jar", + "artifactName": "dcae-analytics-mtca", + "version": "1.0.0", + "appConfigFileContent": "{config:{ \"appName\":\"cdap-mtca\", \"appDescription\":\"DCAE Analytics Threshold Crossing Alert Application\", \"tcaSubscriberOutputStreamName\":\"TCASubscriberOutputStream\", \"thresholdCalculatorFlowletInstances\":2, \"tcaVESMessageStatusTableName\":\"TCAVESMessageStatusTable\", \"tcaVESMessageStatusTableTTLSeconds\":864000, \"tcaVESAlertsTableName\":\"TCAVESAlertsTable\", \"tcaVESAlertsTableTTLSeconds\":1728000 }}" + } + }, + + "configuration": { + "$class": "com.att.ecomp.dcae.clamp.common.MThresholdCrossingConfiguration", + "subscriberContentType": "", + "subscriberConsumerId": "c12", + "subscriberConsumerGroup": "OpenDCAE-c12", + "subscriberTimeoutMS": "-1", + "subscriberMessageLimit": "-1", + "subscriberPollingInterval": "20000", + "publisherContentType": "application/json", + "publisherMaxBatchSize": "10", + "publisherMaxRecoveryQueueSize": "100000", + "publisherPollingInterval": "20000", + "publisherAlertWindowingTime": "86400", + "policyName": "policy.dcae.configuration", + "policyScope": "pnf=eNodeB;type=configuration", + "policyVersion": "1.0.0", + "domain" : "measurementsForVfScaling", + + "signatures" : { + } + + } + } |