module JmeterPerf class DSL # DSL method synonymous with the JMeter Element JMSPublisher # @param params [Hash] Parameters for the JMSPublisher element (default: `{}`). # @yield block to attach to the JMSPublisher element # @return [JmeterPerf::JMSPublisher], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#jmspublisher def jms_publisher(params = {}, &) node = JMSPublisher.new(params) attach_node(node, &) end class JMSPublisher attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "JMSPublisher" : (params[:name] || "JMSPublisher") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS <PublisherSampler guiclass="JMSPublisherGui" testclass="PublisherSampler" testname="#{testname}" enabled="true"> <stringProp name="jms.jndi_properties">false</stringProp> <stringProp name="jms.initial_context_factory"/> <stringProp name="jms.provider_url"/> <stringProp name="jms.connection_factory"/> <stringProp name="jms.topic"/> <stringProp name="jms.security_principle"/> <stringProp name="jms.security_credentials"/> <stringProp name="jms.text_message"/> <stringProp name="jms.input_file"/> <stringProp name="jms.random_path"/> <stringProp name="jms.config_choice">jms_use_text</stringProp> <stringProp name="jms.config_msg_type">jms_text_message</stringProp> <stringProp name="jms.iterations">1</stringProp> <boolProp name="jms.authenticate">false</boolProp> <elementProp name="arguments" elementType="JMSProperties"> <collectionProp name="JMSProperties.properties"/> </elementProp> <stringProp name="jms.expiration"/> <stringProp name="jms.priority"/> </PublisherSampler> EOS )) update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end end