aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opnfv/test_cases
diff options
context:
space:
mode:
authorliang gao <jean.gaoliang@huawei.com>2016-07-30 07:21:30 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-07-30 07:21:30 +0000
commit3632b33d3720c156a03489527e53d1f47fff4883 (patch)
tree7df36685a063300d7f7ed4adea6b9f99cb940c3d /tests/opnfv/test_cases
parent0bfb3e3ebad98eae4609e39d104a8e58d3b16f48 (diff)
parentd79981cea3a0912e15b352debd7bb05897c67a73 (diff)
Merge "Add test case description and task file for TC073(netperf)"
Diffstat (limited to 'tests/opnfv/test_cases')
-rwxr-xr-xtests/opnfv/test_cases/opnfv_yardstick_tc073.yaml37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/opnfv/test_cases/opnfv_yardstick_tc073.yaml b/tests/opnfv/test_cases/opnfv_yardstick_tc073.yaml
new file mode 100755
index 000000000..fd95b8c9d
--- /dev/null
+++ b/tests/opnfv/test_cases/opnfv_yardstick_tc073.yaml
@@ -0,0 +1,37 @@
+---
+# Yardstick TC073 config file
+# measure network latency and throughput using netperf
+# There are two sample scenarios: bulk test and request/response test
+# In bulk test, UDP_STREAM and TCP_STREAM can be used
+# send_msg_size and recv_msg_size are options of bulk test
+# In req/rsp test, TCP_RR TCP_CRR UDP_RR can be used
+# req_rsp_size is option of req/rsp test
+
+schema: "yardstick:task:0.1"
+{% set host = host or "node1.LF" %}
+{% set target = target or "node2.LF" %}
+{% set pod_info = pod_info or "etc/yardstick/nodes/compass_sclab_physical/pod.yaml" %}
+scenarios:
+-
+ type: NetperfNode
+ options:
+ testname: 'UDP_STREAM'
+ send_msg_size: 1024
+ duration: 20
+
+ host: {{host}}
+ target: {{target}}
+
+ runner:
+ type: Iteration
+ iterations: 1
+ interval: 1
+ sla:
+ mean_latency: 100
+ action: monitor
+
+context:
+ type: Node
+ name: LF
+ file: {{pod_info}}
+