123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- from nose.tools import *
- from os.path import join as pjoin
- from pathlib import Path
- from testpath import assert_isfile, assert_isdir
- from testpath.tempdir import TemporaryDirectory
- from nsist.pypi import WheelDownloader, extract_wheel, CachedRelease, merge_dir_to
- def test_download():
- wd = WheelDownloader("astsearch==0.1.2", "3.5.1", 64)
- wheel = wd.fetch()
- assert_isfile(wheel)
- with TemporaryDirectory() as td:
- extract_wheel(wheel, target_dir=td)
- assert_isfile(pjoin(td, 'astsearch.py'))
- # To exclude this, run: nosetests -a '!network'
- test_download.network = 1
- def test_pick_best_wheel():
- wd = WheelDownloader("astsearch==0.1.2", "3.5.1", 64)
- # Some of the wheel filenames below are impossible combinations - they are
- # there to test the scoring and ranking machinery.
- # Prefer Windows-specific wheel
- releases = [
- CachedRelease('astsearch-0.1.2-py3-none-any.whl'),
- CachedRelease('astsearch-0.1.2-py3-none-win_amd64.whl'),
- ]
- assert_equal(wd.pick_best_wheel(releases), releases[1])
- # Wrong Windows bitness
- releases = [
- CachedRelease('astsearch-0.1.2-py3-none-any.whl'),
- CachedRelease('astsearch-0.1.2-py3-none-win_32.whl'),
- ]
- assert_equal(wd.pick_best_wheel(releases), releases[0])
- # Prefer more specific Python version
- releases = [
- CachedRelease('astsearch-0.1.2-cp35-none-any.whl'),
- CachedRelease('astsearch-0.1.2-py3-none-any.whl'),
- ]
- assert_equal(wd.pick_best_wheel(releases), releases[0])
- # Prefer more specific Python version
- releases = [
- CachedRelease('astsearch-0.1.2-py34.py35-none-any.whl'),
- CachedRelease('astsearch-0.1.2-py3-none-any.whl'),
- ]
- assert_equal(wd.pick_best_wheel(releases), releases[0])
- # Incompatible Python version
- releases = [
- CachedRelease('astsearch-0.1.2-cp33-none-any.whl'),
- CachedRelease('astsearch-0.1.2-py3-none-any.whl'),
- ]
- assert_equal(wd.pick_best_wheel(releases), releases[1])
- # Prefer more specific ABI version
- releases = [
- CachedRelease('astsearch-0.1.2-py3-abi3-any.whl'),
- CachedRelease('astsearch-0.1.2-py3-none-any.whl'),
- ]
- assert_equal(wd.pick_best_wheel(releases), releases[0])
- # Incompatible ABI version
- releases = [
- CachedRelease('astsearch-0.1.2-cp35-abi4-win_amd64.whl'),
- CachedRelease('astsearch-0.1.2-py3-none-any.whl'),
- ]
- assert_equal(wd.pick_best_wheel(releases), releases[1])
- # Platform has priority over other attributes
- releases = [
- CachedRelease('astsearch-0.1.2-cp35-abi3-any.whl'),
- CachedRelease('astsearch-0.1.2-py2.py3-none-win_amd64.whl'),
- ]
- assert_equal(wd.pick_best_wheel(releases), releases[1])
- def test_merge_dir_to():
- with TemporaryDirectory() as td1, TemporaryDirectory() as td2:
- td1 = Path(td1)
- td2 = Path(td2)
- with (td1 / 'ab').open('w') as f:
- f.write(u"original")
- with (td2 / 'ab').open('w') as f:
- f.write(u"alternate")
- (td1 / 'subdir').mkdir()
- with (td1 / 'subdir' / 'foo').open('w'): pass
- (td2 / 'subdir').mkdir()
- with (td2 / 'subdir' / 'bar').open('w'): pass
- merge_dir_to(td2, td1)
- assert_isfile(td1 / 'subdir' / 'foo')
- assert_isfile(td1 / 'subdir' / 'bar')
- with (td1 / 'ab').open() as f:
- assert_equal(f.read(), u"alternate")
- # Test with conflicts
- (td1 / 'conflict').mkdir()
- with (td2 / 'conflict').open('w'): pass
- with assert_raises(RuntimeError):
- merge_dir_to(td2, td1)
- with assert_raises(RuntimeError):
- merge_dir_to(td1, td2)
|