<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    On 8/29/2012 9:34 AM, Alexander O'Donovan-Jones wrote:<br>
    <blockquote
cite="mid:98D0F3AAB54DF646B187C3D80D0CCFE406ED4EA1@RKV-IT-EXCH103.ccp.ad.local"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      <meta name="Generator" content="Microsoft Word 14 (filtered
        medium)">
      <style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"Segoe UI";
        panose-1:2 11 5 2 4 2 4 2 2 3;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal;
        font-family:"Segoe UI","sans-serif";
        color:windowtext;}
span.EmailStyle18
        {mso-style-type:personal;
        font-family:"Segoe UI","sans-serif";
        color:#1F497D;}
span.EmailStyle19
        {mso-style-type:personal-reply;
        font-family:"Segoe UI","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
      <div class="WordSection1">
        <p class="MsoNormal"><span
            style="font-size:10.0pt;font-family:&quot;Segoe
            UI&quot;,&quot;sans-serif&quot;">Does anyone know of a way
            to mock out the .decode(&#8230;) method on a string?<o:p></o:p></span></p>
        <p class="MsoNormal">I have a piece of code which essentially
          does this:<o:p></o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">def
            CoerceToUnicode(inputString, encoding='cp1252'):<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp; try:<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ret =
            inputString.decode(encoding)<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp; except (UnicodeDecodeError,
            UnicodeEncodeError):<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ret = inputString<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp; return ret<o:p></o:p></span></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal">However if I try to mock out the str.decode
          method I get an exception thrown:<o:p></o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">def
            test_CoerceToUnicode_DecodeException(self):<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp; # we mock out the decoding
            method to throw an exception and check the return<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp; with
            mock.patch('__builtin__.str.decode',
            side_effect=UnicodeDecodeError):<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # simple test cases of
            ascii strings in non-unicode and unicode formats<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            self.assertEqual(CoerceToUnicode('asdf'), 'asdf')<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            self.assertEqual(CoerceToUnicode(u'asdf'), u'asdf')<o:p></o:p></span></p>
        <p class="MsoNormal"><span style="font-family:Consolas"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal"><span
            style="font-size:10.0pt;font-family:&quot;Segoe
            UI&quot;,&quot;sans-serif&quot;">raises:<o:p></o:p></span></p>
        <p class="MsoNormal"><span
            style="font-size:10.0pt;font-family:&quot;Segoe
            UI&quot;,&quot;sans-serif&quot;"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">Traceback (most recent call
            last):<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp; File
            "c:\depot\eveLauncher\libs\test\test_localization.py", line
            220, in test_CoerceToUnicode_DecodeException<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp; with
            mock.patch('__builtin__.str.decode',
            side_effect=UnicodeDecodeError):<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp; File
            "build\bdist.win32\egg\mock.py", line 1348, in __enter__<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">&nbsp;&nbsp;&nbsp; setattr(self.target,
            self.attribute, new_attr)<o:p></o:p></span></p>
        <p class="MsoNormal" style="margin-left:.5in"><span
            style="font-family:Consolas">TypeError: can't set attributes
            of built-in/extension type 'str'<o:p></o:p></span></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal">Does anyone have experience with mocking
          out things like this?<o:p></o:p></p>
        <p class="MsoNormal"><span
            style="font-size:10.0pt;font-family:&quot;Segoe
            UI&quot;,&quot;sans-serif&quot;;color:#1F497D">Thanks!<o:p></o:p></span></p>
      </div>
    </blockquote>
    <br>
    This doesn't seem like a good use of mocking.&nbsp; Why not just pass in
    an inputString and encoding that together raise the error?<br>
    <br>
    --Ned.<br>
    <br>
    <blockquote
cite="mid:98D0F3AAB54DF646B187C3D80D0CCFE406ED4EA1@RKV-IT-EXCH103.ccp.ad.local"
      type="cite">
      <div class="WordSection1">
        <p class="MsoNormal"><span
            style="font-size:10.0pt;font-family:&quot;Segoe
            UI&quot;,&quot;sans-serif&quot;;color:#1F497D"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal"><span
            style="font-size:10.0pt;font-family:&quot;Segoe
            UI&quot;,&quot;sans-serif&quot;;color:#1F497D">Alex
            O&#8217;Donovan-Jones<o:p></o:p></span></p>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
testing-in-python mailing list
<a class="moz-txt-link-abbreviated" href="mailto:testing-in-python@lists.idyll.org">testing-in-python@lists.idyll.org</a>
<a class="moz-txt-link-freetext" href="http://lists.idyll.org/listinfo/testing-in-python">http://lists.idyll.org/listinfo/testing-in-python</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>