test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V3 0/13] l3fwd: refactor script
@ 2020-01-16  7:27 yufengmx
  2020-01-16  7:27 ` [dts] [PATCH V3 1/13] conf/l3fwd: l3fwd suite testing configuration yufengmx
                   ` (13 more replies)
  0 siblings, 14 replies; 16+ messages in thread
From: yufengmx @ 2020-01-16  7:27 UTC (permalink / raw)
  To: dts, lijuan.tu; +Cc: yufengmx

refactor script. 
 

v4: 
 - rebase for merge conflict. 
 -  

v3: 
 - support one port testing topo for ixia. 
 - add test case name in cfg file. 
 - rename module l3fwd.py to l3fwd_base.py. 
 - rename common_l3fwd.cfg to l3fwd_base.cfg. 
 - rename verify method names. 
 - rename test scripts suite name. 
 -  

v2: 
 - update script based on version 2 l3fwd test plan. 
 - separate script into five suites for different testing scenario. 
 - separate flows configuration in common_l3fwd.cfg. 
 - add test result data check process as new test plan requirement. 
 - save test results in json format file. 
 -  

v1: 
 - optimize packet creation time consumption. 
 - separate LPM/EM mode packet creation process. 
 - use new pktgen coding style to take the place of migration coding style. 
 - unify rfc2544/throughput result data display table methods. 
 - move test content configuration into cfg file, including flows/EM table/LPM table/framesizes/port configs. 

yufengmx (13):
  conf/l3fwd: l3fwd suite testing configuration
  conf/l3fwd_base: l3fwd base class flows configuration
  conf/l3fwd_em: suite testing configuration
  conf/l3fwd_lpm_ipv4_rfc2544: suite testing configuration
  conf/l3fwd_lpm_ipv4: l3fwd_lpm_ipv4 testing configuration
  conf/l3fwd_lpm_ipv6: suite testing configuration
  tests/l3fwd: upload automation script
  tests/l3fwd_em: upload automation script
  tests/l3fwd_lpm_ipv4_rfc2544: upload automation script
  tests/l3fwd_lpm_ipv4: upload automation script
  tests/l3fwd_lpm_ipv6: upload automation script
  tests/l3fwd_base: upload automation script
  framework/test_case: add wirespeed columbiaville nic

 conf/l3fwd.cfg                            | 400 ++++++++++++
 conf/l3fwd_base.cfg                       | 103 +++
 conf/l3fwd_em.cfg                         | 147 +++++
 conf/l3fwd_lpm_ipv4.cfg                   | 105 +++
 conf/l3fwd_lpm_ipv4_rfc2544.cfg           | 105 +++
 conf/l3fwd_lpm_ipv6.cfg                   | 105 +++
 framework/test_case.py                    |   4 +
 tests/TestSuite_l3fwd.py                  | 370 ++---------
 tests/TestSuite_l3fwd_em.py               | 258 +-------
 tests/TestSuite_l3fwd_lpm_ipv4.py         |  86 +++
 tests/TestSuite_l3fwd_lpm_ipv4_rfc2544.py |  86 +++
 tests/TestSuite_l3fwd_lpm_ipv6.py         |  85 +++
 tests/l3fwd_base.py                       | 744 ++++++++++++++++++++++
 13 files changed, 2044 insertions(+), 554 deletions(-)
 create mode 100644 conf/l3fwd.cfg
 create mode 100644 conf/l3fwd_base.cfg
 create mode 100644 conf/l3fwd_em.cfg
 create mode 100644 conf/l3fwd_lpm_ipv4.cfg
 create mode 100644 conf/l3fwd_lpm_ipv4_rfc2544.cfg
 create mode 100644 conf/l3fwd_lpm_ipv6.cfg
 create mode 100644 tests/TestSuite_l3fwd_lpm_ipv4.py
 create mode 100644 tests/TestSuite_l3fwd_lpm_ipv4_rfc2544.py
 create mode 100644 tests/TestSuite_l3fwd_lpm_ipv6.py
 create mode 100644 tests/l3fwd_base.py

-- 
2.21.0


^ permalink raw reply	[flat|nested] 16+ messages in thread
* [dts] [PATCH V3 0/13] l3fwd: refactor script
@ 2020-01-16  5:28 yufengmx
  2020-01-16  5:28 ` [dts] [PATCH V3 1/13] tests/l3fwd_lpm_ipv6: upload automation script yufengmx
  0 siblings, 1 reply; 16+ messages in thread
From: yufengmx @ 2020-01-16  5:28 UTC (permalink / raw)
  To: dts, lijuan.tu; +Cc: yufengmx

refactor script. 
 

v3: 
 - support one port testing topo for ixia. 
 - add test case name in cfg file. 
 - rename module l3fwd.py to l3fwd_base.py. 
 - rename common_l3fwd.cfg to l3fwd_base.cfg. 
 - rename verify method names. 
 - rename test scripts suite name. 
 -  

v2: 
 - update script based on version 2 l3fwd test plan. 
 - separate script into five suites for different testing scenario. 
 - separate flows configuration in common_l3fwd.cfg. 
 - add test result data check process as new test plan requirement. 
 - save test results in json format file. 
 -  

v1: 
 - optimize packet creation time consumption. 
 - separate LPM/EM mode packet creation process. 
 - use new pktgen coding style to take the place of migration coding style. 
 - unify rfc2544/throughput result data display table methods. 
 - move test content configuration into cfg file, including flows/EM table/LPM table/framesizes/port configs. 

yufengmx (13):
  conf/l3fwd: l3fwd suite testing configuration
  conf/l3fwd_base: l3fwd base class flows configuration
  conf/l3fwd_em: suite testing configuration
  conf/l3fwd_lpm_ipv4_rfc2544: suite testing configuration
  conf/l3fwd_lpm_ipv4: l3fwd_lpm_ipv4 testing configuration
  conf/l3fwd_lpm_ipv6: suite testing configuration
  tests/l3fwd: upload automation script
  tests/l3fwd_em: upload automation script
  tests/l3fwd_lpm_ipv4_rfc2544: upload automation script
  tests/l3fwd_lpm_ipv4: upload automation script
  tests/l3fwd_lpm_ipv6: upload automation script
  tests/l3fwd_base: upload automation script
  framework/test_case: add wirespeed columbiaville nic

 conf/l3fwd.cfg                            | 400 ++++++++++++
 conf/l3fwd_base.cfg                       | 103 +++
 conf/l3fwd_em.cfg                         | 147 +++++
 conf/l3fwd_lpm_ipv4.cfg                   | 105 +++
 conf/l3fwd_lpm_ipv4_rfc2544.cfg           | 105 +++
 conf/l3fwd_lpm_ipv6.cfg                   | 105 +++
 framework/test_case.py                    |   4 +
 tests/TestSuite_l3fwd.py                  | 370 ++---------
 tests/TestSuite_l3fwd_em.py               | 258 +-------
 tests/TestSuite_l3fwd_lpm_ipv4.py         |  86 +++
 tests/TestSuite_l3fwd_lpm_ipv4_rfc2544.py |  86 +++
 tests/TestSuite_l3fwd_lpm_ipv6.py         |  85 +++
 tests/l3fwd_base.py                       | 744 ++++++++++++++++++++++
 13 files changed, 2044 insertions(+), 554 deletions(-)
 create mode 100644 conf/l3fwd.cfg
 create mode 100644 conf/l3fwd_base.cfg
 create mode 100644 conf/l3fwd_em.cfg
 create mode 100644 conf/l3fwd_lpm_ipv4.cfg
 create mode 100644 conf/l3fwd_lpm_ipv4_rfc2544.cfg
 create mode 100644 conf/l3fwd_lpm_ipv6.cfg
 create mode 100644 tests/TestSuite_l3fwd_lpm_ipv4.py
 create mode 100644 tests/TestSuite_l3fwd_lpm_ipv4_rfc2544.py
 create mode 100644 tests/TestSuite_l3fwd_lpm_ipv6.py
 create mode 100644 tests/l3fwd_base.py

-- 
2.21.0


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2020-01-16  8:43 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-16  7:27 [dts] [PATCH V3 0/13] l3fwd: refactor script yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 1/13] conf/l3fwd: l3fwd suite testing configuration yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 2/13] conf/l3fwd_base: l3fwd base class flows configuration yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 3/13] conf/l3fwd_em: suite testing configuration yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 4/13] conf/l3fwd_lpm_ipv4_rfc2544: " yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 5/13] conf/l3fwd_lpm_ipv4: l3fwd_lpm_ipv4 " yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 6/13] conf/l3fwd_lpm_ipv6: suite " yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 7/13] tests/l3fwd: upload automation script yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 8/13] tests/l3fwd_em: " yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 9/13] tests/l3fwd_lpm_ipv4_rfc2544: " yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 0/13] tests/l3fwd_lpm_ipv4: " yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 1/13] tests/l3fwd_lpm_ipv6: " yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 2/13] tests/l3fwd_base: " yufengmx
2020-01-16  7:27 ` [dts] [PATCH V3 3/13] framework/test_case: add wirespeed columbiaville nic yufengmx
2020-01-16  8:43 ` [dts] [PATCH V3 0/13] l3fwd: refactor script Tu, Lijuan
  -- strict thread matches above, loose matches on Subject: below --
2020-01-16  5:28 yufengmx
2020-01-16  5:28 ` [dts] [PATCH V3 1/13] tests/l3fwd_lpm_ipv6: upload automation script yufengmx

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).