Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!news.mixmin.net!eweka.nl!hq-usenetpeers.eweka.nl!xlned.com!feeder1.xlned.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'exception': 0.03; 'test,': 0.05; 'calls.': 0.07; 'rewrite': 0.07; 'subject:test': 0.07; '0),': 0.09; '[0,': 0.09; 'called.': 0.09; 'sep': 0.09; 'cc:addr :python-list': 0.10; '(ie,': 0.16; '-1))': 0.16; '1),': 0.16; '10:59': 0.16; 'iterator': 0.16; 'keyerror': 0.16; 'subject:strategy': 0.16; 'wrote:': 0.17; 'script.': 0.17; 'creates': 0.18; 'are.': 0.22; "i'd": 0.22; 'cc:2**0': 0.23; "i've": 0.23; 'seems': 0.23; 'cc:no real name:2**0': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'values': 0.26; 'accuracy': 0.27; 'thoughts': 0.27; 'message- id:@mail.gmail.com': 0.27; 'developing': 0.28; 'rest': 0.28; 'received:209.85.212': 0.28; "people's": 0.29; "i'm": 0.29; "skip:' 10": 0.30; 'fri,': 0.30; 'function': 0.30; 'could': 0.32; 'instances': 0.33; 'version': 0.34; 'received:google.com': 0.34; 'pm,': 0.35; 'received:209.85': 0.35; 'something': 0.35; 'created': 0.36; 'but': 0.36; 'test': 0.36; 'should': 0.36; 'received:209': 0.37; 'subject:: ': 0.38; 'hello,': 0.39; 'header:Received:5': 0.40; 'think': 0.40; 'your': 0.60; 'first': 0.61; 'between': 0.63; 'more': 0.63; 'show': 0.63; 'within': 0.64; 'strategy': 0.64; 'below:': 0.71; 'introduce': 0.80 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=89vfM70zc+1AgUbbN0XFlrQr5HwvxeuLsF7Itd7KAc0=; b=bi7Hj2eKw0913B1/VzxGE/VbdXL1QEI6Ba+yjfFnoHS8AWwCvRMACbXBb2n7MB8L9v jbaTyIHv5sWvM1/O9Z76sLndaKPrebeBTpVZ4JW+bFvLYT71S1jpseGy/qwCLZx5ta89 QdxrcY3zpnTJ6s89elDJNRuz/1oKGyFcvYb3+4kMXBZN+dVA3QS6ucD/QCAjGqI2n8vX OpRD3+nsyof5j7cL6Np0temtbUbT7m0sdjUflvWFK7IFnKjxcD/DSPT/oBxiM7lJYDoV aRkkv9SvBmf++qj2hlIeo1rwcHO7II0KB+UiYqKVidZA5lanO3eG9HxgReAdVdbRw6be 3gUw== MIME-Version: 1.0 In-Reply-To: References: Date: Fri, 14 Sep 2012 23:26:04 -0400 Subject: Re: unit test strategy From: Dwight Hutto To: Aaron Brady Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 48 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1347679572 news.xs4all.nl 6980 [2001:888:2000:d::a6]:36383 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:29200 On Fri, Sep 14, 2012 at 10:59 PM, Aaron Brady wrote: > Hello, > > I've developing a test script. There's a lot of repetition. I want to i= ntroduce a strategy for approaching it, but I don't want the program to be = discredited because of the test script. Therefore, I'd like to know what p= eople's reactions to and thoughts about it are. > > The first strategy I used created an iterator and advanced it between eac= h step: That isn't a refined iterator below: > self.op_chain(range(5), ('add', 5)) > self.op_chain(range(5), ('add', -2), ('add', -1)) > self.op_chain(range(5), ('discard', -1), ('add', 5)) > self.op_chain_ok(range(5), ('update', [0, 1])) > Etc. > > I'm considering something more complicated. 'iN' creates iterator N, 'nN= ' advances iterator N, an exception calls 'assertRaises', and the rest are = function calls. > dsi=3D dict.__setitem__ > ddi=3D dict.__delitem__ > dsd=3D dict.setdefault > KE=3D KeyError > IE=3D IterationError > self.chain(range(10), 'i0', (dsi, 0, 1), 'n0', (dsi, 10, 1), (IE,= 'n0')) > self.chain(range(10), 'i0', 'n0', (dsd, 0, 0), 'n0', (dsd, 10, 1)= , (IE, 'n0')) > self.chain(range(10), 'i0', (KE, ddi, 10), 'n0', (ddi, 9), (IE, '= n0')) > > Do you think the 2nd version is legible? Could it interfere with the acc= uracy of the test? Show the test, which should show instances of wehat you want called. I could rewrite the above, but it seems you're moe in need of refining your iterations, and the values given within them. --=20 Best Regards, David Hutto CEO: http://www.hitwebdevelopment.com