[issue10573] Consistency in unittest assert methods: order of actual, expected

2011-01-28 Thread Michael Foord

Michael Foord mich...@voidspace.org.uk added the comment:

Patch to docs and minor change to assertCountEqual to not use actual / expected 
internally.

--
Added file: http://bugs.python.org/file20580/expected-actual.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2011-01-28 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

Code patch looks good to me.  Unittest tests pass.

--
nosy: +r.david.murray

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2011-01-28 Thread Michael Foord

Changes by Michael Foord mich...@voidspace.org.uk:


--
resolution:  - fixed
stage: commit review - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2011-01-23 Thread Michael Foord

Michael Foord mich...@voidspace.org.uk added the comment:

There was a BDFL ruling on python-dev mailing list that assert argument names 
should be (first, second). 

See:

http://mail.python.org/pipermail/python-dev/2010-December/106954.html

I'm basically reverting the patch to go back to (first, second) in the docs and 
in assertCountEqual.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2011-01-23 Thread Michael Foord

Michael Foord mich...@voidspace.org.uk added the comment:

Note that I looked at making the sequence comparison code symmetric - but it 
generates nice diffs for even nested containers by using prettyprint and 
difflib. Switching to a symmetric output (in first, not in second etc) would 
be very difficult without losing functionality.

Generating these diffs can be very slow though, so it may be an issue that 
needs revisiting.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2011-01-20 Thread Ezio Melotti

Ezio Melotti ezio.melo...@gmail.com added the comment:

Not all the arg names in the doc match with the actual name of the args 
(probably because the methods are expected to be used with positional args 
only), that's why the changes affects only the doc.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2010-12-26 Thread Ron Adam

Ron Adam ron_a...@users.sourceforge.net added the comment:

The issue10573.diff file with the time stamp 20:03 has a lot of document 
changes that don't have corresponding code changes?

--
nosy: +ron_adam

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2010-12-18 Thread Ezio Melotti

Ezio Melotti ezio.melo...@gmail.com added the comment:

The attached patch changes the following things

- assertDictContainsSubset(expected, actual, msg=None)
+ assertDictContainsSubset(subset, dictionary, msg=None)
This doesn't change the order of the args, even though the name of the method 
might suggest the opposite.  In the output message I left expected and actual 
because imho it makes sense there (e.g. key, expected: 3, actual: 5).  This 
could be changed to expected/got or something else.


- assertCountEqual(expected, actual, msg=None)
+ assertCountEqual(actual, expected, msg=None)
This changes the order of the args and as a consequence the list of 'missing' 
and 'unexpected' elements will be swapped.  The tests don't check the error 
message so they all pass without modification.  It should be noted that this 
method didn't exist in 3.1. However 2.7 has the equivalent assertItemsEqual 
with the args swapped, so maybe it should be documented somewhere that while 
porting from 2.7 to 3.2 the order of the args should be changed accordingly.


- assertDictEqual(expected, actual, msg=None)
+ assertDictEqual(dict1, dict2, msg=None)
This is just a doc change, the actual method already uses d1 and d2 as args and 
their order doesn't seem to matter.

The other methods (mainly the assert*Equal) are just documented with generic 
first/second or foo1/foo2.  The doc for these methods could be changed to use 
actual/expected as a preferred order.

--
keywords: +patch
Added file: http://bugs.python.org/file20103/issue10573.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2010-12-18 Thread Georg Brandl

Georg Brandl ge...@python.org added the comment:

If Michael and Raymond reach a consensus, this can go in before beta2.

--
nosy: +georg.brandl

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2010-12-18 Thread Raymond Hettinger

Raymond Hettinger rhettin...@users.sourceforge.net added the comment:

These three changes look fine.   

The argument order for assertDictContainsSubset is problematic (doesn't match 
its own name and doesn't match the order for other __contains__ methods 
elsewhere in Python), but it's too late to change it now :-(

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2010-12-18 Thread Michael Foord

Michael Foord mich...@voidspace.org.uk added the comment:

The argument order doesn't match the name (which isn't a huge deal I don't 
think) - but subset in dict does match the element in container order of 
assertIn.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2010-12-18 Thread Ezio Melotti

Ezio Melotti ezio.melo...@gmail.com added the comment:

Fixed in r87389. This can be backported to 3.1/2.7 where applicable.

--
stage: needs patch - commit review
Added file: http://bugs.python.org/file20105/issue10573.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2010-12-16 Thread Raymond Hettinger

Raymond Hettinger rhettin...@users.sourceforge.net added the comment:

This should get fixed-up before the second beta.

Try to confirm the most common argument ordering using Google's code search to 
ascertain actual practice in real code.

FWIW, I also tend to use actual/expected and find the reverse to be a form 
Yoda-speak, assert 5 == x, perhaps misread the prophecy was, etc.

--
nosy: +rhettinger
priority: normal - high

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2010-12-15 Thread Ezio Melotti

Changes by Ezio Melotti ezio.melo...@gmail.com:


--
assignee: michael.foord - ezio.melotti
nosy: +ezio.melotti
stage:  - needs patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10573] Consistency in unittest assert methods: order of actual, expected

2010-11-28 Thread Michael Foord

New submission from Michael Foord mich...@voidspace.org.uk:

The unittest documentation, argument names and implementation need to be 
consistent about the order of (actual, expected) for TestCase.assert methods 
that take two arguments. 

This is particularly relevant for the methods that produce 'diffed' output on 
failure - as the order determines whether mismatched items are missing from the 
expected or additional to the expected.

The documentation, signatures and implementation of all two argument asserts 
need to be checked to ensure they are the same and implemented correctly.

Personally I prefer (actual, expected).

--
assignee: michael.foord
components: Documentation, Library (Lib)
messages: 122752
nosy: michael.foord
priority: normal
severity: normal
status: open
title: Consistency in unittest assert methods: order of actual, expected
versions: Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10573
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com