set parametermap in munit












0















am facing difficult to set ParameterMap in munit. when i set http.uri.params in munit and its working fine normally. but unable to access its values though ParameterMap. please refer the following the MUnit code(which is working fine when i access #[message.inboundProperties.'http.uri.params'.serviceName] ) and Java Code



<munit:inbound-property key="http.uri.params" value="#[['serviceName': 'services','loanNumber':'1111']]"/>


this is how i am accessing http.uri.params In My code



ParameterMap pMap = eventContext.getMessage().getInboundProperty("http.uri.params");


so when i run munit ,above line throws exception (java.util.HashMap cannot be cast to org.mule.module.http.internal.ParameterMap)



is there any way set parametermap in munit without changing my code?










share|improve this question





























    0















    am facing difficult to set ParameterMap in munit. when i set http.uri.params in munit and its working fine normally. but unable to access its values though ParameterMap. please refer the following the MUnit code(which is working fine when i access #[message.inboundProperties.'http.uri.params'.serviceName] ) and Java Code



    <munit:inbound-property key="http.uri.params" value="#[['serviceName': 'services','loanNumber':'1111']]"/>


    this is how i am accessing http.uri.params In My code



    ParameterMap pMap = eventContext.getMessage().getInboundProperty("http.uri.params");


    so when i run munit ,above line throws exception (java.util.HashMap cannot be cast to org.mule.module.http.internal.ParameterMap)



    is there any way set parametermap in munit without changing my code?










    share|improve this question



























      0












      0








      0








      am facing difficult to set ParameterMap in munit. when i set http.uri.params in munit and its working fine normally. but unable to access its values though ParameterMap. please refer the following the MUnit code(which is working fine when i access #[message.inboundProperties.'http.uri.params'.serviceName] ) and Java Code



      <munit:inbound-property key="http.uri.params" value="#[['serviceName': 'services','loanNumber':'1111']]"/>


      this is how i am accessing http.uri.params In My code



      ParameterMap pMap = eventContext.getMessage().getInboundProperty("http.uri.params");


      so when i run munit ,above line throws exception (java.util.HashMap cannot be cast to org.mule.module.http.internal.ParameterMap)



      is there any way set parametermap in munit without changing my code?










      share|improve this question
















      am facing difficult to set ParameterMap in munit. when i set http.uri.params in munit and its working fine normally. but unable to access its values though ParameterMap. please refer the following the MUnit code(which is working fine when i access #[message.inboundProperties.'http.uri.params'.serviceName] ) and Java Code



      <munit:inbound-property key="http.uri.params" value="#[['serviceName': 'services','loanNumber':'1111']]"/>


      this is how i am accessing http.uri.params In My code



      ParameterMap pMap = eventContext.getMessage().getInboundProperty("http.uri.params");


      so when i run munit ,above line throws exception (java.util.HashMap cannot be cast to org.mule.module.http.internal.ParameterMap)



      is there any way set parametermap in munit without changing my code?







      mule munit






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 27 '18 at 10:25







      Karthick Ricky

















      asked Nov 27 '18 at 10:19









      Karthick RickyKarthick Ricky

      16




      16
























          1 Answer
          1






          active

          oldest

          votes


















          0














          If you really cannot change your code to not depend on ParameterMap. Then you could try creating the ParameterMap instance in your Munit code. It has an overlaoded constructor that allows passing a map to it:



          <munit:inbound-property key="http.uri.params" value="#[new org.mule.module.http.internal.ParameterMap((['serviceName': 'services','loanNumber':'1111']))]"/>


          Java doc: https://www.mulesoft.org/docs/site/3.7.0/apidocs/org/mule/module/http/internal/ParameterMap.html






          share|improve this answer
























          • thanks bro but when i try that, it throws "Execution of the expression "message.inboundProperties.'http.uri.params'.serviceName" failed." is there any other way to do that?

            – Karthick Ricky
            Nov 27 '18 at 12:25













          • I thought that may happen. The best way is to refactor your class not to rely on mule internals.

            – Ryan Carter
            Nov 28 '18 at 7:31











          • @ rayan carter. i found the solution for this problem. anyway thanks for you help. right now i am facing new problem. thats is [org.mule.munit.remote.CoverageManager]Coverage report calculation failed. do you knw how to solve this problem?

            – Karthick Ricky
            Nov 28 '18 at 10:17













          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53497432%2fset-parametermap-in-munit%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          If you really cannot change your code to not depend on ParameterMap. Then you could try creating the ParameterMap instance in your Munit code. It has an overlaoded constructor that allows passing a map to it:



          <munit:inbound-property key="http.uri.params" value="#[new org.mule.module.http.internal.ParameterMap((['serviceName': 'services','loanNumber':'1111']))]"/>


          Java doc: https://www.mulesoft.org/docs/site/3.7.0/apidocs/org/mule/module/http/internal/ParameterMap.html






          share|improve this answer
























          • thanks bro but when i try that, it throws "Execution of the expression "message.inboundProperties.'http.uri.params'.serviceName" failed." is there any other way to do that?

            – Karthick Ricky
            Nov 27 '18 at 12:25













          • I thought that may happen. The best way is to refactor your class not to rely on mule internals.

            – Ryan Carter
            Nov 28 '18 at 7:31











          • @ rayan carter. i found the solution for this problem. anyway thanks for you help. right now i am facing new problem. thats is [org.mule.munit.remote.CoverageManager]Coverage report calculation failed. do you knw how to solve this problem?

            – Karthick Ricky
            Nov 28 '18 at 10:17


















          0














          If you really cannot change your code to not depend on ParameterMap. Then you could try creating the ParameterMap instance in your Munit code. It has an overlaoded constructor that allows passing a map to it:



          <munit:inbound-property key="http.uri.params" value="#[new org.mule.module.http.internal.ParameterMap((['serviceName': 'services','loanNumber':'1111']))]"/>


          Java doc: https://www.mulesoft.org/docs/site/3.7.0/apidocs/org/mule/module/http/internal/ParameterMap.html






          share|improve this answer
























          • thanks bro but when i try that, it throws "Execution of the expression "message.inboundProperties.'http.uri.params'.serviceName" failed." is there any other way to do that?

            – Karthick Ricky
            Nov 27 '18 at 12:25













          • I thought that may happen. The best way is to refactor your class not to rely on mule internals.

            – Ryan Carter
            Nov 28 '18 at 7:31











          • @ rayan carter. i found the solution for this problem. anyway thanks for you help. right now i am facing new problem. thats is [org.mule.munit.remote.CoverageManager]Coverage report calculation failed. do you knw how to solve this problem?

            – Karthick Ricky
            Nov 28 '18 at 10:17
















          0












          0








          0







          If you really cannot change your code to not depend on ParameterMap. Then you could try creating the ParameterMap instance in your Munit code. It has an overlaoded constructor that allows passing a map to it:



          <munit:inbound-property key="http.uri.params" value="#[new org.mule.module.http.internal.ParameterMap((['serviceName': 'services','loanNumber':'1111']))]"/>


          Java doc: https://www.mulesoft.org/docs/site/3.7.0/apidocs/org/mule/module/http/internal/ParameterMap.html






          share|improve this answer













          If you really cannot change your code to not depend on ParameterMap. Then you could try creating the ParameterMap instance in your Munit code. It has an overlaoded constructor that allows passing a map to it:



          <munit:inbound-property key="http.uri.params" value="#[new org.mule.module.http.internal.ParameterMap((['serviceName': 'services','loanNumber':'1111']))]"/>


          Java doc: https://www.mulesoft.org/docs/site/3.7.0/apidocs/org/mule/module/http/internal/ParameterMap.html







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 27 '18 at 10:39









          Ryan CarterRyan Carter

          8,96521521




          8,96521521













          • thanks bro but when i try that, it throws "Execution of the expression "message.inboundProperties.'http.uri.params'.serviceName" failed." is there any other way to do that?

            – Karthick Ricky
            Nov 27 '18 at 12:25













          • I thought that may happen. The best way is to refactor your class not to rely on mule internals.

            – Ryan Carter
            Nov 28 '18 at 7:31











          • @ rayan carter. i found the solution for this problem. anyway thanks for you help. right now i am facing new problem. thats is [org.mule.munit.remote.CoverageManager]Coverage report calculation failed. do you knw how to solve this problem?

            – Karthick Ricky
            Nov 28 '18 at 10:17





















          • thanks bro but when i try that, it throws "Execution of the expression "message.inboundProperties.'http.uri.params'.serviceName" failed." is there any other way to do that?

            – Karthick Ricky
            Nov 27 '18 at 12:25













          • I thought that may happen. The best way is to refactor your class not to rely on mule internals.

            – Ryan Carter
            Nov 28 '18 at 7:31











          • @ rayan carter. i found the solution for this problem. anyway thanks for you help. right now i am facing new problem. thats is [org.mule.munit.remote.CoverageManager]Coverage report calculation failed. do you knw how to solve this problem?

            – Karthick Ricky
            Nov 28 '18 at 10:17



















          thanks bro but when i try that, it throws "Execution of the expression "message.inboundProperties.'http.uri.params'.serviceName" failed." is there any other way to do that?

          – Karthick Ricky
          Nov 27 '18 at 12:25







          thanks bro but when i try that, it throws "Execution of the expression "message.inboundProperties.'http.uri.params'.serviceName" failed." is there any other way to do that?

          – Karthick Ricky
          Nov 27 '18 at 12:25















          I thought that may happen. The best way is to refactor your class not to rely on mule internals.

          – Ryan Carter
          Nov 28 '18 at 7:31





          I thought that may happen. The best way is to refactor your class not to rely on mule internals.

          – Ryan Carter
          Nov 28 '18 at 7:31













          @ rayan carter. i found the solution for this problem. anyway thanks for you help. right now i am facing new problem. thats is [org.mule.munit.remote.CoverageManager]Coverage report calculation failed. do you knw how to solve this problem?

          – Karthick Ricky
          Nov 28 '18 at 10:17







          @ rayan carter. i found the solution for this problem. anyway thanks for you help. right now i am facing new problem. thats is [org.mule.munit.remote.CoverageManager]Coverage report calculation failed. do you knw how to solve this problem?

          – Karthick Ricky
          Nov 28 '18 at 10:17






















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53497432%2fset-parametermap-in-munit%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Contact image not getting when fetch all contact list from iPhone by CNContact

          count number of partitions of a set with n elements into k subsets

          A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks