~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport.py

merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005-2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
16
16
 
17
17
 
18
18
from cStringIO import StringIO
19
 
import os
20
19
import subprocess
21
20
import sys
22
21
import threading
31
30
from bzrlib.transport import (
32
31
    chroot,
33
32
    fakenfs,
 
33
    http,
34
34
    local,
35
35
    memory,
36
36
    pathfilter,
966
966
            bzr_remote_path = sys.executable + ' ' + self.get_bzr_path()
967
967
        else:
968
968
            bzr_remote_path = self.get_bzr_path()
969
 
        os.environ['BZR_REMOTE_PATH'] = bzr_remote_path
 
969
        self.overrideEnv('BZR_REMOTE_PATH', bzr_remote_path)
970
970
 
971
971
        # Access the branch via a bzr+ssh URL.  The BZR_REMOTE_PATH environment
972
972
        # variable is used to tell bzr what command to run on the remote end.
993
993
        # And the rest are threads
994
994
        for t in started[1:]:
995
995
            t.join()
 
996
 
 
997
 
 
998
class TestUnhtml(tests.TestCase):
 
999
 
 
1000
    """Tests for unhtml_roughly"""
 
1001
 
 
1002
    def test_truncation(self):
 
1003
        fake_html = "<p>something!\n" * 1000
 
1004
        result = http.unhtml_roughly(fake_html)
 
1005
        self.assertEquals(len(result), 1000)
 
1006
        self.assertStartsWith(result, " something!")