Mark:

I think Maru is talking about the distinction between record/replay mocking and 
action/assertion mocking.

In record/replay mocking (e.g., mox) you define the expected behavior *before* 
executing the code under test (i.e., "I expect A, B, and C to happen, now go 
execute the code under test"), and in action/assertion mocking (e.g. mock), you 
check assertions *after* executing the code under test (i.e., "Go execute the 
code under test. Now check: did A, B, C, happen")? 

Take care,

Lorin
--
Lorin Hochstein
Lead Architect - Cloud Services
Nimbis Services, Inc.
www.nimbisservices.com





On Mar 1, 2012, at 10:03 PM, Mark Gius wrote:

> Apologies to Maru for the double-email.  Left out the list by mistake.
> 
> When you say "non-replay mocking," are you talking about ensuring that a 
> particular function is not called, or replacing a function/whatever with a 
> lambda that doesn't care if it gets called or how often it gets called but 
> still shims out say..a network request or whatever.  
> 
> The first is completely supported by mox and the second is just shimming in a 
> lambda with some extra bookkeeping (which python 2.7/unittest2 makes 
> significantly easier with the addCleanup function).
> 
> Mark
> 
> On Thu, Mar 1, 2012 at 5:12 PM, Maru Newby <mne...@internap.com> wrote:
> Is there any interest in adding unittest2 to the test dependencies for 
> openstack projects?  I have found its enhanced assertions and 'with 
> self.assertRaises' very useful in writing tests.  I see there have been past 
> bugs that mentioned unittest2, and am wondering if the reasons for not 
> adopting it still stand.
> 
> Separately, is the use of mox open to discussion?  mock was recently added as 
> a dependency to quantum to perform library patching, which isn't supported by 
> mox as far as I know.  The ability to do non-replay mocking is another useful 
> feature of mock.  I'm not suggesting that mox be replaced, but am wondering 
> if mock could be an additional dependency and used when the functionality 
> provided by mox falls short.
> 
> Thanks,
> 
> 
> Maru
> _______________________________________________
> Mailing list: https://launchpad.net/~openstack
> Post to     : openstack@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~openstack
> More help   : https://help.launchpad.net/ListHelp
> 
> _______________________________________________
> Mailing list: https://launchpad.net/~openstack
> Post to     : openstack@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~openstack
> More help   : https://help.launchpad.net/ListHelp

Attachment: smime.p7s
Description: S/MIME cryptographic signature

_______________________________________________
Mailing list: https://launchpad.net/~openstack
Post to     : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp

Reply via email to