Lines Matching full:tc

328     with TestCase('send bad packet', tstate) as tc:
329 tc.detail = 'connecting to {0}:{1}'.format(server, port)
333 tc.fail('cannot connect at all (server down?)')
334 tc.auto_disconnect(conn)
335 tc.detail = None
340 tc.succ()
347 with TestCase('send bad Tversion', tstate) as tc:
351 tc.fail('can no longer connect, did bad pkt crash server?')
352 tc.auto_disconnect(clnt)
354 tc.detail = 'connecting'
359 tc.succ(err.args[0])
360 tc.fail('server accepted a bad Tversion')
364 with TestCase('send illegal NUL in Tversion', tstate) as tc:
366 tc.auto_disconnect(clnt)
371 tc.detail = 'connecting'
375 tc.succ(err.args[0])
376 tc.fail('server accepted NUL in Tversion')
379 with TestCase('connect normally', tstate) as tc:
380 tc.detail = 'connecting'
387 tc.succ(err.args[0])
388 tc.fail(err.args[0])
389 tc.succ()
392 with TestCase('attach with bad afid', tstate) as tc:
404 tc.succ(err.args[0])
405 tc.dcc()
406 tc.fail('bad attach afid not rejected')
436 with TestCase('attach normally', tstate) as tc:
437 tc.ccs()
438 tc.succ()
446 with TestCase('empty string in Twalk request', tstate) as tc:
447 clnt = tc.ccs()
451 tc.succ(err.args[0])
453 tc.succ('note: empty Twalk component name not rejected')
456 with TestCase('embedded / in lookup component name', tstate) as tc:
457 clnt = tc.ccs()
460 tc.autoclunk(fid)
462 tc.succ(err.args[0])
463 tc.fail('/ in lookup component name not rejected')
471 with TestCase('clean up tree (readdir+remove)', tstate) as tc:
472 clnt = tc.ccs()
475 tc.trace("what's there initially: {0!r}".format(fset))
479 tc.trace('failed to read or clean up tree', level=logging.ERROR)
480 tc.trace('this might be a permissions error', level=logging.ERROR)
482 tc.fail(str(err))
485 tc.trace("what's left after removing everything: {0!r}".format(fset))
488 tc.trace('note: could be a permissions error', level=logging.ERROR)
489 tc.fail('/ not empty after removing all: {0!r}'.format(fset))
490 tc.succ()
498 with TestCase('mkdir', tstate) as tc:
499 clnt = tc.ccs()
501 tc.skip('cannot test dot-L mkdir on {0}'.format(clnt.proto))
504 tc.autoclunk(fid)
506 tc.fail('found existing /dir after cleaning tree')
518 tc.fail('creating /dir: result is not a directory')
519 tc.trace('now attempting to create /dir/sub the wrong way')
528 tc.trace("creating dir/sub (with embedded '/') should have "
533 tc.trace('(found our dir/sub detritus)')
537 tc.trace('(successfully removed our dir/sub detritus)')
539 tc.fail('created dir/sub as single directory with embedded slash')
542 tc.trace('invalid path dir/sub failed with: %s', str(err))
543 tc.succ('embedded slash in mkdir correctly refused')
547 with TestCase('getattr/setattr', tstate) as tc:
552 clnt = tc.ccs()
554 tc.skip('%s does not support Tgetattr', clnt)
557 tc.autoclunk(fid)
560 tc.trace('expected to write 6 bytes, actually wrote %d', written,
563 #tc.trace('getattr: after write, before setattr: got %s', attrs)
565 tc.fail('getattr: expected size=%d, got size=%d',
571 #tc.trace('getattr: after setattr: got %s', attrs)
573 tc.fail('setattr: expected to get back mtime.sec={0}, size=0; '
578 tc.trace('setattr: expected to get back mtime_nsec=%d; '
580 tc.succ('able to set and see size and mtime')
584 with TestCase('rename adjusts other fids', tstate) as tc:
585 clnt = tc.ccs()
587 tc.autoclunk(dirfid)
591 tc.autoclunk(d1fid)
593 tc.autoclunk(subfid)
596 tc.autoclunk(fid)
599 tc.trace('expected to write 9 bytes, actually wrote %d', written,
617 tc.fail('open file in renamed dir/d2/sub: {0}'.format(err))
618 tc.succ()
622 with TestCase('xattrwalk', tstate) as tc:
623 clnt = tc.ccs()
625 tc.skip('{0} does not support Txattrwalk'.format(clnt))
627 tc.autoclunk(dirfid)
631 tc.autoclunk(attrfid)
633 tc.trace('xattrwalk with no name: data=%r', data)
634 tc.succ('xattrwalk size={0} datalen={1}'.format(size, len(data)))
636 tc.trace('xattrwalk on /dir: {0}'.format(err))
637 tc.succ('xattrwalk apparently not implemented')