Bug 64696 - Freestyle format for names in (Default)SamplerCreater
Summary: Freestyle format for names in (Default)SamplerCreater
Status: RESOLVED FIXED
Alias: None
Product: JMeter - Now in Github
Classification: Unclassified
Component: Main (show other bugs)
Version: Nightly (Please specify date)
Hardware: All All
: P2 enhancement (vote)
Target Milestone: JMETER_5.4
Assignee: JMeter issues mailing list
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-08-30 07:56 UTC by Felix Schumacher
Modified: 2020-09-01 13:02 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Felix Schumacher 2020-08-30 07:56:57 UTC
The generated names for Samplers from the https recorder should be chosen more freely. Currently the only formats available are prefix or transaction name which can be combined with a system property to number them.

PR 571 (https://github.com/apache/jmeter/pull/571) describes the wished features.
To be even more free in the structure of the generated names, the feature has been implemented in PR 595.
Comment 1 Felix Schumacher 2020-08-30 08:04:37 UTC
commit b69ca04a1be2d20d21d83278dc951ab52c9751d3
Author: Felix Schumacher <felix.schumacher@internetallee.de>
AuthorDate: Sun May 31 16:03:41 2020 +0200

    Freestyle format for names in (Default)SamplerCreater
    
    Names of newly created Samplers by the DefaultSamplerCreator can now be
    styled with a freestyle format, that understands the controls for
    MessageFormat. Apart from the placeholders {0}, {1} and {2}, that are
    hard to guess, for which part they are used, more memorizable placeholders
     #{name}, #{path} and #{counter} can be used.
    
    The counter for the generated samplers can be set to a user specified number.
    
    Based on a patch by Vincent Daburon
    
    Bugzilla Id: 64696
    Closes #571
    Closes #595
---
 .../apache/jmeter/resources/messages.properties    |   6 +
 .../apache/jmeter/resources/messages_fr.properties |   6 +
 .../http/proxy/AbstractSamplerCreator.java         |   5 +
 .../protocol/http/proxy/DefaultSamplerCreator.java |  64 +++++---
 .../jmeter/protocol/http/proxy/HttpRequestHdr.java |  12 +-
 .../apache/jmeter/protocol/http/proxy/Proxy.java   |  12 +-
 .../jmeter/protocol/http/proxy/ProxyControl.java   |  13 +-
 .../jmeter/protocol/http/proxy/SamplerCreator.java |   8 +
 .../protocol/http/proxy/SamplerCreatorFactory.java |  13 ++
 .../protocol/http/proxy/gui/ProxyControlGui.java   | 161 ++++++++++-----------
 .../protocol/http/proxy/gui/RecorderDialog.java    |  62 ++++----
 xdocs/changes.xml                                  |   1 +
 xdocs/images/screenshots/proxy_control.png         | Bin 9505 -> 20741 bytes
 xdocs/usermanual/component_reference.xml           |   5 +-
 14 files changed, 227 insertions(+), 141 deletions(-)
Comment 2 Felix Schumacher 2020-08-31 16:34:16 UTC
commit af8c10529cd086f013e2a2081aae2ca85888c739
Author: Felix Schumacher <felix.schumacher@internetallee.de>
AuthorDate: Mon Aug 31 18:31:42 2020 +0200

    Freestyle format for names in (Default)SamplerCreator
    
    Use a default value for the format string, that can be controlled by
    a JMeter property.
    
    Bugzilla Id: 64696
    Relates to #595
---
 bin/jmeter.properties                              |  3 +++
 .../jmeter/protocol/http/proxy/ProxyControl.java   | 23 +++++++++++++---------
 .../protocol/http/proxy/gui/ProxyControlGui.java   |  2 ++
 xdocs/usermanual/properties_reference.xml          |  5 +++++
 4 files changed, 24 insertions(+), 9 deletions(-)
Comment 3 Felix Schumacher 2020-08-31 20:16:24 UTC
commit d59da3805edd0b2fc901e404bddf9de6d6051bc2
AuthorDate: Mon Aug 31 21:11:50 2020 +0200

    Freestyle format for names in (Default)SamplerCreator
    
    Don't save the default value for the format string property
    
    Bugzilla Id: 64696
    Relates to #595
---
 .../org/apache/jmeter/protocol/http/proxy/ProxyControl.java  | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)
Comment 4 Felix Schumacher 2020-09-01 13:02:07 UTC
commit c280cf351938899cbe996ef6563dbeca0940f90f
Author: Felix Schumacher <felix.schumacher@internetallee.de>
AuthorDate: Tue Sep 1 14:56:47 2020 +0200

    Freestyle format for names in (Default)SamplerCreator
    
    Initialize format string correctly when script recorder is
    created by hand instead of with a template.
    
    Bugzilla Id: 64696
    Relates to #595
---
 .../org/apache/jmeter/protocol/http/proxy/gui/ProxyControlGui.java  | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
Comment 5 The ASF infrastructure team 2022-09-24 20:38:20 UTC
This issue has been migrated to GitHub: https://github.com/apache/jmeter/issues/5395