1
# Copyright (C) 2004, 2005, 2006, 2007 Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
from cStringIO import StringIO
28
from bzrlib.errors import (ConnectionError,
40
from bzrlib.tests import TestCase, TestCaseInTempDir
41
from bzrlib.transport import (_CoalescedOffset,
43
_get_protocol_handlers,
44
_set_protocol_handlers,
45
_get_transport_modules,
48
register_lazy_transport,
49
register_transport_proto,
50
_clear_protocol_handlers,
53
from bzrlib.transport.chroot import ChrootServer
54
from bzrlib.transport.memory import MemoryTransport
55
from bzrlib.transport.local import (LocalTransport,
56
EmulatedWin32LocalTransport)
59
# TODO: Should possibly split transport-specific tests into their own files.
62
class TestTransport(TestCase):
63
"""Test the non transport-concrete class functionality."""
65
def test__get_set_protocol_handlers(self):
66
handlers = _get_protocol_handlers()
67
self.assertNotEqual([], handlers.keys( ))
69
_clear_protocol_handlers()
70
self.assertEqual([], _get_protocol_handlers().keys())
72
_set_protocol_handlers(handlers)
74
def test_get_transport_modules(self):
75
handlers = _get_protocol_handlers()
76
class SampleHandler(object):
77
"""I exist, isnt that enough?"""
79
_clear_protocol_handlers()
80
register_transport_proto('foo')
81
register_lazy_transport('foo', 'bzrlib.tests.test_transport', 'TestTransport.SampleHandler')
82
register_transport_proto('bar')
83
register_lazy_transport('bar', 'bzrlib.tests.test_transport', 'TestTransport.SampleHandler')
84
self.assertEqual([SampleHandler.__module__, 'bzrlib.transport.chroot'],
85
_get_transport_modules())
87
_set_protocol_handlers(handlers)
89
def test_transport_dependency(self):
90
"""Transport with missing dependency causes no error"""
91
saved_handlers = _get_protocol_handlers()
93
register_transport_proto('foo')
94
register_lazy_transport('foo', 'bzrlib.tests.test_transport',
95
'BadTransportHandler')
97
get_transport('foo://fooserver/foo')
98
except UnsupportedProtocol, e:
100
self.assertEquals('Unsupported protocol'
101
' for url "foo://fooserver/foo":'
102
' Unable to import library "some_lib":'
103
' testing missing dependency', str(e))
105
self.fail('Did not raise UnsupportedProtocol')
107
# restore original values
108
_set_protocol_handlers(saved_handlers)
110
def test_transport_fallback(self):
111
"""Transport with missing dependency causes no error"""
112
saved_handlers = _get_protocol_handlers()
114
_clear_protocol_handlers()
115
register_transport_proto('foo')
116
register_lazy_transport('foo', 'bzrlib.tests.test_transport',
117
'BackupTransportHandler')
118
register_lazy_transport('foo', 'bzrlib.tests.test_transport',
119
'BadTransportHandler')
120
t = get_transport('foo://fooserver/foo')
121
self.assertTrue(isinstance(t, BackupTransportHandler))
123
_set_protocol_handlers(saved_handlers)
125
def test_LateReadError(self):
126
"""The LateReadError helper should raise on read()."""
127
a_file = LateReadError('a path')
130
except ReadError, error:
131
self.assertEqual('a path', error.path)
132
self.assertRaises(ReadError, a_file.read, 40)
135
def test__combine_paths(self):
137
self.assertEqual('/home/sarah/project/foo',
138
t._combine_paths('/home/sarah', 'project/foo'))
139
self.assertEqual('/etc',
140
t._combine_paths('/home/sarah', '../../etc'))
141
self.assertEqual('/etc',
142
t._combine_paths('/home/sarah', '../../../etc'))
143
self.assertEqual('/etc',
144
t._combine_paths('/home/sarah', '/etc'))
146
def test_local_abspath_non_local_transport(self):
147
# the base implementation should throw
148
t = MemoryTransport()
149
e = self.assertRaises(errors.NotLocalUrl, t.local_abspath, 't')
150
self.assertEqual('memory:///t is not a local path.', str(e))
153
class TestCoalesceOffsets(TestCase):
155
def check(self, expected, offsets, limit=0, fudge=0):
156
coalesce = Transport._coalesce_offsets
157
exp = [_CoalescedOffset(*x) for x in expected]
158
out = list(coalesce(offsets, limit=limit, fudge_factor=fudge))
159
self.assertEqual(exp, out)
161
def test_coalesce_empty(self):
164
def test_coalesce_simple(self):
165
self.check([(0, 10, [(0, 10)])], [(0, 10)])
167
def test_coalesce_unrelated(self):
168
self.check([(0, 10, [(0, 10)]),
170
], [(0, 10), (20, 10)])
172
def test_coalesce_unsorted(self):
173
self.check([(20, 10, [(0, 10)]),
175
], [(20, 10), (0, 10)])
177
def test_coalesce_nearby(self):
178
self.check([(0, 20, [(0, 10), (10, 10)])],
181
def test_coalesce_overlapped(self):
182
self.check([(0, 15, [(0, 10), (5, 10)])],
185
def test_coalesce_limit(self):
186
self.check([(10, 50, [(0, 10), (10, 10), (20, 10),
187
(30, 10), (40, 10)]),
188
(60, 50, [(0, 10), (10, 10), (20, 10),
189
(30, 10), (40, 10)]),
190
], [(10, 10), (20, 10), (30, 10), (40, 10),
191
(50, 10), (60, 10), (70, 10), (80, 10),
192
(90, 10), (100, 10)],
195
def test_coalesce_no_limit(self):
196
self.check([(10, 100, [(0, 10), (10, 10), (20, 10),
197
(30, 10), (40, 10), (50, 10),
198
(60, 10), (70, 10), (80, 10),
200
], [(10, 10), (20, 10), (30, 10), (40, 10),
201
(50, 10), (60, 10), (70, 10), (80, 10),
202
(90, 10), (100, 10)])
204
def test_coalesce_fudge(self):
205
self.check([(10, 30, [(0, 10), (20, 10)]),
206
(100, 10, [(0, 10),]),
207
], [(10, 10), (30, 10), (100, 10)],
212
class TestMemoryTransport(TestCase):
214
def test_get_transport(self):
217
def test_clone(self):
218
transport = MemoryTransport()
219
self.assertTrue(isinstance(transport, MemoryTransport))
220
self.assertEqual("memory:///", transport.clone("/").base)
222
def test_abspath(self):
223
transport = MemoryTransport()
224
self.assertEqual("memory:///relpath", transport.abspath('relpath'))
226
def test_abspath_of_root(self):
227
transport = MemoryTransport()
228
self.assertEqual("memory:///", transport.base)
229
self.assertEqual("memory:///", transport.abspath('/'))
231
def test_abspath_of_relpath_starting_at_root(self):
232
transport = MemoryTransport()
233
self.assertEqual("memory:///foo", transport.abspath('/foo'))
235
def test_append_and_get(self):
236
transport = MemoryTransport()
237
transport.append_bytes('path', 'content')
238
self.assertEqual(transport.get('path').read(), 'content')
239
transport.append_file('path', StringIO('content'))
240
self.assertEqual(transport.get('path').read(), 'contentcontent')
242
def test_put_and_get(self):
243
transport = MemoryTransport()
244
transport.put_file('path', StringIO('content'))
245
self.assertEqual(transport.get('path').read(), 'content')
246
transport.put_bytes('path', 'content')
247
self.assertEqual(transport.get('path').read(), 'content')
249
def test_append_without_dir_fails(self):
250
transport = MemoryTransport()
251
self.assertRaises(NoSuchFile,
252
transport.append_bytes, 'dir/path', 'content')
254
def test_put_without_dir_fails(self):
255
transport = MemoryTransport()
256
self.assertRaises(NoSuchFile,
257
transport.put_file, 'dir/path', StringIO('content'))
259
def test_get_missing(self):
260
transport = MemoryTransport()
261
self.assertRaises(NoSuchFile, transport.get, 'foo')
263
def test_has_missing(self):
264
transport = MemoryTransport()
265
self.assertEquals(False, transport.has('foo'))
267
def test_has_present(self):
268
transport = MemoryTransport()
269
transport.append_bytes('foo', 'content')
270
self.assertEquals(True, transport.has('foo'))
272
def test_list_dir(self):
273
transport = MemoryTransport()
274
transport.put_bytes('foo', 'content')
275
transport.mkdir('dir')
276
transport.put_bytes('dir/subfoo', 'content')
277
transport.put_bytes('dirlike', 'content')
279
self.assertEquals(['dir', 'dirlike', 'foo'], sorted(transport.list_dir('.')))
280
self.assertEquals(['subfoo'], sorted(transport.list_dir('dir')))
282
def test_mkdir(self):
283
transport = MemoryTransport()
284
transport.mkdir('dir')
285
transport.append_bytes('dir/path', 'content')
286
self.assertEqual(transport.get('dir/path').read(), 'content')
288
def test_mkdir_missing_parent(self):
289
transport = MemoryTransport()
290
self.assertRaises(NoSuchFile,
291
transport.mkdir, 'dir/dir')
293
def test_mkdir_twice(self):
294
transport = MemoryTransport()
295
transport.mkdir('dir')
296
self.assertRaises(FileExists, transport.mkdir, 'dir')
298
def test_parameters(self):
299
transport = MemoryTransport()
300
self.assertEqual(True, transport.listable())
301
self.assertEqual(False, transport.should_cache())
302
self.assertEqual(False, transport.is_readonly())
304
def test_iter_files_recursive(self):
305
transport = MemoryTransport()
306
transport.mkdir('dir')
307
transport.put_bytes('dir/foo', 'content')
308
transport.put_bytes('dir/bar', 'content')
309
transport.put_bytes('bar', 'content')
310
paths = set(transport.iter_files_recursive())
311
self.assertEqual(set(['dir/foo', 'dir/bar', 'bar']), paths)
314
transport = MemoryTransport()
315
transport.put_bytes('foo', 'content')
316
transport.put_bytes('bar', 'phowar')
317
self.assertEqual(7, transport.stat('foo').st_size)
318
self.assertEqual(6, transport.stat('bar').st_size)
321
class ChrootDecoratorTransportTest(TestCase):
322
"""Chroot decoration specific tests."""
324
def test_abspath(self):
325
# The abspath is always relative to the chroot_url.
326
server = ChrootServer(get_transport('memory:///foo/bar/'))
328
transport = get_transport(server.get_url())
329
self.assertEqual(server.get_url(), transport.abspath('/'))
331
subdir_transport = transport.clone('subdir')
332
self.assertEqual(server.get_url(), subdir_transport.abspath('/'))
335
def test_clone(self):
336
server = ChrootServer(get_transport('memory:///foo/bar/'))
338
transport = get_transport(server.get_url())
339
# relpath from root and root path are the same
340
relpath_cloned = transport.clone('foo')
341
abspath_cloned = transport.clone('/foo')
342
self.assertEqual(server, relpath_cloned.server)
343
self.assertEqual(server, abspath_cloned.server)
346
def test_chroot_url_preserves_chroot(self):
347
"""Calling get_transport on a chroot transport's base should produce a
348
transport with exactly the same behaviour as the original chroot
351
This is so that it is not possible to escape a chroot by doing::
352
url = chroot_transport.base
353
parent_url = urlutils.join(url, '..')
354
new_transport = get_transport(parent_url)
356
server = ChrootServer(get_transport('memory:///path/subpath'))
358
transport = get_transport(server.get_url())
359
new_transport = get_transport(transport.base)
360
self.assertEqual(transport.server, new_transport.server)
361
self.assertEqual(transport.base, new_transport.base)
364
def test_urljoin_preserves_chroot(self):
365
"""Using urlutils.join(url, '..') on a chroot URL should not produce a
366
URL that escapes the intended chroot.
368
This is so that it is not possible to escape a chroot by doing::
369
url = chroot_transport.base
370
parent_url = urlutils.join(url, '..')
371
new_transport = get_transport(parent_url)
373
server = ChrootServer(get_transport('memory:///path/'))
375
transport = get_transport(server.get_url())
377
InvalidURLJoin, urlutils.join, transport.base, '..')
381
class ChrootServerTest(TestCase):
383
def test_construct(self):
384
backing_transport = MemoryTransport()
385
server = ChrootServer(backing_transport)
386
self.assertEqual(backing_transport, server.backing_transport)
388
def test_setUp(self):
389
backing_transport = MemoryTransport()
390
server = ChrootServer(backing_transport)
392
self.assertTrue(server.scheme in _get_protocol_handlers().keys())
394
def test_tearDown(self):
395
backing_transport = MemoryTransport()
396
server = ChrootServer(backing_transport)
399
self.assertFalse(server.scheme in _get_protocol_handlers().keys())
401
def test_get_url(self):
402
backing_transport = MemoryTransport()
403
server = ChrootServer(backing_transport)
405
self.assertEqual('chroot-%d:///' % id(server), server.get_url())
409
class ReadonlyDecoratorTransportTest(TestCase):
410
"""Readonly decoration specific tests."""
412
def test_local_parameters(self):
413
import bzrlib.transport.readonly as readonly
414
# connect to . in readonly mode
415
transport = readonly.ReadonlyTransportDecorator('readonly+.')
416
self.assertEqual(True, transport.listable())
417
self.assertEqual(False, transport.should_cache())
418
self.assertEqual(True, transport.is_readonly())
420
def test_http_parameters(self):
421
from bzrlib.tests.HttpServer import HttpServer
422
import bzrlib.transport.readonly as readonly
423
# connect to . via http which is not listable
424
server = HttpServer()
427
transport = get_transport('readonly+' + server.get_url())
428
self.failUnless(isinstance(transport,
429
readonly.ReadonlyTransportDecorator))
430
self.assertEqual(False, transport.listable())
431
self.assertEqual(True, transport.should_cache())
432
self.assertEqual(True, transport.is_readonly())
437
class FakeNFSDecoratorTests(TestCaseInTempDir):
438
"""NFS decorator specific tests."""
440
def get_nfs_transport(self, url):
441
import bzrlib.transport.fakenfs as fakenfs
442
# connect to url with nfs decoration
443
return fakenfs.FakeNFSTransportDecorator('fakenfs+' + url)
445
def test_local_parameters(self):
446
# the listable, should_cache and is_readonly parameters
447
# are not changed by the fakenfs decorator
448
transport = self.get_nfs_transport('.')
449
self.assertEqual(True, transport.listable())
450
self.assertEqual(False, transport.should_cache())
451
self.assertEqual(False, transport.is_readonly())
453
def test_http_parameters(self):
454
# the listable, should_cache and is_readonly parameters
455
# are not changed by the fakenfs decorator
456
from bzrlib.tests.HttpServer import HttpServer
457
# connect to . via http which is not listable
458
server = HttpServer()
461
transport = self.get_nfs_transport(server.get_url())
462
self.assertIsInstance(
463
transport, bzrlib.transport.fakenfs.FakeNFSTransportDecorator)
464
self.assertEqual(False, transport.listable())
465
self.assertEqual(True, transport.should_cache())
466
self.assertEqual(True, transport.is_readonly())
470
def test_fakenfs_server_default(self):
471
# a FakeNFSServer() should bring up a local relpath server for itself
472
import bzrlib.transport.fakenfs as fakenfs
473
server = fakenfs.FakeNFSServer()
476
# the url should be decorated appropriately
477
self.assertStartsWith(server.get_url(), 'fakenfs+')
478
# and we should be able to get a transport for it
479
transport = get_transport(server.get_url())
480
# which must be a FakeNFSTransportDecorator instance.
481
self.assertIsInstance(
482
transport, fakenfs.FakeNFSTransportDecorator)
486
def test_fakenfs_rename_semantics(self):
487
# a FakeNFS transport must mangle the way rename errors occur to
488
# look like NFS problems.
489
transport = self.get_nfs_transport('.')
490
self.build_tree(['from/', 'from/foo', 'to/', 'to/bar'],
492
self.assertRaises(errors.ResourceBusy,
493
transport.rename, 'from', 'to')
496
class FakeVFATDecoratorTests(TestCaseInTempDir):
497
"""Tests for simulation of VFAT restrictions"""
499
def get_vfat_transport(self, url):
500
"""Return vfat-backed transport for test directory"""
501
from bzrlib.transport.fakevfat import FakeVFATTransportDecorator
502
return FakeVFATTransportDecorator('vfat+' + url)
504
def test_transport_creation(self):
505
from bzrlib.transport.fakevfat import FakeVFATTransportDecorator
506
transport = self.get_vfat_transport('.')
507
self.assertIsInstance(transport, FakeVFATTransportDecorator)
509
def test_transport_mkdir(self):
510
transport = self.get_vfat_transport('.')
511
transport.mkdir('HELLO')
512
self.assertTrue(transport.has('hello'))
513
self.assertTrue(transport.has('Hello'))
515
def test_forbidden_chars(self):
516
transport = self.get_vfat_transport('.')
517
self.assertRaises(ValueError, transport.has, "<NU>")
520
class BadTransportHandler(Transport):
521
def __init__(self, base_url):
522
raise DependencyNotPresent('some_lib', 'testing missing dependency')
525
class BackupTransportHandler(Transport):
526
"""Test transport that works as a backup for the BadTransportHandler"""
530
class TestTransportImplementation(TestCaseInTempDir):
531
"""Implementation verification for transports.
533
To verify a transport we need a server factory, which is a callable
534
that accepts no parameters and returns an implementation of
535
bzrlib.transport.Server.
537
That Server is then used to construct transport instances and test
538
the transport via loopback activity.
540
Currently this assumes that the Transport object is connected to the
541
current working directory. So that whatever is done
542
through the transport, should show up in the working
543
directory, and vice-versa. This is a bug, because its possible to have
544
URL schemes which provide access to something that may not be
545
result in storage on the local disk, i.e. due to file system limits, or
546
due to it being a database or some other non-filesystem tool.
548
This also tests to make sure that the functions work with both
549
generators and lists (assuming iter(list) is effectively a generator)
553
super(TestTransportImplementation, self).setUp()
554
self._server = self.transport_server()
556
self.addCleanup(self._server.tearDown)
558
def get_transport(self, relpath=None):
559
"""Return a connected transport to the local directory.
561
:param relpath: a path relative to the base url.
563
base_url = self._server.get_url()
564
url = self._adjust_url(base_url, relpath)
565
# try getting the transport via the regular interface:
566
t = get_transport(url)
567
# vila--20070607 if the following are commented out the test suite
568
# still pass. Is this really still needed or was it a forgotten
570
if not isinstance(t, self.transport_class):
571
# we did not get the correct transport class type. Override the
572
# regular connection behaviour by direct construction.
573
t = self.transport_class(url)
577
class TestLocalTransports(TestCase):
579
def test_get_transport_from_abspath(self):
580
here = os.path.abspath('.')
581
t = get_transport(here)
582
self.assertIsInstance(t, LocalTransport)
583
self.assertEquals(t.base, urlutils.local_path_to_url(here) + '/')
585
def test_get_transport_from_relpath(self):
586
here = os.path.abspath('.')
587
t = get_transport('.')
588
self.assertIsInstance(t, LocalTransport)
589
self.assertEquals(t.base, urlutils.local_path_to_url('.') + '/')
591
def test_get_transport_from_local_url(self):
592
here = os.path.abspath('.')
593
here_url = urlutils.local_path_to_url(here) + '/'
594
t = get_transport(here_url)
595
self.assertIsInstance(t, LocalTransport)
596
self.assertEquals(t.base, here_url)
598
def test_local_abspath(self):
599
here = os.path.abspath('.')
600
t = get_transport(here)
601
self.assertEquals(t.local_abspath(''), here)
604
class TestWin32LocalTransport(TestCase):
606
def test_unc_clone_to_root(self):
607
# Win32 UNC path like \\HOST\path
608
# clone to root should stop at least at \\HOST part
610
t = EmulatedWin32LocalTransport('file://HOST/path/to/some/dir/')
613
self.assertEquals(t.base, 'file://HOST/')
614
# make sure we reach the root
616
self.assertEquals(t.base, 'file://HOST/')
619
class TestConnectedTransport(TestCase):
620
"""Tests for connected to remote server transports"""
622
def test_parse_url(self):
623
t = ConnectedTransport('sftp://simple.example.com/home/source')
624
self.assertEquals(t._host, 'simple.example.com')
625
self.assertEquals(t._port, None)
626
self.assertEquals(t._path, '/home/source/')
627
self.failUnless(t._user is None)
628
self.failUnless(t._password is None)
630
self.assertEquals(t.base, 'sftp://simple.example.com/home/source/')
632
def test_parse_quoted_url(self):
633
t = ConnectedTransport('http://ro%62ey:h%40t@ex%41mple.com:2222/path')
634
self.assertEquals(t._host, 'exAmple.com')
635
self.assertEquals(t._port, 2222)
636
self.assertEquals(t._user, 'robey')
637
self.assertEquals(t._password, 'h@t')
638
self.assertEquals(t._path, '/path/')
640
# Base should not keep track of the password
641
self.assertEquals(t.base, 'http://robey@exAmple.com:2222/path/')
643
def test_parse_invalid_url(self):
644
self.assertRaises(errors.InvalidURL,
646
'sftp://lily.org:~janneke/public/bzr/gub')
648
def test_relpath(self):
649
t = ConnectedTransport('sftp://user@host.com/abs/path')
651
self.assertEquals(t.relpath('sftp://user@host.com/abs/path/sub'), 'sub')
652
self.assertRaises(errors.PathNotChild, t.relpath,
653
'http://user@host.com/abs/path/sub')
654
self.assertRaises(errors.PathNotChild, t.relpath,
655
'sftp://user2@host.com/abs/path/sub')
656
self.assertRaises(errors.PathNotChild, t.relpath,
657
'sftp://user@otherhost.com/abs/path/sub')
658
self.assertRaises(errors.PathNotChild, t.relpath,
659
'sftp://user@host.com:33/abs/path/sub')
660
# Make sure it works when we don't supply a username
661
t = ConnectedTransport('sftp://host.com/abs/path')
662
self.assertEquals(t.relpath('sftp://host.com/abs/path/sub'), 'sub')
664
# Make sure it works when parts of the path will be url encoded
665
t = ConnectedTransport('sftp://host.com/dev/%path')
666
self.assertEquals(t.relpath('sftp://host.com/dev/%path/sub'), 'sub')
668
def test_connection_sharing_propagate_credentials(self):
669
t = ConnectedTransport('foo://user@host.com/abs/path')
670
self.assertIs(None, t._get_connection())
671
self.assertIs(None, t._password)
672
c = t.clone('subdir')
673
self.assertEquals(None, c._get_connection())
674
self.assertIs(None, t._password)
676
# Simulate the user entering a password
678
connection = object()
679
t._set_connection(connection, password)
680
self.assertIs(connection, t._get_connection())
681
self.assertIs(password, t._get_credentials())
682
self.assertIs(connection, c._get_connection())
683
self.assertIs(password, c._get_credentials())
685
# credentials can be updated
686
new_password = 'even more secret'
687
c._update_credentials(new_password)
688
self.assertIs(connection, t._get_connection())
689
self.assertIs(new_password, t._get_credentials())
690
self.assertIs(connection, c._get_connection())
691
self.assertIs(new_password, c._get_credentials())
694
class TestReusedTransports(TestCase):
695
"""Tests for transport reuse"""
697
def test_reuse_same_transport(self):
698
t1 = get_transport('http://foo/')
699
t2 = get_transport('http://foo/', possible_transports=[t1])
700
self.assertIs(t1, t2)
702
# Also check that final '/' are handled correctly
703
t3 = get_transport('http://foo/path/')
704
t4 = get_transport('http://foo/path', possible_transports=[t3])
705
self.assertIs(t3, t4)
707
t5 = get_transport('http://foo/path')
708
t6 = get_transport('http://foo/path/', possible_transports=[t5])
709
self.assertIs(t5, t6)
711
def test_don_t_reuse_different_transport(self):
712
t1 = get_transport('http://foo/path')
713
t2 = get_transport('http://bar/path', possible_transports=[t1])
714
self.assertIsNot(t1, t2)
717
def get_test_permutations():
718
"""Return transport permutations to be used in testing.
720
This module registers some transports, but they're only for testing
721
registration. We don't really want to run all the transport tests against