Matthew Planchard
05f5920c25
Updated Default Fallback URL to https
...
Resolves #179
Due to a pypi API change (reasoning
[here](https://mail.python.org/pipermail/distutils-sig/2017-October/031712.html ),
thanks to @natefoo for the link), the redirect links that we were
generating for distributions not present in the package index were
failing with `403` errors.
@ankostis, I have not had time to look into why the standalone tests are
failing. Perhaps we should just ignore them in order to get a new
version out once this is merged to master?
2017-10-31 12:34:22 -05:00
Jordan Speicher
519c195253
Default fallback_url to use HTTPS
...
`pypi.python.org/simple` will respond to HTTP requests with `403: SSL is required.`
This will change the default fallback_url to use HTTPS. This should fix #179 .
2017-10-26 12:44:05 -05:00
Bert JW Regeer
ecfd1796a7
Add test to disallow regression
2017-03-31 12:48:08 +02:00
Kyle Hornberg
29c1803eae
Add matrix auth exceptions
2017-02-21 16:29:47 -06:00
Kyle Hornberg
568f901ace
Add test for multiple actions with multiple users
2017-02-21 16:29:47 -06:00
Kyle Hornberg
3d37c00999
Add matrix auth
2017-02-21 16:29:47 -06:00
Matthew Planchard
a05d5a103b
Update Tests for New Twine
...
* Updated .travis.yml to fix PEP 440 warnings
* Fixed twine calls
We were getting test failures on multiple branches in
`test_server.py`. I first investigated a warning message
popping up in every test run:
```
PEP440Warning,
/home/travis/virtualenv/python3.5.2/lib/python3.5/site-packages/pkg_resources/__init__.py:2510: PEP440Warning: 'setuptools (git-0.4.0)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
```
Moving the installation of setuptools, pip, sphinx, and tox
into the `install` key for Travis resolved that issue, but
`test_server.py` tests were still failing. It turns out that
Twine 1.7.0 added support for SSL cert specification and,
in the process, changed the call signature for the `upload`
and `register` internal methods.
This PR fixes the calls so that they align with Twine's new
function signature. Note that tests now fail on Twine <1.7.0,
so I have also updated the dev requirements file.
2016-07-17 14:35:58 -05:00
Matthew Planchard
7aa9240391
Merge pull request #114 from blade2005/topic/allow-search-with-pip
...
Topic/allow search with pip
2016-06-22 21:11:01 -05:00
Dana Powers
1f6da1fe00
Implement PEP 503 Package Name Normalization and URL Redirects
2016-05-19 15:45:08 -07:00
Dana Powers
394da3212f
upload test requires pypirc to avoid password prompt
2016-05-14 21:43:57 -07:00
Matthew Planchard
7180dc477f
Added init.py to tests
2016-05-12 20:02:10 -05:00
Matthew Planchard
b9b95713b4
Test for search functionality
...
Removed unused imports
Added docstrings
Whitespace changes
PEP 008 compliance
Added test for search
2016-05-12 19:44:24 -05:00
bibby
54247a17bb
test_upload_with_signature fix to allow uploaded files in any order. My result appears different than the expected outcome.
2016-04-21 08:08:18 -07:00
Matthew Planchard
5ba186264e
Added a test that fails in current master and succeeds in
...
proposed branch changes
2016-03-21 20:39:46 -05:00
Kostis Anagnostopoulos
0c4c27fa5c
v1.2.0.dev1 (<--1.1.10): Stop supporting py<2.7 & py<3.3 ( #107 ).
2016-01-20 20:05:47 +01:00
Kostis Anagnostopoulos
27a0b05433
Merge branch 'allow-asc-uploads' into dev.
2016-01-19 20:10:22 +01:00
Kostis Anagnostopoulos
140796bb6e
gpg, #106 , test: Add upload+sig TC.
...
- Rename upload-file vars in /upload action.
2016-01-19 18:50:14 +01:00
Matthew Planchard
abf8785f4d
gpg, #106 , test: Add TC for parsing all-filenames with .asc
.
2016-01-19 18:41:53 +01:00
Matthew Planchard
f40901bc33
Impl #106 : Start impl uploading GPG-sigs.
...
- Added path munging for .asc files.
- core: store .asc files, if given.
- Testing sig-file parsing.
2016-01-19 18:41:31 +01:00
Kostis Anagnostopoulos
4f7d7a45a7
test: Increase client-server delay to fix non-deterministic TC fails.
2016-01-19 18:06:56 +01:00
Kostis Anagnostopoulos
ab2f170fe9
Rework package parsing.
...
+ FIX #104 : Stopped parsing invalid package-versions prefixed with `v`;
they are invalid according to :pep-reference:`0440`.
+ Also support versions with epochs separated by `!` like `package-1!1.1.0`.
+ Move bottle-filename check on app module.
2016-01-19 13:36:16 +01:00
Kostis Anagnostopoulos
4527573a50
app: Improve server-response error-messages.
...
+ test: Parametrize remove-pkg TCs.
2016-01-19 13:36:09 +01:00
ankostis on tokoti
6b904db6c5
FIX #102 : uploading pkgs with +!
chars in version.
...
+ Use `content.raw_filename` for allowing PEP0440 chars.
+ Add upload app-TCs.
+ Improve parse-pkg core-TC.
+ Update CHANGES on forthcomming release.
2016-01-17 22:47:00 +01:00
Dustin Spicuzza
e8f1f149a5
Add an optional in-memory cache to hold package list
...
- Precomputes various attributes
- File digest is cached on access
- Cache requires watchdog to be installed
2016-01-04 17:40:39 -05:00
ankostis on tokoti
011c79b8bf
init: Use locals() in configure() to avoid explicitly listing **kwds.
...
+ Update CHANGES.
2015-12-21 03:01:16 +02:00
ankostis on tokoti
912d405a83
hashes, #53 : Add --hash-algo
option with TCs.
2015-12-21 02:50:15 +02:00
ankostis on tokoti
1e3cfb8f6b
test: Increase 1-sec sleep after test-server startup.
2015-12-20 20:33:48 +02:00
ankostis on tokoti
85e51d5a48
FIX #53 : Append MD5 url-fragments on package links.
...
- TC only for digest-method.
2015-12-20 02:32:45 +02:00
Kostis Anagnostopoulos at kilo
1a9b782d96
Readme:FIX license shield.
...
+ Update py2.5 supported env
2015-09-21 18:28:33 +02:00
Kostis Anagnostopoulos at kilo
eeb8b05fec
Increase attempts and logging attempt to research spurious `setup.py
...
upload` fails (#91 )!
2015-09-21 04:07:53 +02:00
Kostis Anagnostopoulos at kilo
d9f746b85f
test_server: Add setuptools TCs for register/upload.
...
+ Register TC checks #91 , have to search for spurious fails.
2015-09-21 03:34:27 +02:00
Kostis Anagnostopoulos at kilo
9275aeca01
Add twine-register TCs.
2015-09-20 18:35:11 +02:00
ankostis on tokoti
3676771719
FIX test_server FC!
...
+ Generate dummy-dists within tests to support running on every
platform/py-version.
+ delete pr-generated dummy-wheels.
+ Add forgotten test-packages `twinw`, `passlib`!
+ Update bugfix signing `twine` 1.6.1-->1.6.1.
2015-09-20 11:11:57 +02:00
ankostis on tokoti
4bb758da30
PIP test-server.
...
+ Rework test_server fictures with ports, pswds, and package-dirs.
+ Increase dep: pip>=7
2015-09-19 02:04:32 +02:00
Kostis Anagnostopoulos
3d172ae546
AMIDST test-server: Add pip install test.
...
[skip ci]
2015-09-18 20:20:01 +02:00
Kostis Anagnostopoulos
f8056565a8
Enable assert "dist-uploaded" in test_server.
...
+ Had not to use __future__.unicode_literals!
+ Refactor `test_server` using pytest fictures.
2015-09-18 19:19:04 +02:00
Kostis Anagnostopoulos
5fd1d49a3b
Mark test_server failing on py-3.2.
2015-09-18 18:48:53 +02:00
Kostis Anagnostopoulos
43bfc7e5ae
FIX centodeps TC missing dist-file from prev 2 commit.
...
+ Change asserting server without capturing stdout/stderr to avoid lockups.
2015-09-18 18:21:05 +02:00
Kostis Anagnostopoulos
6635d4dd74
test-server: Pin twine
to 1.6.0.
...
+ Update centodep-TC with monkeypatch for `twine<1.6.0`.
2015-09-17 20:20:14 +02:00
Kostis Anagnostopoulos
e32ca3425b
Add test_server
TCs with twine<-->real process.
...
+ TC for #82 uploading `dentodeps` package with 200 deps.
2015-09-17 20:04:00 +02:00
Kostis Anagnostopoulos
cda0fad7a9
Dot means empty when specifying empty authed-ops (-a .
).
...
+ FIX check of password/authentication-list options combinations.
+ doc: Update auth-ops list instructions.
+ Report bad port.
2015-09-17 19:39:02 +02:00
Kostis Anagnostopoulos
d4d0463db6
Upgrade bottle 0.11.6-->0.13-dev
...
+ FIX #82 : serve more than 100 packages.
- Missing TC.
2015-09-17 13:48:27 +02:00
ankostis on tokoti
133afe28f7
Rework standalone generation using ZIP.
...
+ Standalone executable based on wheel.
+ Properly use `pkg_resources` so reading `welcome-msg` file
works even from within zip.
+ Mark `zip_safe=True` in setup.py.
+ Delete forgotten distutils startup script.
+ Build standalone before installing anything else,
to check if any deps are missing.
+ Restore py25 in Travis.
2015-09-17 01:13:37 +02:00
Kostis Anagnostopoulos at STUW025
2c1ceb04b5
Restructure main
to allow for gevent monkeypatch ( FIX #49 ).
...
+ Update zip and setuptools startup-cripts.
2015-09-15 22:22:09 +02:00
Kostis Anagnostopoulos at STUW025
dc8f62c04f
FIX #92 : docs: Update version on README
...
+ Add README-version TC.
2015-09-14 18:55:16 +02:00
Kostis Anagnostopoulos at STUW025
000e977978
#55 : Do not require passlib
when -P == '.'.
2015-09-11 17:29:08 +02:00
Kostis Anagnostopoulos at STUW025
1fd5653317
FIX #55 : Allow unauthenticated uploads with -P .
option.
...
+ Add `mock` lib into test-dependencies for py2.
+ travis: Use new containers.
2015-09-11 16:08:13 +02:00
Arcadiy Ivanov
2d0de09d30
Incorrect package name detection with OSX version scheme #88
...
Fixes package name and package version handling of bdist_dumb
packages
Detects OS name boundary as specified in
http://svn.python.org/projects/python/trunk/Lib/distutils/util.py
Also detects cpN and pyN boundary
fixes #88 , connected to #88
2015-08-04 20:55:34 -04:00
ankostis on tokoti
d50cdb6c3b
docs: Update github-links, suitable python-versions, changes and
...
rel-date.
- Update maintainers.
- Update python-classifiers.
- Various README edits.
- #38 : Update suggestion on welcome-file.
- Add ankostis to authors (so Ralf may avoid half harassment for
this release).
2015-02-28 01:21:48 +01:00
ankostis on tokoti
10f42e829c
xss: Generate all index-listings with SimpleTemplate instead of
...
string-substs (#see 77).
- Add titles<h1> in all index-listings.
- FIX unicode errors on new TC's of prev commit.
2015-02-23 03:14:19 +01:00